I think I have a better fix now, and I would be happy to submit a
patch if someone shows me how.

I changed the EmptyHttpServletResponseImpl into a
EmptyHttpServletResponseWrapper.  Then I modified this line in
StrutsPortlet, line 269:
                if (actionRequest) {
                    res = new EmptyHttpServletResponseImpl();
                }
to this:
                if (actionRequest) {
                    res = new EmptyHttpServletResponseWrapper(res);
                }

Weblogic seems to be okay with it, and now I feel much better about
the code itself.
-- Jeff

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to