PDA

View Full Version : How to invoke webMethods webService from WebSphere 40


manoharhs
07-10-2003, 10:56
I have a webmethods (4.6) service protected by an ACL.The webservice generated from this is set to Anonymous.The websphere client is unable to launch the client.jsp page probably because it is unable to provide userID and password.If I change the service ACL to Anonynous everything works great. What needs to be done on the client side to present the basic Auth?

Any help is greatly appreciated.

Thanks.
Manohar Hiremagalore

manoharhs
07-10-2003, 16:32
I got the clue from one of the site. You need to add the following code in the client code generated from webmethods wsdl.

SOAPHTTPConnection hc = new SOAPHTTPConnection();
hc.setUserName("UserName");
hc.setPassword("password");
call.setSOAPTransport(hc);

Manohar Hiremagalore
Prosoft Technology group