axis2 中的复杂类型 - 地图
我正在使用 axis2 实现网络服务。 我面临的问题是在其中一种方法中返回复杂的结构。 这就是我想要做的:
作为返回类型 - Map
其中 Pair 是
public class Pair {
private String key;
private String value;
...........
}
我用 SoapUI 测试它
并且返回始终为空 这是我得到的一个简单响应
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<ns:getSNSTrendsResponse xmlns:ns="http://soap.sso.vwdcrm.app.mailprofiler.com">
<ns:return xsi:type="ax211:SNSData" xmlns:ax212="http://util.java/xsd" xmlns:ax211="http://objects.soap.sso.vwdcrm.app.mailprofiler.com/xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ax211:errorCode>1</ax211:errorCode>
<ax211:errorMessage xsi:nil="true"/>
<ax211:pairsResponse xsi:type="axis2ns2:anyType">
<empty xmlns="http://www.w3.org/2001/XMLSchema">false</empty>
</ax211:pairsResponse>
<ax211:response xsi:nil="true"/>
</ns:return>
</ns:getSNSTrendsResponse>
</soapenv:Body>
</soapenv:Envelope
,pairResponse 应该包含结果......
I m implementing web service using axis2.
The problem i m facing is with returning a complex structure in one of the methods.
Here is what i want to do:
as a return type - Map<String, Pair[]>
where Pair is
public class Pair {
private String key;
private String value;
...........
}
i m testing it with SoapUI
and the return is always empty
here is a simple response i got
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<ns:getSNSTrendsResponse xmlns:ns="http://soap.sso.vwdcrm.app.mailprofiler.com">
<ns:return xsi:type="ax211:SNSData" xmlns:ax212="http://util.java/xsd" xmlns:ax211="http://objects.soap.sso.vwdcrm.app.mailprofiler.com/xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ax211:errorCode>1</ax211:errorCode>
<ax211:errorMessage xsi:nil="true"/>
<ax211:pairsResponse xsi:type="axis2ns2:anyType">
<empty xmlns="http://www.w3.org/2001/XMLSchema">false</empty>
</ax211:pairsResponse>
<ax211:response xsi:nil="true"/>
</ns:return>
</ns:getSNSTrendsResponse>
</soapenv:Body>
</soapenv:Envelope
where pairResponse should contains the result...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Java 泛型(例如与数组类型相反)在编译期间会被删除,因此对于 Axis
Map
与Map
相同。在 Java SOAP 中表示键到对象映射的常用方法是使用对象包含其键的数组。
在您的情况下,如果您的地图由
Pair.key
值索引,那么使用Pair[]
应该可以。Java generics (contrary to arrays types for instance) are erased during compilation, thus for Axis
Map<String, Pair[]>
is the same thing asMap
.The usual way of representing key-to-object mapping in Java SOAP is to use an array where objects contain their key.
In your case, if your Map is indexed by
Pair.key
value, then using aPair[]
should work.