...
[12:47:54 CDT(-0500)] <EricDalquist> so to get 4.0 running on tomcat 7 we add this proxy around our http request impls
[12:48:17 CDT(-0500)] <EricDalquist> since we break the servlet spec and implement HttpServletRequest directly instead of extending HttpServletRequestWrapper
[12:48:26 CDT(-0500)] <EricDalquist> the problem was the portal request utils
[12:48:38 CDT(-0500)] <EricDalquist> which get you a reference to the "original" portal request object
[12:48:49 CDT(-0500)] <cwaymire> ahh
[12:48:56 CDT(-0500)] <EricDalquist> the requests were doing "return this"
[12:49:02 CDT(-0500)] <EricDalquist> which of course wasn't returning the proxy
[12:49:16 CDT(-0500)] <EricDalquist> once I figured out wtf what was going on