Posts Tagged ‘java

For some reason it is rarely straight forward how to configure a Java Web Service framework to use a custom endpoint address (one that is not in the WSDL). Anyway, here is how you do it in CXF: URL wsdl = getClass().getResource("myservice.wsdl.xml"); MyService service = new MyService(wsdl).getMyServicePort(); BindingProvider bp = (BindingProvider)service; bp.getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, URL);

Great article that clarifies the relation between the permgen size and heap size. Conclusion: PermSize is added to the overall heap size.

Yet again the JavaZone conference takes place in Oslo. Looking very much forward to it. Nice to get a break from the everyday project and get some new impulses and ideas. I attended the conference last year and I had great time with lots of good presentations. The only thing to criticize was the opening [...]


Here you will find some of my thoughts and experiments from my daily life of programming and general geeking ;)

Github