Silverlight 是否共享其主机的 HTTP 连接
Silverlight 视频播放器是否与其主机共享 HTTP 连接?
场景如下:一个网站受密码保护。该网页包含一个带有视频播放器的 Silverlight 控件。视频播放器播放来自同一网站的视频。视频播放器是否会使用网络浏览器中的凭据?我使用 MediaElement.Source 来指定视频的来源。
如果没有,我该如何解决这个问题?
Does a Silverlight video player share the HTTP connection with its host?
Here is the scenario: a web site is password protected. The web page contains a Silverlight control with a video player. The video player plays a video from the same web site. Will the credentials from the web browser be used by the video player? I use MediaElement.Source to specify where the video is coming from.
If not, how can I fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于它与服务器通信的方式...例如,
webrequest
类可以设置为使用BrowserHTTP
或ClientHTTP
...BrowserHTTP
使用浏览器的 HTTP 实现,包括 Referer、Cookie 等。ClientHTTP
允许您手动管理 Cookie 等 HTTP 设置...使用
MediaElement.SetSource
您可以利用任何您喜欢的连接(BrowserHTTP
/ClientHTPP
) 与您的特定设置(包括Authorization
header /Cookies
等)作为日志连接为内容提供了一个Stream
接口...更多详细信息请参见
http://msdn.microsoft.com/en-us/library/system.net.browser.webrequestcreator.browserhttp%28v=vs.95%29.aspx
<一个href="http://msdn.microsoft.com/en-us/library/system.net.browser.webrequestcreator.clienthttp%28v=vs.95%29.aspx" rel="nofollow">http://msdn .microsoft.com/en-us/library/system.net.browser.webrequestcreator.clienthttp%28v=vs.95%29.aspx
http://msdn.microsoft。 com/en-us/library/cc838250%28v=vs.95%29.aspx
http://msdn.microsoft.com/en-us /library/cc190669%28v=vs.95%29.aspx
That depends on the way it communicates with the server... for example the
webrequest
class can be set to useBrowserHTTP
orClientHTTP
...BrowserHTTP
uses the browser's HTTP implementation including Referer, Cookies etc.ClientHTTP
allows you to manage HTTP setting like Cookies manually...Using
MediaElement.SetSource
you can leverage whatever connection you please (BrowserHTTP
/ClientHTPP
) with you specific settings (includingAuthorization
header /Cookies
etc.) as log as that connection provides aStream
interface for the content...Further details see
http://msdn.microsoft.com/en-us/library/system.net.browser.webrequestcreator.browserhttp%28v=vs.95%29.aspx
http://msdn.microsoft.com/en-us/library/system.net.browser.webrequestcreator.clienthttp%28v=vs.95%29.aspx
http://msdn.microsoft.com/en-us/library/cc838250%28v=vs.95%29.aspx
http://msdn.microsoft.com/en-us/library/cc190669%28v=vs.95%29.aspx