如何将用户名和密码传递给 silverlight 4 中的 httpWebRequest
如何将用户名和密码传递给 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许你应该尝试一下。 所有 http 标头均符合 ASCII 规范。因此,
HttpWebRequest
支持接受标头值字符串的Headers
集合,这意味着该字符串在 HTTP 会话中发送时将被适当转换。Perhaps you should just try it. All http headers are by specification ASCII. Hence the fact that
HttpWebRequest
supports aHeaders
collection that accepts a string for a header value implies that the string will be converted appropriately when sent in a HTTP session.谢谢,我得到了解决方案,我必须在创建 WebRequest 对象之前编写以下行。 :)
thanks, I got the solution, I had to write following line before creating the WebRequest object. :)