Skip to Content
0
Jul 08, 2010 at 02:31 PM

Getting wrong structure in SOAP response

41 Views

Hello to all,

we consume a webservice with PI 7.1

In SAP I get the following wrong response:

<SOAP-ENV:Body>
   <ns1:insertAkzeptanzstellenResponse>
      <insertAkzeptanzstellenReturn xsi:type="xsd:string">0</insertAkzeptanzstellenReturn>
   </ns1:insertAkzeptanzstellenResponse>
</SOAP-ENV:Body>

If I test the webservice with SOAP-UI I get following (structural correct)

<SOAP-ENV:Body>
      <ns1:insertAkzeptanzstellenResponse>
         <insertAkzeptanzstellenReturn xsi:type="ns1:returnArray">
            <returnTab xsi:type="ns1:returnTab">
               <value xsi:type="xsd:string">0</value>
            </returnTab>
         </insertAkzeptanzstellenReturn>
      </ns1:insertAkzeptanzstellenResponse>
   </SOAP-ENV:Body>

What's my fault?

Regards Christian