Martin:
The method you are talking about is the client side. And we have no control of our partners(clients) side. We only know our clients sending us SOAP message and we(server side) need to tell the URLs/IPs of our clients.
Daniel mail.laconiadatasystems.com wrote:
Daniel-
From the URL you can get your QueryString e.g.
URL url = new URL ("http://www.mySoapRouter.com/soap/servlet/rpcrouter"); Response resp = call.invoke (url, "");
string query=url.getQuery();
string host = url.getHost();
/*and most anything else you need can be extracted from the url*/
HTH,
Martin
----- Original Message ----- From: "Daniel Zhang" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, May 25, 2004 2:30 PM
Subject: SOAP method to get server/ip of incoming message source
Hi, All:
In SOAP package, is there any method could retrieve servername/IP of incoming source? I need a method sitting on the server side to tell the client servername or IP.
Thanks,
Daniel