Re: .NET WS client connecting to Axis WS - credentials problem
- From: David R <DavidR@xxxxxxxxxxxxxxxxxxxxxxxxx>
- Date: Tue, 18 Jul 2006 13:12:01 -0700
Thanks for the response. Basic authentication is being used, and since the
Axis developer said that the blank username was appearing in the http header,
then ws-security is not being used.
If I could view the header information of the request coming from my client
application (debugging on the client, not the server), using VS2005 or
something else, then I might be able to resolve the problem myself.
Thanks,
David
"Pablo Cibraro" wrote:
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
- References:
- Re: .NET WS client connecting to Axis WS - credentials problem
- From: Pablo Cibraro
- Re: .NET WS client connecting to Axis WS - credentials problem
- Prev by Date: Re: Upgraded Web Service from VS2003 to VS2005 and all Hell breaks loose!
- Next by Date: Re: How do you get a .NET 2.0 App.Config file to recognize WSE 2.0
- Previous by thread: Re: .NET WS client connecting to Axis WS - credentials problem
- Next by thread: Re: Server was unable to process request. --> Unable to generate a temporary class.
- Index(es):
Relevant Pages
|