Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
You use JAX-WS for your Web Service provider? – home Sep 14 '11 at 12:05
No I am using CXF. – explorer Sep 14 '11 at 13:17
ok, so I will keep my answer just for reference. – home Sep 14 '11 at 13:26
just realized that CXF implements the JAX-WS API, so my answer may be a solution - depends on your implementation. BTW: I slightly modified your question. – home Sep 14 '11 at 13:54

2 Answers

up vote 0 down vote accepted

If you use JAX-WS API, you can use WebServiceContext to retrieve message meta-data. Just inject a reference into your implementation:

@WebService(name = "MyService" /*...*/)
public class MyService {

    @Resource
    private WebServiceContext wsc;

    @WebMethod
    public MyResponse process(MyRequest request) {
        HttpServletRequest httpRequest = (HttpServletRequest) wsc.getMessageContext().get(MessageContext.SERVLET_REQUEST);

        httpRequest.getRemoteAddr(); // access some parameters...

        return new MyResponse();
    }

}

It allows you to access 'everything' that came along via the HTTP request like caller address.

share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.