...
[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
[12:49:19 CDT(-0500)] <EricDalquist> it was a pretty easy fix
[12:50:10 CDT(-0500)] <cwaymire> cool. good to know its fixed. I seem to be on a roll with identifying problems
[12:50:17 CDT(-0500)] <cwaymire> i think its someone else's turn now
[12:51:37 CDT(-0500)] <EricDalquist>