好吧,这让我整个星期都发疯了,必须有一个简单的解释来解释为什么会发生这种情况。我编写了一个与 SOAP ASP.NET 2.0 Web 服务通信的黑莓应用程序。Web 服务在请求中需要一个带有会话令牌的 SOAP 标头。
SOAP 消息如下:
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Header>
<AuthenticationTicket xmlns="http://tempuri.org//">
<DeviceId>c3a4fc48-ce59-43f0-ae48-3452b5df9f14</DeviceId>
<UserId>00000000-0000-0000-0000-000000000000</UserId>
<SessionId>F432F463D5A5613BDAFF1BB43264D40A20F691F397F7248F92424D5BE2E8A9DFC888C8418CEFEB84BA4A9FE203B02542C926B98D9C499389D91FE390D3D0D611EC2BC37BBE7AB21CA9533B9389075D417D5EDB82CB8D3E46680B17A6C9DE552CFBFBE86C84E96C20FB07BBCA373B456B8F2FDB9F711ADBA8DEF46222A96113559CEAB4AE41EA44B52BDEC1AAF5FA7598256859F60D1F5615AD35B47C5EA23D8019E0690C463330503D4F3026575BE04CE341D89A63770930569153D9523D6733C3B831C56824B94EFD696A83BB9C4DD93817BDCA299F20CD7CCEC479F6267A09A03AD3C025DBDEC3B8F49402DE1B6538</SessionId>
</AuthenticationTicket>
</soap:Header>
<soap:Body>
<Retrieve xmlns="https://mobile.southeasthealth.com/">
<Request xsi:type="CallListRequest">
<Type>CallList</Type>
<DeviceId>00000000-0000-0000-0000-000000000000</DeviceId>
<UserName>XXXX</UserName>
</Request>
</Retrieve>
</soap:Body>
</soap:Envelope>
我用来发送消息的代码是:
String url = app.getProtocol() + "://" + app.getHost() + (app.getPort() == 80 || app.getPort() == 443 ? "" : app.getPort()) + "/" + app.getService();
URL address = new URL(url);
TrustManagerManipulator.allowAllSsl();
URLConnection connection = address.openConnection();
HttpsURLConnection post = (HttpsURLConnection)connection;
post.setDoInput(true);
post.setDoOutput(true);
post.setRequestMethod("POST");
post.setRequestProperty("SOAPAction", app.getNamespace() + "/Retrieve");
post.setRequestProperty("Content-Type", "text/xml; charset=utf-8");
post.setRequestProperty("Content-Length", String.valueOf(postData.toString().length()));
post.setReadTimeout(30000);
OutputStream outStream = post.getOutputStream();
Writer out = new OutputStreamWriter(outStream);
out.write(postData.toString());
out.flush();
out.close();
我遇到的问题是,当 Web 服务收到请求时,消息中没有包含 SOAP Header。
有没有其他人遇到过这个问题?
提前谢谢了。尼尔
- - - 更新 - - -
我明白了,我回顾了这些消息并将这些消息与 WSDL 进行了比较,我还通过 SOAPUI 运行了这些消息,通过我来说,Android 上的相同代码可以正常工作。
我终于发现它归结为一个命名空间
<AuthenticationTicket xmlns="http://tempuri.org//">
上面的命名空间末尾有两个 // ,这与 WSDL 定义不匹配,我将其更改为
<AuthenticationTicket xmlns="http://tempuri.org/">
一切都开始起作用了。
似乎黑莓对有效的 SOAP 比 Android 更挑剔一些。
我应该发现的!