Been elaborating a bit with HttpClient for building a rest client. But I can't figure out, nor find any examples on how to authenticate towards the server. Most likely I will use basic aut, but really any example would be appreciated.

In earlier versions (which has examples online) you did:

HttpClient client = new HttpClient("http://localhost:8080/ProductService/");
client.TransportSettings.Credentials =
    new System.Net.NetworkCredential("admin", "admin");

However the TransportSettings property no longer exists in version 0.3.0.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

I just downloaded 0.3.0 it has indeed be removed. It's now on HttpClientChannel

HttpClient client = new HttpClient(...);
var channel = new HttpClientChannel();
channel.Credentials = new NetworkCredential(...);
client.Channel = channel;

If not explicitly specified it uses a default instance of HttpClientChannel.

link|improve this answer
That is an older version? I'm using 0.3.0 from nuget. – Tomas Sep 12 '11 at 13:43
@Thomas The one in RSK was a prototype. The nuget version was re-written, by another team, based on what they learned from the prototype. – Darrel Miller Sep 12 '11 at 14:38
Got this to work after adding preemptive auth. Thanks – Tomas Sep 13 '11 at 10:12
feedback

The HttpClient library did not make it into .Net 4. However it is available here http://nuget.org/List/Packages/HttpClient. However, authentication is done differently in this version of HttpClient.

var httpClient = new HttpClient();
httpClient.DefaultRequestHeaders.Authorization 
                   = new AuthenticationHeaderValue("basic","...");

or

var webRequestHandler = new WebRequestHandler();
CredentialCache creds = new CredentialCache();
creds.Add(new Uri(serverAddress), "basic",
                        new NetworkCredential("user", "password"));
webRequestHandler.Credentials = creds;
var httpClient = new HttpClient(webRequestHandler);

And be warned, this library is going to get updated next week and there are minor breaking changes!

link|improve this answer
Yupp, sorry for being confusing. that's the version I got, the one from nuget. – Tomas Sep 12 '11 at 12:53
I played around with that, but I couldn't seem to get that to work. But as I understand, the "..." should be uname:pwd base64 encoded? – Tomas Sep 12 '11 at 12:54
@Thomas Exactly. – Darrel Miller Sep 12 '11 at 14:37
Hmm... thought I had it working, but couldnt get it working with basic auth and preemptive auth... thanks for the guidance. – Tomas Sep 13 '11 at 10:13
feedback

Your Answer

 
or
required, but never shown

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