Re: Webservice over Basic Authentication

2005-08-09 Thread James Wilson
Quoting Jonathan J. Vargas R. [EMAIL PROTECTED]: Hi, I did this: public class Main { public static void main (String[] args) { try { EchoImpServiceLocator sl = new EchoImpServiceLocator (); EchoImp service = sl.getEcho (); -

Webservice over Basic Authentication

2005-08-08 Thread Jonathan J. Vargas R.
Hi, I am having difficulties to access an axis webservices using an axis client through basic authentication. the server returns no authentication supplied message, as i should do since i am not giving auth info yet. I see MessageContext allows to indicate password and username, would be this

Re: Webservice over Basic Authentication

2005-08-08 Thread Kr
proxy object.setUsername(dfdafasdf); proxy object.setPassword(dfdfdfdf);

Re: Webservice over Basic Authentication

2005-08-08 Thread Jonathan J. Vargas R.
Hi, I did this: public class Main { public static void main (String[] args) { try { EchoImpServiceLocator sl = new EchoImpServiceLocator (); EchoImp service = sl.getEcho (); - ((org.apache.axis.client.Stub) service).setUsername (anyuser); -