将使用 jaxb 插件生成的 pojo 转换为 Soap 消息格式

问题描述

我已经使用 jaxb 插件生成了类,例如。

@XmlAccessorType(XmlAccesstype.FIELD)
@XmlType(name = "getSubscriberAccountRequestImpl",propOrder = {"accountNo"})
public class GetSubscriberAccountRequestImpl extends AuthenticatedIwsRequestImpl {

不是因为它没有根元素,我想通过http发送soap xml,如下所示:

<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:irid="http://www.iridium.com">

   <soap:Header/>

   <soap:Body>

      <irid:getSubscriberAccount>

         <request>

            <iwsUsername>abc</iwsUsername>

            <signature>abc</signature>

            <serviceProviderAccountNumber>abc</serviceProviderAccountNumber>

            <timestamp>abc</timestamp>

            <caller></caller>

            <callerPassword></callerPassword>

            <accountNo>abc</accountNo>

         </request>

      </irid:getSubscriberAccount>

   </soap:Body>

</soap:Envelope>

如何将这个特定的 pojo 转换为这种格式,然后通过 http 调用

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)