无法连接远程服务器(Web服务)

时间:2012-01-27 15:30:23

标签: c# asp.net rest webservices-client

enter image description here

我试图将此Web服务集成到我的asp.net项目中,但它会弹出这种类型的错误!如果您对此有任何想法,请给我解决方案。有很多关于oodle web服务和oodle API的材料。

尝试使用此网址可以更好地了解我的问题 http://api.oodle.com/api/v2/listings?key=TEST&region=chicago&category=vehicle/car

2 个答案:

答案 0 :(得分:4)

这根本不是SOAP Web服务。这是一个REST XML服务。 REST服务不以WSDL的形式提供自描述的元数据。

您需要另一种与服务进行通信的方式。如果没有可用的C#包装器,您可能必须自己编写url生成器,并让.NET Framework将xml文档反序列化为编写得很好的类(您也可以自己编写)< / em>的

请尝试阅读更多内容:Oddle Developer Center

修改 此外,如果要从Web应用程序中下载XML文档,还需要考虑几件事。

开发时,请确保以管理员的身份运行Visual Studio。

部署到托管服务提供商时,请确保您没有运行中等信任,因为这可能会阻止您访问外部网络来源。

但是,我仍然无法弄清楚为什么添加Web引用对话框无法连接到oodle Web服务器。检查网络设置,防火墙设置等。如果您能够在Web浏览器中访问该URL,则应该能够通过代码下载该文档。

答案 1 :(得分:4)

try
    {
        string url = @"http://api.oodle.com/api/v2/listings?key=TEST&region=chicago";

        WebClient webClient = new WebClient();
        webClient.Encoding = Encoding.UTF8;
        string result = webClient.DownloadString(url);

       }
  catch (Exception ex)
    {
        Response.Write(ex.ToString());

    }

此语句创建例外

   string result = webClient.DownloadString(url);

和异常详情

   System.Net.WebException: Unable to connect to the remote server ---> 
System.Net.Sockets.SocketException: A connection attempt failed because the connected 
party did not properly respond after a period of time, or established connection failed 
because connected host has failed to respond 192.168.0.101:808 at 
System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress 
socketAddress) at System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, 
Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, 
IAsyncResult asyncResult, Int32 timeout, Exception& exception) --- End of inner exception 
stack trace --- at System.Net.WebClient.DownloadDataInternal(Uri address, WebRequest& 
request) at System.Net.WebClient.DownloadString(Uri address) at 
System.Net.WebClient.DownloadString(String address) at _Default.lnkGoTo_Click(Object 
sender, EventArgs e) in d:\MyDemoz\oodleDemo\Default.aspx.cs:line 58