Maximo Integration:将子对象放在对SOAP的响应中

时间:2018-03-27 18:05:22

标签: response integration maximo inbound

需要帮助!我在将子对象放入Maximo到SOAP的响应中时遇到了问题。

例如,我希望我的回答看起来像这样:

<mainObject>
   <--Imagine mainObject fields here-->
   <subObject>
       <--Imagine subObject fields here-->
   </subObject>
</mainObject>

我似乎无法从互联网上找到任何可以作为参考的样本。 谁能给我一些线索/提示?

1 个答案:

答案 0 :(得分:0)

您可以使用createChildrenData()方法创建一个新的子对象,然后向其中添加字段。例如:

TEMPLATE = app
TARGET = QtHelloWorld
QT += core gui
QT += widgets 
SOURCES += main.cpp 
SOURCES += mainwindow.cpp
HEADERS += mainwindow.h 

我必须反编译StructureObject类才能获得该方法。您需要为此修改后的响应创建新的WSDL,否则端点将无法识别新格式。