cancel
Showing results for 
Search instead for 
Did you mean: 

Performance of XI Interfaces

Former Member
0 Kudos

Hi experts,

I am doing performance testing for this synchronous interface

SOAP -> XI -> RFC -> XI -> SOAP

Sometimes I encounter this problem when a request takes more than 10sec to get a response.

When I go into SXMB_MONI and look at the performance header and I noticed that the HTTP_SEND alone takes nearly 10sec. :

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

- <!-- Call Adapter

-->

- <SAP:PerformanceHeader xmlns:SAP="http://sap.com/xi/XI/Message/30">

- <SAP:RunTimeItem>

<SAP:Name type="ADAPTER_IN">INTEGRATION_ENGINE_HTTP_ENTRY</SAP:Name>

<SAP:Timestamp type="begin" host="ootspdbs02">20070413041742.424</SAP:Timestamp>

</SAP:RunTimeItem>

- <SAP:RunTimeItem>

<SAP:Name type="ADAPTER_IN">INTEGRATION_ENGINE_HTTP_ENTRY</SAP:Name>

<SAP:Timestamp type="end" host="ootspdbs02">20070413041742.424</SAP:Timestamp>

</SAP:RunTimeItem>

- <SAP:RunTimeItem>

<SAP:Name type="CORE">INTEGRATION_ENGINE</SAP:Name>

<SAP:Timestamp type="begin" host="ootspdbs02">20070413041742.424</SAP:Timestamp>

</SAP:RunTimeItem>

- <SAP:RunTimeItem>

<SAP:Name type="CORE">INTEGRATION_ENGINE</SAP:Name>

<SAP:Timestamp type="end" host="ootspdbs02">20070413041742.439</SAP:Timestamp>

</SAP:RunTimeItem>

- <SAP:RunTimeItem>

<SAP:Name type="PLSRV">PLSRV_RECEIVER_DETERMINATION</SAP:Name>

<SAP:Timestamp type="begin" host="ootspdbs02">20070413041742.721</SAP:Timestamp>

</SAP:RunTimeItem>

- <SAP:RunTimeItem>

<SAP:Name type="PLSRV">PLSRV_RECEIVER_DETERMINATION</SAP:Name>

<SAP:Timestamp type="end" host="ootspdbs02">20070413041742.721</SAP:Timestamp>

</SAP:RunTimeItem>

- <SAP:RunTimeItem>

<SAP:Name type="PLSRV">PLSRV_INTERFACE_DETERMINATION</SAP:Name>

<SAP:Timestamp type="begin" host="ootspdbs02">20070413041742.721</SAP:Timestamp>

</SAP:RunTimeItem>

- <SAP:RunTimeItem>

<SAP:Name type="PLSRV">PLSRV_INTERFACE_DETERMINATION</SAP:Name>

<SAP:Timestamp type="end" host="ootspdbs02">20070413041742.721</SAP:Timestamp>

</SAP:RunTimeItem>

- <SAP:RunTimeItem>

<SAP:Name type="PLSRV">PLSRV_RECEIVER_MESSAGE_SPLIT</SAP:Name>

<SAP:Timestamp type="begin" host="ootspdbs02">20070413041742.721</SAP:Timestamp>

</SAP:RunTimeItem>

- <SAP:RunTimeItem>

<SAP:Name type="PLSRV">PLSRV_RECEIVER_MESSAGE_SPLIT</SAP:Name>

<SAP:Timestamp type="end" host="ootspdbs02">20070413041742.736</SAP:Timestamp>

</SAP:RunTimeItem>

- <SAP:RunTimeItem>

<SAP:Name type="PLSRV">PLSRV_MAPPING_REQUEST</SAP:Name>

<SAP:Timestamp type="begin" host="ootspdbs02">20070413041742.736</SAP:Timestamp>

</SAP:RunTimeItem>

- <SAP:RunTimeItem>

<SAP:Name type="PLSRV">PLSRV_MAPPING_REQUEST</SAP:Name>

<SAP:Timestamp type="end" host="ootspdbs02">20070413041746.658</SAP:Timestamp>

</SAP:RunTimeItem>

- <SAP:RunTimeItem>

<SAP:Name type="PLSRV">PLSRV_OUTBOUND_BINDING</SAP:Name>

<SAP:Timestamp type="begin" host="ootspdbs02">20070413041746.658</SAP:Timestamp>

</SAP:RunTimeItem>

- <SAP:RunTimeItem>

<SAP:Name type="PLSRV">PLSRV_OUTBOUND_BINDING</SAP:Name>

<SAP:Timestamp type="end" host="ootspdbs02">20070413041746.658</SAP:Timestamp>

</SAP:RunTimeItem>

- <SAP:RunTimeItem>

<SAP:Name type="PLSRV">PLSRV_CALL_ADAPTER</SAP:Name>

<SAP:Timestamp type="begin" host="ootspdbs02">20070413041746.674</SAP:Timestamp>

</SAP:RunTimeItem>

<b>- <SAP:RunTimeItem>

<SAP:Name type="PLSRV">HTTP_SEND</SAP:Name>

<SAP:Timestamp type="begin" host="ootspdbs02">20070413041746.674</SAP:Timestamp>

</SAP:RunTimeItem>

- <SAP:RunTimeItem>

<SAP:Name type="PLSRV">HTTP_SEND</SAP:Name>

<SAP:Timestamp type="end" host="ootspdbs02">20070413041756.721</SAP:Timestamp>

</SAP:RunTimeItem></b>

- <SAP:RunTimeItem>

<SAP:Name type="PLSRV">PLSRV_CALL_ADAPTER</SAP:Name>

<SAP:Timestamp type="end" host="ootspdbs02">20070413041756.721</SAP:Timestamp>

</SAP:RunTimeItem>

</SAP:PerformanceHeader>

My questions are:

1. What is this HTTP_SEND doing?

2. How can I improve the performance in this case?

Please help.

Thank you.

Ron

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

HI,

See the below links

Soap over HTTP: http://www.w3.org/TR/2000/NOTE-SOAP-20000508/#_Toc478383526

Regards

Chilla

Former Member
0 Kudos

> HI,

> See the below links

> Soap over HTTP:

> http://www.w3.org/TR/2000/NOTE-SOAP-20000508/#_Toc4783

> 83526

> Regards

> Chilla

Thanks chilla, I think I understand what a SOAP request over HTTP means.

But how is this used in our context?