开发者

How to add a Basic Authentication header to a MediaElement's Source request to a secure URL resource?

开发者 https://www.devze.com 2023-04-08 19:33 出处:网络
In my Silverlight applicatin, I am using Basic Authentication to communicate with my WCF Web Services. Everything works great, until my MediaElement attempts to reque开发者_如何学Cst a video of a secu

In my Silverlight applicatin, I am using Basic Authentication to communicate with my WCF Web Services. Everything works great, until my MediaElement attempts to reque开发者_如何学Cst a video of a secure URL resource. I get the authentication dialog.

Ideally, I would like to include the UID/PWD in the Authorization header of the MediaElement's request, but I do not know how to do this.

If this is not possible, how else can I restrict the access of the media element to only my application for the user logged in?


We solved this with a workaround...

When we authenticate the user with our webservices, we add a server side HTTP only cookie for the session.

var creds = string.Format("{0}:{1}", user.Username, user.Password);
var bcreds = System.Text.Encoding.UTF8.GetBytes(creds);
var base64Creds = Convert.ToBase64String(bcreds);

HttpCookie httpCookie = new HttpCookie("Authorization", "Basic " + base64Creds);
httpCookie.HttpOnly = true;
HttpContext.Current.Response.Cookies.Add(httpCookie);

Then we created a custom HttpModule to validate this cookie for access to the media files. In the custom handler we can make sure that the IP address of the request matches the session and that the request is actually coming from our Silverlight application.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号