hi belem,
that might be the problem. extval initializes input components with metadata
of the bound property before the component is rendered
(to provide different features). so extval has to inspect the property of
every input component. it seems that this isn't compatible with your custom
mechanism.
you can test it with a custom impl. - use the following code in your
startup-listener.
protected void init()
{
//workaround to allow forced double-rendering used in icefaces
ExtValContext.getContext().addGlobalProperty(ExtValRendererProxy.KEY, null);
//deregister the default implementation
ExtValContext.getContext().denyRendererInterceptor(ValidationInterceptorWithSkipValidationSupport.class);
//register a custom implementation without component initialization
ExtValContext.getContext().registerRendererInterceptor(new
ValidationInterceptorWithSkipValidationSupport() {
@Override
public void beforeEncodeBegin(FacesContext facesContext,
UIComponent uiComponent, Renderer wrapped)
throws IOException, SkipBeforeInterceptorsException,
SkipRendererDelegationException
{
//do nothing
}
});
}
regards,
gerhard
http://www.irian.at
Your JSF powerhouse -
JSF Consulting, Development and
Courses in English and German
Professional Support for Apache MyFaces
2009/7/10 Belem <[email protected]>
>
> Hi Gerhard,
>
> Gerhard Petracek wrote:
> >
> > hmmm - i'm not aware of such issues with mojarra.
> > what's the functionality of MyAppServlet?
> >
>
> MyAppServlet.init() initializes some attributes and checks the templates
> folder.
> MyAppServlet.doGet(..) /.doPost(..) then calls this servlets' method
> processDocumentRequest(..) which checks the existence of a View-Template
> object and if not null passes the Request further to
> includeLayoutTemplate(httpRequest, httpResponse, view) which checks if the
> called resource (jsp file) in the servlet context isn't null, replaces .jsp
> by .jsf and then calls the include methode of this resource'
> RequestDispatcher.
>
> I'll try debugging until the start of this exception by attaching api
> sources... is there something I can watch out for?
>
> Thanks,
> Belem
> --
> View this message in context:
> http://www.nabble.com/exception-with-extval---JSF1054-RENDER_RESPONSE-6-tp24409424p24424370.html
> Sent from the MyFaces - Users mailing list archive at Nabble.com.
>
>