To undersatnd better,
a) can you give your skelton code .How you are written the web methods.
b) Are you deploying your application in Weblogic server?
we can get the HTTPServletRequest from any web service method using the following code:
SOAPMessageContext soapMessageContext =
WebServiceContext.currentContext().getLastMessageContext();
ServletRequestImpl sri = (ServletRequestImpl)soapMessageContext.getProperty("weblogic.webservice.transport.http.request");
soapMessageContext is the messageContext returning by the SOAPServlet. For each request from the client this soapmesageContext will be changed.
To get the HTTPServletRequest , need to get property of weblogic.webservice.transport.http.request.
Regards
Nitesh