Silverlight WebRequest 失败并显示“无法识别 URI 前缀”
我有一个 silverlight 库,应该发出 Web 服务请求并接收 xml 响应:
Uri uri = new Uri("http://some_server:51306/getStuff.xml?id=14");
WebRequest request = WebRequest.Create(uri);
但是,WebRequest.Create(uri) 失败,出现异常“无法识别 URI 前缀”。
请注意,我正在使用来自非 silverlight dll 的单元测试来运行该程序。我需要为该应用程序构建一个测试套件!
有什么想法吗?
I have a silverlight library that is supposed to get make a web service request and receive an xml response:
Uri uri = new Uri("http://some_server:51306/getStuff.xml?id=14");
WebRequest request = WebRequest.Create(uri);
However, WebRequest.Create(uri) fails with the exception "The URI prefix is not recognized".
Note that I am running the program using a unit test from a non-silverlight dll. I need to build a test suite for the app!
Any ideeas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试将 .Web 项目设置为默认启动项目而不是 Silverlight 项目
Try setting the .Web project as the default startup project instead of the Silverlight project
您是否尝试过将第二个参数添加到 Uri 构造函数中?
Have you tried adding the second parameter to the Uri constructor?