cancel
Showing results for 
Search instead for 
Did you mean: 

Synchronous proxy coding

Former Member
0 Kudos

Hi,

I am new to SAP.

I have to do synchronous proxy coding from scratch.

It involves two message interfaces:

outbound synchronous using SOAP adapter,

inbound synchronous using PROXY adapter.

Also provide some help on interface and message mapping.

Thanks and regards,

Surekha.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos
baskar_gopalakrishnan2
Active Contributor
0 Kudos

You are basically doing SOAP(Sender) to Proxy(receiver) synchronous interface.

Data types 2 for soap request and response

2 for proxy request and response

Msg types 4 (2 for soap and 2 for proxy)

Service Interfaces :

1 outbound, synchronous soap req and soap response msg types

1 inbound synchronous proxy req and proxy response msg types

Message Mapping 2 required

soap req mapped to proxy req

proxy resp mapped to soap resp

Operation mapping:

service interface outbound on the source and

service interface inbound on the target. Pick message mapping for request and response.

Note: For soap mesg, you can import message as external definition if it required

ID: (as normal way)

2 Business systems (1 for soap and 1 abap system for proxy)

2 comm channels soap sender , Proxy receiver

1 Receiver Determination

1 Interface determination

1 sender agreement and 1 receiver agreement

Hope this helps.