cancel
Showing results for 
Search instead for 
Did you mean: 

SOAP to Proxy synchronous

Former Member
0 Kudos

Hi Experts,

My scenario is synchronous SOAP to Proxy.

Also when the ABAP server is down I need to send the value of the status as "1" to the Webserver as the response. Can this be achieved by fault messages in XI? If yes, please let me know how to do this.

SOAP req->XI->Proxy

Proxy--


>XI---SAOP res

And below is the SOAP response that needs to be sent to Webserver.

If ABAP server is up then

MT_Response

Status (value "0")

f1 (value returned by proxy)

f2 (value returned by proxy)

If ABAP server is down

MT_Response

Status (value "1")

f1 (blank value)

f2 (balnk value)

Thanks

Suma

Accepted Solutions (1)

Accepted Solutions (1)

baskar_gopalakrishnan2
Active Contributor
0 Kudos

>>Also when the ABAP server is down I need to send the value of the status as "1" to the Webserver as the response. Can this be achieved by fault messages in XI? If yes, please let me know how to do this

When the ABAP Server is down Proxy objects are not even get executed & so you cannot get any fault messages as response. Again Fault message is used for showing application business errors or exceptions. If the abap server itself down, You cannot use fault message to trace server down errors. Only exception trace is SXM_MONI of Integration Engine.

Edited by: Baskar Gopal on Apr 11, 2011 1:47 PM

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

You can achieve the desired behaviour in payload by using ccBPM, sychronous bridge. On exception it gives you the ability to catch the exception and fill in the payload with the desired content.

Cheers,

Naveen

Former Member
0 Kudos

Is it by opening S/A bridge in BPM?

Thanks

Suma