Silverlight 是否共享其主机的 HTTP 连接

发布于 2024-11-29 22:41:24 字数 191 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风蛊 2024-12-06 22:41:24

这取决于它与服务器通信的方式...例如,webrequest 类可以设置为使用 BrowserHTTPClientHTTP...

BrowserHTTP 使用浏览器的 HTTP 实现,包括 Referer、Cookie 等。

ClientHTTP 允许您手动管理 Cookie 等 HTTP 设置...

使用 MediaElement.SetSource您可以利用任何您喜欢的连接(BrowserHTTP / ClientHTPP) 与您的特定设置(包括 Authorization header / Cookies 等)作为日志连接为内容提供了一个Stream接口...

更多详细信息请参见

That depends on the way it communicates with the server... for example the webrequest class can be set to use BrowserHTTP or ClientHTTP...

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 (including Authorization header / Cookies etc.) as log as that connection provides a Stream interface for the content...

Further details see

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文