[12:46:03 CDT(-0500)] <EricDalquist> cwaymire: fixed that config mode issue in 4.0 on TC7
[12:47:17 CDT(-0500)] <cwaymire> where was the issue at?
[12:47:35 CDT(-0500)] <EricDalquist> https://github.com/Jasig/uPortal/commit/cdd262351bf53f65db2112273b4f3e87365aff66
[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