cancel
Showing results for 
Search instead for 
Did you mean: 

webservice Connection error in PI 7.1

Former Member
0 Kudos

Dear all,

I got the following error , when im tring to post the SOAP request. It is SOAP to RFC synchronous scenario .

[ HTTP operation 'POST' could not be performed on URL'/XISOAPAdapter/MessageServlet? channel=:servicexxx:CCxxx' due to an error: A connection with the server could not be established. ]

we are using remote desktop connection to work with all xi java stack, here we have developed IR and ID object . and using local machine for abap stack ..like moni, smq1 etc.

Is it the problem ?

Vijay

Accepted Solutions (1)

Accepted Solutions (1)

former_member463616
Contributor
0 Kudos

Answers (1)

Answers (1)

markangelo_dihiansan
Active Contributor
0 Kudos

Hello,

/MessageServlet? channel=:servicexxx:CCxxx'

There is a space after your query string. The correct URL should be:


/MessageServlet?channel=:servicexxx:CCxxx' 

Also, try to open in IE the URL for your soap sender.

Hope this helps,

Mark

Former Member
0 Kudos

Dear all,

whats the URL we have to mention in webservice.

1)http://host:50100/XISOAPAdapter/MessageServlet?channel=:service:CCxxx

or

2) the proposed URL when we are defining webservice in ID .

"https://host/XISOAPAdapter/MessageServlet?senderParty=&senderService=BSXXX&receiverParty=&receiverService=&interface=SI_XXX&interfaceNamespace=httpXXXX

-Drumi

markangelo_dihiansan
Active Contributor
0 Kudos

Hello,

The URL http://host:50100/XISOAPAdapter/MessageServlet?channel=:service:CCxxx will send the message to the Adapter Framework

Please refer to Stefan's blog regarding the use of propose URL

/people/stefan.grube/blog/2006/09/21/using-the-soap-inbound-channel-of-the-integration-engine

Hope this helps,

Mark

Former Member
0 Kudos

Problem solved. here the problem is in URL used http instead of https and no certificate installed in my local machine.

As stefan grube explained , we can use two types of urls while testing.

through SOAP adapter

1)http://<host>:<J2EEport>/XISOAPAdapter/MessageServlet? channel=:service:commchannel

without adapter engine.

2)http://<server>:<ABAP-port>/sap/xi/engine?type=entry&version=3.0&Sender.Service=<YourService>&Interface=<YourNamespace>%5E<YourInterface>

-Drumi

Former Member
0 Kudos

Thaks Mark