Re: [Axis2] specifying username and password

2006-05-22 Thread Kees de Kooter
This is an Axis 1 solution. There is no such object as Call in Axis2. So I repeat my question: how can you specify username and password with Axis2?? On 5/3/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: On 5/3/06, Kees de Kooter [EMAIL PROTECTED] wrote: In Axis 1 I specified

Re: [Axis2] specifying username and password

2006-05-22 Thread Kees de Kooter
Found it: HttpTransportProperties.BasicAuthentication basicAuthentication = new HttpTransportProperties(). new BasicAuthentication(); basicAuthentication.setUsername(userName); basicAuthentication.setPassword(password);

Re: [Axis2] specifying username and password

2006-05-03 Thread [EMAIL PROTECTED]
On 5/3/06, Kees de Kooter [EMAIL PROTECTED] wrote: In Axis 1 I specified username/password like this:call.setUserName();call.setPassword();What is the equivalent in Axis 2?--Cheers,Kees de Kooter http://www.boplicity.netI have used the following successfully: