Re: .NET WS client connecting to Axis WS - credentials problem
- From: "Pablo Cibraro" <pcibraro@xxxxxxxxxxx>
- Date: Tue, 18 Jul 2006 10:27:06 -0400
Hi David,
That property sets the credentials for the transport (In case you are using
Http, it sets the credentials when Basic authentication or Windows
authentication is being used). In other words, as you said, adds a http
header with the credentials.
Maybe the service is being protected with the WS-Security, and they are
expecting a security header in the SOAP message. (The security header
contains a Usernametoken with user and password). In this case, you need to
add a SOAP-Header and not a Http Header.
You should first ask to the web service team whether they are using
WS-Security or not.
Regards,
Pablo Cibraro.
"David R" <DavidR@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:CE1C9AD4-A637-4EEE-A012-AE537091AE31@xxxxxxxxxxxxxxxx
I am writing a .NET web services client that is calling an Axis web
service.
I have two questions.
1. The following code should set the authentication; when I call a method
on the web service, the call fails with "bad username/password".
// wrWorkReq is the name of the service
wrWorkReq.Credentials = new System.Net.NetworkCredential("adolph.ramirez",
"xxx");
A developer managing the Axis side says that the server is receiving a
blank
username and password, and not the populated fields they should be. Any
idea
what I am doing wrong?
2. I could save time if I could debug the HTTP headers that are being sent
out. I am using VS 2005. Any suggestions on the best way to do this?
Thanks,
David
.
- Follow-Ups:
- Prev by Date: Re: Webservice for J2EE & .NET application
- Next by Date: Re: Server was unable to process request. --> Unable to generate a temporary class.
- Previous by thread: Re: Webservice for J2EE & .NET application
- Next by thread: Re: .NET WS client connecting to Axis WS - credentials problem
- Index(es):
Relevant Pages
|