Why does Silverlight 4 ClientHttp WebRequest prompt the user for a login and password?

Posted by James Cadd on Stack Overflow See other posts from Stack Overflow or by James Cadd
Published on 2010-04-25T23:27:03Z Indexed on 2010/04/25 23:33 UTC
Read the original article Hit count: 758

One of the new features of the client http stack in Silverlight 4 is the ability to supply network credentials. When I use this feature Windows shows a "Windows Security" message box that prompts the user for a login and password (text in the box is "The server xx at xx requires a username and password. Warning: This server is requesting that your username and password be sent in an insecure manner (basic authentication without a secure connection)."). I'm setting the login and password as shown below so I'm not sure why this is displayed. My code is:

var request = WebRequestCreator.ClientHttp.Create(new Uri("http://myserver:8080/gui/?list=1"));
request.Credentials = new NetworkCredential("login", "password");
request.BeginGetResponse(new AsyncCallback(OnRequestComplete), request);

If I enter the username and password into the messagebox the request completes successfully. For a number of reasons I'd rather prompt the user for the login and password so I'd like to avoid the messagebox if possible.

My setup is Silverlight 4 final, VS 2010 final, Windows 7 x86. The application is out of browser with elevated permissions.

© Stack Overflow or respective owner

Related posts about Silverlight

Related posts about clienthttprequest