Re: how to add "Authorization: Basic" for a web service call
- From: "Ottavio" <OttavioAtUsenetGroups@xxxxxxxxx>
- Date: 10 Nov 2006 08:48:55 -0800
I'm using the
webservice.proxy=proxycredential for our local proxy, in order to send
the request.
How can I add a second proxy for the remoteAuthentication?
Thank you
Ottavio
Joe Kaplan ha scritto:
You shouldn't have to do this manually. Just create an appropriate
NetworkCredential object with the plaintext credentials in it and add it to
the Credentials property of your web service proxy. It should then
negotiate basic authentication all by itself if the server requests it.
Joe K.
--
Joe Kaplan-MS MVP Directory Services Programming
Co-author of "The .NET Developer's Guide to Directory Services Programming"
http://www.directoryprogramming.net
--
"Ottavio" <OttavioAtUsenetGroups@xxxxxxxxx> wrote in message
news:1163157440.365846.108220@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Hello,
I'm having some problems with the authentication during a web service
call
I know I have to add the "Authorization: Basic xxxxxxxx" in the http
header (not soap header) but I can't find a way to add it.
I've tryed to use ethereal to watch what I'm sending and I can see all
the header
(Accept-Language,Accept-Encoding,User-Agent,Host,Connection,..) and the
SOAP xml message but there is no "Authorization: Basic ......" at all.
Could someone help me?
This is the [partial] code I'm using:
namespace WCM
{
public partial class Form1 : Form
{
public Form1(){InitializeComponent();}
private void button1_Click(object sender, EventArgs e)
{
//WSDL web reference: WebRef
//WebService: Service
WebRef.ServiceTTService = new WCM.WebRef.Service();
NetworkCredential remoteCredentials = new NetworkCredential("a",
"b");
TTService.Credentials = remoteCredentials;
WebRef.TTRequestType TTRequest = new WCM.WebRef.TTRequestType();
TTRequest.param="param";
WebRef.TTRespType TTResponse = new WCM.WebRef.TTRespType();
TTResponse = TTService.TTRequestMethod(TTRequest);
//ERROR ON THE PREVIOUS LINE:
//"The request failed with HTTP status 403: Service Error."
MessageBox.Show("DONE!");
}
}
}
Thank you in advance!
Ottavio
.
- Follow-Ups:
- Re: how to add "Authorization: Basic" for a web service call
- From: Joe Kaplan
- Re: how to add "Authorization: Basic" for a web service call
- References:
- how to add "Authorization: Basic" for a web service call
- From: Ottavio
- Re: how to add "Authorization: Basic" for a web service call
- From: Joe Kaplan
- how to add "Authorization: Basic" for a web service call
- Prev by Date: Re: how to add "Authorization: Basic" for a web service call
- Next by Date: Re: how to add "Authorization: Basic" for a web service call
- Previous by thread: Re: how to add "Authorization: Basic" for a web service call
- Next by thread: Re: how to add "Authorization: Basic" for a web service call
- Index(es):
Relevant Pages
|