cancel
Showing results for 
Search instead for 
Did you mean: 

Proxy to Webservice configuration

Former Member
0 Kudos

Hi,

I have a scenario proxy to webservice (Asynchornous communication)... Please let me know any blogs on it. And also if possible please let me know how to configure from SAP side.

Regards,

Senthil.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi;

Look at this

https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/3022- [original link is broken] [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

Mudit

Former Member
0 Kudos

Hi,

Thank you, I followed the webblog

/people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy and also able to configure successfully.

My scenario is proxy to webservice. Once I configure and executed the report from the sender side I am not finding any response in XI system either in SXMB_MONI nor in Communication Channel monitoring.

I request anybody can help me out to is their anymore step need to be done in ABAP or in XI.

Regards,

Dhill.

Former Member
0 Kudos

Hi,

Can anybody help me out on this..

my code is

CREATE OBJECT prxy.

DATA it TYPE ZPROXYMTSEND.

TRY.

it-MTSEND-PING_RESPONSE-PERNR = '123'.

CALL METHOD prxy->execute_asynchronous

EXPORTING

output = it.

commit work

.

CATCH cx_ai_system_fault .

DATA fault TYPE REF TO cx_ai_system_fault .

CREATE OBJECT fault.

WRITE 😕 fault->errortext.

ENDTRY.

write : 'tested'.

Regards,

Dhill

Former Member
0 Kudos

Hi All,

I could find only error in SPROXY transaction when i give test connection as below

Check List for Setting Up a Connection to the Integration Builder

1. The address of the Integration Builder must be stored in the R/3

System

<b>=>Check/maintain with report SPROX_CHECK_IFR_ADDRESS</b>

The address is taken the from following parameters in the exchange

profile (section 'connections'):

com.sap.aii.connect.repository.name: Server (e.g. pwdf0436)

com.sap.aii.connect.repository.httpport: Port (e.g. 1080)

com.sap.aii.connect.repository.contextroot: Root (e.g. rep)

Furthermore, the logon data is also read from the exchange profile

(section 'ApplicationSystem'):

com.sap.aii.applicationsystem.serviceuser.name: User

com.sap.aii.applicationsystem.serviceuser.pwd: Password

2. The HTTP connection of the R/3 application server must function

correctly

<b> =>Check with report SPROX_CHECK_HTTP_COMMUNICATION</b>

The HTTP port of the R/3 application server may be incorrectly

configured; contact your system administrator if necessary.

Alternatively, log onto another application server in this system

that has a functioning HTTP port.

3. The Integration Builder server must be running correctly

<b>=>Check with report SPROX_CHECK_IFR_RESPONSE</b>

(This link should display a valid XML document not an HTML page with

'Page Not Found', 'Internal Server Error 500' or similar)

Contact your system administrator so that the Integration Repository

server can be booted up, or an appropriate software version can be

imported, if necessary.

4. Proxy generation must correctly interpret the data of the

Integration Builder

<b>==>Check with report SPROX_CHECK_IFR_CONNECTION</b>

the bolded lines are marked in red colour in SPROXY TRANSACTION.

regards,

Dhill.

Answers (0)