> Best bet if you need some informations about the request
> patch the server so you get all the (cgi) variables like
> REMOTE_HOST, HTTP_X_FORWARDED_FOR, ... whatnot.

No need for patching. Dedicated methods (like HttpServletRequest.getRequestURI(), HttpServletRequest.getResponsePath(), ...) or generic access to header lines (HttpServletRequest.getHeader(String) or HttpServletRequest.getHeaders(String)) are already there. And if you are referring to patching the XmlRpc server: Simply change your servlet to put the HttpServletRequest object into a ThreadLocal variable and you have everything.


Jochen


--

Reply via email to