如何将用户名和密码传递给 silverlight 4 中的 httpWebRequest

发布于 2024-09-28 15:52:56 字数 286 浏览 6 评论 0原文

如何将用户名和密码传递给 Silverlight 4 中的 HttpWebRequest

由于 silverlight 中的 HttpWebRequst 类未实现 Credentials 属性,因此我无法对我的用户进行身份验证。

我发现的一种方法是使用授权标头在标头中传递凭据,但它需要 ASCII 编码值,这在 Silverlight 中不受支持。

还有其他选择吗???

How do I pass username and password to an HttpWebRequest in Silverlight 4.

since the HttpWebRequst class in silverlight does not implement Credentials property, therefore i am unable to authenticate my user.

one way I found was, to pass credentials in header using Authorization header, but it requires ASCII encoded value, which is not supported in Silverlight.

any other alternatives???

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

霞映澄塘 2024-10-05 15:52:56

也许你应该尝试一下。 所有 http 标头均符合 ASCII 规范。因此,HttpWebRequest 支持接受标头值字符串的 Headers 集合,这意味着该字符串在 HTTP 会话中发送时将被适当转换。

Perhaps you should just try it. All http headers are by specification ASCII. Hence the fact that HttpWebRequest supports a Headers collection that accepts a string for a header value implies that the string will be converted appropriately when sent in a HTTP session.

满地尘埃落定 2024-10-05 15:52:56

谢谢,我得到了解决方案,我必须在创建 WebRequest 对象之前编写以下行。 :)

WebRequest.RegisterPrefix("http://":, WebRequestCreator.ClientHttp);

thanks, I got the solution, I had to write following line before creating the WebRequest object. :)

WebRequest.RegisterPrefix("http://":, WebRequestCreator.ClientHttp);

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