I modified the evaluatePortletId() method in PortletTag.java (not very nice
to do this, but we don't want to evaluate any EL in the portletId, so that's
ok for us), and got a bit further.

Now I'm getting this instead:

Nested Exception is java.lang.IllegalStateException: portlet container does
not support buffering
        at
org.apache.pluto.internal.impl.RenderResponseImpl.setBufferSize(RenderResponseImpl.java:176)
        at 
weblogic.servlet.jsp.PageContextImpl.initialize(PageContextImpl.java:70)

Any pointers on this one?


    private void evaluatePortletId() throws JspException {
        evaluatedPortletId = portletId;
        /*
        ExpressionEvaluatorProxy proxy =
ExpressionEvaluatorProxy.getProxy();
        Object obj = proxy.evaluate(portletId, pageContext);
        if (LOG.isDebugEnabled()) {
            LOG.debug("Evaluated portletId to: " + obj);
        }
        evaluatedPortletId = (String) obj;
        */
    }
-- 
View this message in context: 
http://www.nabble.com/PortletTag-causes-ELParseException-on-weblogic-9.2-tf4271889.html#a12159000
Sent from the Pluto - Dev mailing list archive at Nabble.com.

Reply via email to