Hello,
I have installed the Plain J2SE Adapter Engine.
On the Adpater Engine running a SOAP Adapter.
When i try to test the Adapter i become following error Message:
java.net.ConnectException: Connection refused: connect
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.doConnect(Unknown Source)
at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
at java.net.PlainSocketImpl.connect(Unknown Source)
at java.net.Socket.connect(Unknown Source)
at java.net.Socket.connect(Unknown Source)
at java.net.Socket.<init>(Unknown Source)
at java.net.Socket.<init>(Unknown Source)
at com.sap.aii.messaging.net.ClientHttpImpl.call(ClientHttpImpl.java:146)
at com.sap.aii.messaging.adapter.SinglePayloadClient.doPost(SinglePayloadClient.java:222)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at com.sap.aii.messaging.adapter.Zone.service(ModuleGUIBrowserEngine.java:1073)
at com.sap.aii.messaging.adapter.HTTPRequest.run(ModuleGUIBrowserEngine.java:371)
any idea?
Regards,
Robin
Hi Robin,
could you post the SOAP Adapter module settings?
Do you want to call a WebService from XI or do you want to use the SOAP Adapter as WebService for a local client?
Are all URLs correct? Do you need a proxy server? Are all User and Password for WebService, Proxy Server and XI set correctly?
Stefan
So you want to use the SOAP Adapter as Webservice and send data from a local client to XI.
In your configuration, User, Password and Client of the XI system are missing.
In XI 2.0 the config would be:
XMB.TargetURL=http://netweaver:8000/sap/xi/engine?type=entry
XMB.User=YourUser
XMB.Password=YourPassword
XMB.Client=YourClient
XMBWS.WSPort=4444
XMBWS.WSPath=/soap/start
XMB.SenderBusinessSystem=MOS_BS
XMB.SenderInterfaceNamespace=moskau
XMB.SenderInterfaceName=MOSOut
XMB.QualityOfService=BE
In XI 3.0 you would have:
XI.TargetURL=http://netweaver:8000/sap/xi/engine?type=entry
XI.User=YourUser
XI.Password=YourPassword
XI.Client=YourClient
XMBWS.WSPort=4444
XMBWS.WSPath=/soap/start
XI.SenderService=MOS_BS
XI.SenderInterfaceNamespace=moskau
XI.SenderInterfaceName=MOSOut
XI.QualityOfService=BE
XI.ContentType=text/xml
Stefan
Add a comment