Hi, Regarding https://issues.apache.org/jira/browse/CXF-414 issue. What I actually meant and expected to see when I set the endpoint address property on the proxy, is that the address set will be used for all calls made using that proxy (unless of course is re-set again). For example:
Greeter g = foo.getPort(Greeter.class); (javax.xml.ws.BindingProvider)g).getRequestContext().put(javax.xml.ws.BindingProvider.ENDPOINT_ADDRESS_PROPERTY, "http://foo/bar"); // call 1 g.helloFoo(); // call 2 g.helloBar(); For both calls address of "http://foo/bar" will be used. It looks like the endpoint address property is currently lost on the second call right now. Jarek
