cancel
Showing results for 
Search instead for 
Did you mean: 

ABAP Proxy -> XI -> Webservice ( Syncronous Scenario )

Former Member
0 Kudos

Hi Guys,

I am trying to develope the Syncronous Scenario

ABAP Proxy -> XI -> Webservice

I am trying to duplicate this RFC Scenario, given below, but using Proxy.

/people/shabarish.vijayakumar/blog/2006/03/23/rfc--xi--webservice--a-complete-walkthrough-part-1

But havent got any cle how to do it using ABAP Proxy.

Can anyone help.

Or any other scenario using the ABAP Proxy -> XI -> Webservice

I have read these blogs.'

http://www.webservicex.net/WS/WSDetails.aspx?CATID=4&WSID=59

/people/thomas.jung3/blog/2004/11/17/bsp-a-developers-journal-part-xiv--consuming-webservices-with-abap

https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/3022- [original link is broken] [original link is broken] [original link is broken] Activate Proxy

/people/siva.maranani/blog/2005/04/03/abap-server-proxies -ABAP Server Proxy

/people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy - ABAP Client Proxy

/people/siva.maranani/blog/2005/09/03/invoke-webservices-using-sapxi

Thanks.

BD

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Thanks.

It works.

BD.

Former Member
0 Kudos

Hi Das,

u want to use ABAP proxy instead of RFC right?

create 2 data type

1.request data type: using elements (fromzip,tozip)

2.response data type:using element (distance)

Now create corresponding message types,message interface message mapping....etc...

rest everything will be similer as RFC<->XI<->Webservice.

After you complete the ID and IR part....

go to R/3 ..use SPROXY transaction ...and create proxy...

Now u can trigger an outbound/client proxy in 2 ways...

1.select your proxy ...press F8 ,in the next screen check the last option and you can get an xml format ....here u can give ur input values( i mean from zip & to zip).. .. and get ur output...

2. write a report ....from that trigger ur proxy.....

i think u can try in that way......all the best...

Regards

Biplab

<i>note: reward with points if u find it useful...</i>

former_member192892
Active Contributor
0 Kudos

Hi BD,

The stepr basically are:-

1st create an outbound syncronous interface to post data to web service using any data type you prefer. Perform the mapping and finally configure yous scenario in ID.

Now use the blog

/people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy

to create your abap client proxy for the syncronour outbound interface you created above..

Thanks