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]
# 1
Anyone? Help?
elubina at 2007-7-7 17:30:14 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...
# 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");
elubina at 2007-7-7 17:30:14 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...