Hennings blog
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);
In: Tech
4 Nov 2008Great article that clarifies the relation between the permgen size and heap size. Conclusion: PermSize is added to the overall heap size.
In: Tech
16 Sep 2008Yet 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 ;)