Re: Accessing HTTPWrappedRequest on a custom tag

2007-09-20 Thread wild_oscar
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

Re: Accessing HTTPWrappedRequest on a custom tag

2007-09-20 Thread Nils-Helge Garli
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