Hey guys!
So I've been working with the JaxWsDynamicClientFactory. I´m always
able to get the WSDL like this:
JaxWsDynamicClientFactory dcf = JaxWsDynamicClientFactory.newInstance();
Client client = dcf.createClient("http://example.com/EchoService?wsdl");
However a client's new WSDL requires me to pass along an
authentication header in the HTTP message.
Is there a way to do this using the JaxWsDynamicClientFactory??
So far we´ve tried to get a hold of an Interceptor (so I can get the
HTTPRequest object and do my thing) but it looks like these are
created AFTER the client is instanced.
Any help will be appreciated!