We are getting a SOAP request on our server from various systems. Before sending the response , we need to make some new requests to the requesting system to fetch some details. To do so, we need to determine the details of the requesting server. Is there a way to detemine: - Requesting System VIP - Requestor IP - Other requestor specific details
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
If you use JAX-WS API, you can use
It allows you to access 'everything' that came along via the HTTP request like caller address. |
||||
|
|
|
I assume the Soap service is based on Http protocol. You can use HttpServletRequest's getRemote...() methods. But I am not sure whether that information will be enough for you. Another option would be to ask the client to include the client information that you need in their requests. |
|||
|
|