cancel
Showing results for 
Search instead for 
Did you mean: 

"Server Instance Error" in SOAP PI Adapter engine

Former Member
0 Kudos

Hi,

While sending a message from ECC system to Integration server through PI, message getting failed.

The message fails at SOAP adapter engine while message passing from PI to Integration server through adapter. The error is

"SOAP: response message contains an error XIAdapter/PARSING/ADAPTER.SOAP_EXCEPTION - soap fault: OSBE01 server instance error : Exception occurred during execution on the exchange: Exchange[Message: javax.xml.transform.dom.DOMSource@2a48ea80]"

What are the possibilities for the above error to occur? Could anyone please explain?

Thanks!

Regards,

Gopi

Accepted Solutions (0)

Answers (2)

Answers (2)

iaki_vila
Active Contributor
0 Kudos

Hi Gopinath,

"SOAP: response message contains an error XIAdapter/PARSING/ADAPTER.SOAP_EXCEPTION - soap fault: OSBE01 server instance error : Exception occurred during execution on the exchange: Exchange[Message: javax.xml.transform.dom.DOMSource@2a48ea80]"

This error could be that you are retrieving a SOAP answer with the tag SOAP fault only and not the expected XML inside the SOAP body. Like this:

<?xml version="1.0" encoding="UTF-8" ?>

-<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

<soapenv:Body>

<soapenv:Fault xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<faultcode></faultcode>
<faultstring></faultstring>

</soapenv:Fault>

</soapenv:Body>

</soapenv:Envelope>

If you put the SOAP receiver adapter with the check Do Not Use SOAP envelope you can check in the monitoring the exacting message that you are retrieving.

Regards.

iprieto
Contributor
0 Kudos

Hi,

 

  This issue is common when response message is not contain message error expected.

  Maybe you can simulate this request by SOAPUI with the same message values in source message and check the response for analize it.

 

Best regards

Iván