访问SOAP服务仅适用于Android Emulator

时间:2013-11-20 17:51:01

标签: java android web-services soap

我正在尝试从我的Android应用程序访问SOAP服务。

我正在使用http://www.requestmaker.com/测试我的请求,所以我最终得到了这个请求:

请求标头已发送:

POST /WebserviceHCX.asmx HTTP/1.1
Content-Type: text/xml;charset=UTF-8
SOAPAction: hcxwords/installAcknowledge
Host: webservice.hcxwords.eu
Accept-Charset: utf-8
Accept: text/xml,application/text+xml,application/soap+xml
Content-Length: 382

请求数据:

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <installAcknowledge xmlns="hcxwords">
      <deviceID>test</deviceID>
      <refCode2></refCode2>
    </installAcknowledge>
  </soap:Body>
</soap:Envelope>

由于这在http://www.requestmaker.com/中运行得非常好(200 OK),我只是想在我的Android应用程序中做同样的事情。

    final String SOAPRequestXML = "<?xml version=\"1.0\" encoding=\"utf-8\"?><soap:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\"><soap:Body><installAcknowledge xmlns=\"hcxwords\"><deviceID>"+deviceID+"</deviceID><refCode2>"+refCode2+"</refCode2></installAcknowledge></soap:Body></soap:Envelope>";

    String url = "http://webservice.hcxwords.eu/WebserviceHCX.asmx";

    HttpClient httpclient = new DefaultHttpClient();
    HttpPost httppost = new HttpPost(url);

    httppost.addHeader("Content-type", "text/xml;charset=UTF-8"); 
    httppost.addHeader("SOAPAction", "hcxwords/installAcknowledge");
    httppost.addHeader("Host", "webservice.hcxwords.eu");
    httppost.addHeader("Accept-Charset", "utf-8");
    httppost.addHeader("Accept", "text/xml,application/text+xml,application/soap+xml");


    StringEntity se;

    try {
        se = new StringEntity(SOAPRequestXML, HTTP.UTF_8);
        se.setContentType("text/xml;charset=UTF-8");
        se.setContentEncoding("utf-8");
        httppost.setEntity(se);

        // Execute HTTP Post Request
        BasicHttpResponse httpResponse =
                (BasicHttpResponse)httpclient.execute(httppost);
        return httpResponse;

    } catch (ClientProtocolException e) {
        e.printStackTrace();
        throw new IllegalStateException("ClientProtocolException ");
    } catch (IOException e) {
        e.printStackTrace();
        throw new IllegalStateException("IOException ");
    }

这项工作很棒我的模拟器(200 OK)在我的Nexus 4上它(404)和我的三星平板电脑它抛出IOException:

  

IOException:无法解析主机“webservice.hcxwords.eu”:没有与&gt;相关联的地址主机名

1 个答案:

答案 0 :(得分:1)

最有可能的原因是仿真器与Web服务器位于同一网络上(从而允许解析主机名)但设备却没有。

两种可能的解决方案:

  1. 使用VPN将您的设备置于网络上(假设网络支持VPN)。 JunosPulse是一个很好的免费VPN客户端,您可以下载到您的Android设备。

  2. 将Web服务器暴露在防火墙之外。但是,您可能无法做到这一点。选项1通常是您最好的选择。

  3. 另一种可能性是某些东西阻止了设备解析服务器名称。尝试通过IP地址访问服务器,例如:

    String url = "http://<ip_address_of_server>/WebserviceHCX.asmx";