vote up 0 vote down star

I have a web service protected by HTTPS with NTLM authentication and I generated a set of java stubs using CXF's wsdl2java tool by temporarily disabling authentication. I am now attempting to use the Java stubs within an applet that connects to the web service with the authentication turned back on. My intention was to edit the Java stubs to include authentication cookies from the browser's session into CXF client connection to the web service. The only problem is that the stub merely calls "super()" on the Service class and it handles all of the connection on its own. Does anyone know how to use CXF's java stubs generated from wsdl2java to connect to a web service protected by https and NTLM authentication?

here is the constructor stub:

public Visual_Service(URL wsdlLocation) {
    super(wsdlLocation, SERVICE);
}
flag

60% accept rate

1 Answer

vote up 2 vote down check

not that I've tried it but theres a description at the bottom of this page cwiki

link|flag
This is the canonical recipe. – bmargulies Nov 12 at 1:25
yes, this is what I eventually ended up using actually. I used the code at the bottom of the wiki and it works now. I did have to modify the source of jcifs to allow for https instead of just http though. – wlindner 20 hours ago

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.