Re: java.lang.NullPointerException during render phase when using ADF and MyFaces Tomahwak components together

2006-12-24 Thread Matt Tyson
I'm seeing this issue using ADF 10.1.3. I have the default renderer set to adf's renderer, and when I try to render a t:commandlink inside a facet, I see the following trace: java.lang.NullPointerException at

Re: java.lang.NullPointerException during render phase when using ADF and MyFaces Tomahwak components together

2006-03-24 Thread Adam Winer
Murray Brandon wrote: Partially solved: The problem is if you define adf core render kit as the default default render kit, some of the tomahawk/myfaces/facelets components have no rendering context (not sure which component, cos the exception helpfully does not tell me), hence the null

RE: java.lang.NullPointerException during render phase when using ADF and MyFaces Tomahwak components together

2006-03-23 Thread Murray Brandon
Partially solved: The problem is if you define adf core render kit as the default default render kit, some of the tomahawk/myfaces/facelets components have no rendering context (not sure which component, cos the exception helpfully does not tell me), hence the null pointer. application

Re: java.lang.NullPointerException during render phase when using ADF and MyFaces Tomahwak components together

2006-03-21 Thread Adam Winer
when using ADF and MyFaces Tomahwak components together Murray, You need to install the FaceletViewHandler using: context-param param-nameoracle.adf.view.faces.ALTERNATE_VIEW_HANDLER/param-name param-valuecom.sun.facelets.FaceletViewHandler/param-value /context-param in WEB-INF

Re: java.lang.NullPointerException during render phase when using ADF and MyFaces Tomahwak components together

2006-03-20 Thread Adam Winer
Murray, You need to install the FaceletViewHandler using: context-param param-nameoracle.adf.view.faces.ALTERNATE_VIEW_HANDLER/param-name param-valuecom.sun.facelets.FaceletViewHandler/param-value /context-param in WEB-INF/web.xml, not in faces-config.xml. Also, not that it's