0

使用 glassfish Web 服务测试器测试的 Soap 请求

<?xml version="1.0" encoding="UTF-8"?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Header/>
<S:Body>
    <ns2:hello xmlns:ns2="http://WS/">
        <name>asd</name>
    </ns2:hello>
</S:Body>

肥皂反应

<?xml version="1.0" encoding="UTF-8"?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Body>
    <ns2:helloResponse xmlns:ns2="http://WS/">
        <return>Hello asd !</return>
    </ns2:helloResponse>
</S:Body>

现在我尝试在我的 ios 上调用这个 hello 方法,使用 sudz 将“name”参数传递给 web 服务。所以这是createEnvelope里面的代码:

[s appendString: @"<?xml version=\"1.0\" encoding=\"utf-8\"?>"];
[s appendString:@"<S:Envelope xmlns:S=\"http://schemas.xmlsoap.org/soap/envelope/\">"];
[s appendString:@"<S:Header/>"];
[s appendString:@"<S:Body>"];
[s appendString:@"<ns2:hello "];
[s appendString:@"xmlns:ns2=\"http://WS/"];
[s appendString:@"\"/>"];
[s appendString:@"<name>alvin</name>"];
[s appendString:@"</ns2:hello> "];
[s appendString:@"</S:Body>"];
[s appendString:@"</S:Envelope>"];

这是ios访问时的netbeans日志

INFO: Received WS-I BP non-conformant Unquoted SoapAction HTTP header: http://WS/hello
INFO: berhasil null

被android访问时记录

 INFO: Received WS-I BP non-conformant Unquoted SoapAction HTTP header: http://WS/hello
 INFO: berhasil Cornel

但它总是返回 null 参数,并且在 android 中使用 ksoap 并且它工作得很好。使用上面的那些信封,我可以调用方法(你好),但它传递了 null 参数。请帮忙T_T

4

1 回答 1

2

由于还没有人回答这个问题,而我遇到了同样的问题,网络上的其他帖子没有解决这个问题......

我启用了 ARC,那里没有问题。我确实生成了 ARCless 版本,尽管我坚持使用 ARC,但效果也很好。我不得不更改为 Soap.m 中的请求生成参数的代码。我在返回行中添加了 xmlns=""

// Serializes an object to a string, XML representation with a specific node name.
+ (NSString*) serialize: (id) object withName: (NSString*) nodeName {
    if([object respondsToSelector:@selector(serialize:)]) {
        return [object serialize: nodeName];
    }
    return [NSString stringWithFormat:@"<%@ xmlns=\"\">%@</%@>", nodeName, [Soap serialize: object], nodeName];
}

我还必须做出这样的改变:

此处引用:http ://code.google.com/p/sudzc/issues/detail?id=40 更改自:

if([child respondsToSelector:@selector(name)] && [[child name] isEqual: name]) {

对此

if([child respondsToSelector:@selector(name)] && [[child name] hasSuffix:: name]) {

这是最终为我工作的 SOAP 请求。

<?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/" 
xmlns="http://webservice.alerts.xxxconsulting.com/">
<soap:Body>
<echo>
<arg0 xmlns="">echo msg</arg0>
</echo>
</soap:Body>
</soap:Envelope>
于 2012-12-03T20:01:51.183 回答