Can I get request object inside my web service?
Can I get request object inside my web service?I would like to get access to the HTTPServletRequest object so I can query the server ip address...
[160 byte] By [
elubina] at [2007-11-26 13:12:49]

# 2
in WAS 6, at least, I found the answer...com.ibm.ws.webservices.engine.MessageContext mc = MessageContext.getCurrentThreadsContext();HttpServletRequest req = (HttpServletRequest) mc.getProperty("transport.http.servletRequest");