Thank you for the info. The customHttpWrapper can be accessed like this:
HttpServletRequest r = (HttpServletRequest)this.pageContext.getRequest();
ServletRequestWrapper rq =
(ServletRequestWrapper)this.pageContext.getRequest();
CustomHttpWrapper wr = CustomHttpWrapper)rq.getReques
A HttpServletRequestWrapper has a getRequest() method that returns the
wrapped request. Without knowing the specifics of the order or
implementation of you wrapping object, this might be what you need.
See
http://java.sun.com/j2ee/1.4/docs/api/javax/servlet/http/HttpServletRequestWrapper.html
2 matches
Mail list logo