使用 XPath.XPathDocument() 函数时出错
我在 ASP.NET/VB.NET 项目中使用此代码:
Dim sourceFile as String = "http://xml.weather.yahoo.com/forecastrss?p=94704"
Dim xPath As New XPath.XPathDocument(sourceFile)
第二行给出错误: “无法连接到远程服务器”
当我在网络浏览器中浏览 url (sourceFile) 时,它可以很好地打开 RSS 提要页面。 我怎样才能消除这个错误?
I'm using this code in my ASP.NET/VB.NET project:
Dim sourceFile as String = "http://xml.weather.yahoo.com/forecastrss?p=94704"
Dim xPath As New XPath.XPathDocument(sourceFile)
and the second line gives the error:
"Unable to connect to the remote server"
When I browse the url (sourceFile) in web browser, it opens the RSS feeds page finely.
How can I remove this error?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的应用程序
无法连接到远程服务器
,则这里没有关于XPath.XPathDocument
的内容。使用另一种方法检查连接,例如
WebClient
。Here is nothing about
XPath.XPathDocument
if your application isunable to connect to the remote server
.Check the connection using another method, e.g.
WebClient
.