Re: null EL expression - ELResolver cannot handle a null base Object with identifier 'nullValue'

2007-09-13 Thread mraible
I'm seeing this same issue with MyFaces 1.2.0 and Facelets 1.1.13. I tried the exclusion selection below and that doesn't solve anything. I've had a discussion with the Jetty folks about commons-el in Jetty 6.1.5 and they've proven it's not present.

Re: null EL expression - ELResolver cannot handle a null base Object with identifier 'nullValue'

2007-07-24 Thread rlubke
For what it's worth, I'm seeing the same error when trying to get MyFaces 1.2.1-SNAPSHOT (built from source - would be good if nightly builds could be posted) working in the GlassFish admin-gui. javax.el.PropertyNotFoundException: ELResolver cannot handle a null base Object with identifier

Re: null EL expression - ELResolver cannot handle a null base Object with identifier 'nullValue'

2007-07-19 Thread noah
So how do I make it work in MyFaces under Jetty? Why doesn't the presence of commons-el or Jetty or whatever cause the RI to blow up? On 7/18/07, Bruno Aranda [EMAIL PROTECTED] wrote: Ah yes, actually the problem was not commons-el (which is necessary for tomahawk to work) but a bug in jetty

Re: null EL expression - ELResolver cannot handle a null base Object with identifier 'nullValue'

2007-07-18 Thread noah
Sorry for reviving a 2 week old thread, but I haven't had a chance to try this again. I've added the exclusions you have below and I'm still getting the same error on Jetty. jetty:run-exploded shows that commons-el isn't in WEB-INF/lib If I try the war in Tomcat 6 I get NoClassDefFoundError:

Re: null EL expression - ELResolver cannot handle a null base Object with identifier 'nullValue'

2007-07-18 Thread Bruno Aranda
Ah yes, actually the problem was not commons-el (which is necessary for tomahawk to work) but a bug in jetty which I think it has already been addressed. Cheers, Bruno On 18/07/07, noah [EMAIL PROTECTED] wrote: Sorry for reviving a 2 week old thread, but I haven't had a chance to try this

Re: null EL expression - ELResolver cannot handle a null base Object with identifier 'nullValue'

2007-07-18 Thread Matthias Wessendorf
are you talking about this one h:outputText value=#{nullValue} / ? I don't see it (in JSP) On 7/18/07, Bruno Aranda [EMAIL PROTECTED] wrote: Ah yes, actually the problem was not commons-el (which is necessary for tomahawk to work) but a bug in jetty which I think it has already been

Re: null EL expression - ELResolver cannot handle a null base Object with identifier 'nullValue'

2007-07-05 Thread Bruno Aranda
I can confirm this issue. Could you add it to JIRA please? Cheers, Bruno On 28/06/07, noah [EMAIL PROTECTED] wrote: With the 1.2.0-SNAPSHOT for today %@ taglib uri=http://java.sun.com/jsf/html; prefix=h % %@ taglib uri=http://java.sun.com/jsf/core; prefix=f % html head

Re: null EL expression - ELResolver cannot handle a null base Object with identifier 'nullValue'

2007-07-05 Thread Bruno Aranda
though it seems to be a problem with jetty having a dependency on commons-el 1.0 ? Bruno On 05/07/07, Bruno Aranda [EMAIL PROTECTED] wrote: I can confirm this issue. Could you add it to JIRA please? Cheers, Bruno On 28/06/07, noah [EMAIL PROTECTED] wrote: With the 1.2.0-SNAPSHOT for today

Re: null EL expression - ELResolver cannot handle a null base Object with identifier 'nullValue'

2007-07-05 Thread Bruno Aranda
I cannot reproduce this in the current12/test-webapp, so I guess it is a configuration issue whith the EL dependencies, Bruno On 05/07/07, Bruno Aranda [EMAIL PROTECTED] wrote: though it seems to be a problem with jetty having a dependency on commons-el 1.0 ? Bruno On 05/07/07, Bruno Aranda

Re: null EL expression - ELResolver cannot handle a null base Object with identifier 'nullValue'

2007-07-05 Thread Bruno Aranda
Ok, found the problem. The issue is with tomahawk, that depends on commons-el. Be sure that you don't have this dependency (commons-el) in the classpath. If using maven, do this for tomahawk and the sandbox: dependency groupIdorg.apache.myfaces.tomahawk/groupId

null EL expression - ELResolver cannot handle a null base Object with identifier 'nullValue'

2007-06-28 Thread noah
With the 1.2.0-SNAPSHOT for today %@ taglib uri=http://java.sun.com/jsf/html; prefix=h % %@ taglib uri=http://java.sun.com/jsf/core; prefix=f % html head titleNull Test/title /head body f:view h:outputText value=#{nullValue} /