up vote 2 down vote favorite
share [g+] share [fb]

I am building a simple feed reader application that needs to access an ATOM feed that requires authentication. I was going down the route of using the WebClient class and found a Credential property that exists but is not implemented!

webclient.Credentials = new NetworkCredential("username", "password");

Question: What work around are people using for accessing feeds that require basic authentication from a Non-Microsoft site?

link|improve this question
feedback

1 Answer

You could make a proxy in javascript and have your silverlight controls interface with javascript, which in-turn does the HTTP fetching. See this for an example: http://weblogs.asp.net/hpreishuber/archive/2009/07/30/silverlight-twitter-client-with-authentication.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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