All
I have created a simple service using CXF Simple Frontend by referring to official document at
http://cxf.apache.org/docs/simple-frontend.html
I’m just wondering how I can access the HttpServletRequest in the method of service implementation class HelloWorldImpl in the example of the above link.
Any help would be appreciated.
Best Regards
I guess, you can try something like:
To find the exact key cotaining the request use –
PhaseInterceptorChain.getCurrentMessage().keySet();. It should contain someting like Http Request.Hope this helps.
Cheers!