I am trying to post a XML to REST Service. Here's the code I am using:

I am getting following error, while calling the service.

The remote server returned an error: (401) Unauthorized.

I have also tried setting NetworkCredentials directly i.e.

NetworkCredential nc = new NetworkCredential(username, password);
serviceRequest.Credentials = nc;

Thanks for your help.

Uri address = new Uri("https://localhost:30000/restservice/");

// Create the web request  
HttpWebRequest request = WebRequest.Create(address) as HttpWebRequest;

// Set type to POST  
request.Method = "POST";
request.ContentType = "application/json";

string data = @"<Sample XML Here>";

// Create a byte array of the data we want to send  
byte[] byteData = UTF8Encoding.UTF8.GetBytes(data);

// Set the content length in the request headers  
request.ContentLength = byteData.Length;

// Write data  
using (Stream postStream = request.GetRequestStream())
{
    postStream.Write(byteData, 0, byteData.Length);
}

string usernamePassword = username + ":" + password;

CredentialCache mycache = new CredentialCache();

mycache.Add(address, "Basic", new NetworkCredential(username, password));
request.Credentials = mycache;

// Get response  
using (HttpWebResponse response = request.GetResponse() as HttpWebResponse)
{
    // Get the response stream  
    StreamReader reader = new StreamReader(response.GetResponseStream());

    // Console application output  
    Response.Write(reader.ReadToEnd());
}
link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

Use Fiddler and look in the WWW-Authenticate header that is returned from the server. That will tell you what kind of authentication scheme the server supports.

link|improve this answer
Thanks Darrel. Here is what I am getting from fiddler: No Proxy-Authenticate Header is present. No WWW-Authenticate Header is present. – Johny Walker 1119 Jan 19 '11 at 14:39
Wow that sucks. The HTTP spec says a 401 should always be accompanied by a WWW-Authenticate header. What's the tech of your server? – Darrel Miller Jan 19 '11 at 16:28
I am working on Windows Server 2008 R2. Here's the article I referred, which finally worked msdn.microsoft.com/en-us/library/debx8sh9.aspx. Still have same issues with using WebClient and the sample above. – Johny Walker 1119 Jan 28 '11 at 14:44
feedback

Couple of things to try:

  • Change the content type as you're not posting json to it
  • Not encode the data as its expecting xml, not a binary stream

Hope this helps.

link|improve this answer
Thanks for reply. Changed ContentType to "application/xml", still the same result. – Johny Walker 1119 Jan 19 '11 at 14:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.