axis2 中的复杂类型 - 地图

发布于 2024-12-22 18:10:37 字数 1259 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

虫児飞 2024-12-29 18:10:37

Java 泛型(例如与数组类型相反)在编译期间会被删除,因此对于 Axis MapMap 相同。

在 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 as Map.

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 a Pair[] should work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文