Tomcat 6.0.x Custom ELResolver

2007-02-07 Thread Jason Rasmussen
Has anyone gotten a custom ELResolver to work in Tomcat 6.0.x using the existing ELResolver stack? In other words, not entering it into the faces-config.xml, but adding it through the JspApplicationContext. -- View this message in context: http://www.nabble.com/Tomcat-6.0.x-Custom-ELResolver-tf

Re: Tomcat 6.0.8 & JSF 1.2 RI

2007-01-29 Thread Jason Rasmussen
I found that with Tomcat 6.0.8, I didn't need to initialize the JspRuntimeContext, however my ELResolver is never actually hit. I placed print outs in the constructor and all the overridden methods of my ELResolver to determine if they were ever called. Only the constructor is ever called. The

Tomcat 6.0.7: JspContext is null in ELContext

2007-01-29 Thread Jason Rasmussen
I set up the ELResolver stack as follows: javax.servlet.jsp.el.ImplicitObjectELResolver demo.resolver.DCELResolver javax.el.MapELResolver javax.el.ResourceBundleELResolver javax.el.ListELResolver javax.el.ArrayELResolver javax.el.BeanELResolver demo.resolver.DebugE

Trouble adding custom ELResolver into resolver chain

2007-01-25 Thread Jason Rasmussen
I am trying to use a custom ELResolver that will work with the existing default resolvers. Initially, I tried just adding it within the face-config.xml as follows: demo.resolver.DCELResolver It worked to add my resolver, but it got rid of all the other resolvers in the chain. Next,