I am developing an application using Richfaces 3.3.3 and Glassfish. It works all right . Now i got the call to port it to Tomcat 6/7 . So when i changed the runtime server on my Netbeans 6.9.1 and run application, I see #{UserBean.userName}, and all similar expressions, in spite of their evaluated values. I tried with all jar combinations, but still could not figure out. Please help.
Why i see #{UserBean.userName} in my jsf page while running on Tomcat but it works fine on Glassfish
|
It looks like your servlet mapping for the faces servlet is not working correctly. Maybe you have to adapt your web.xml. However, as far as I know configuration for faces servlet is the same in Glassfish and Tomcat. Another reason could be that your tomcat server cannot acces the jsf jar files. |
|||||
|
|
I'll assume that JSF tags works fine, otherwise you didn't see EL plain in the page in webbrowser, so the So, EL in JSF doesn't work. This can happen if the JSF EL factory is not found. This can happen if you declared a "custom" JSF EL factory in
Get rid of it. Tomcat doesn't ship with a Glassfish specific EL implementation. Tomcat already ships with its own EL implementation which should work equally good as in Glassfish. The server startup logs should however already have hinted about this. |
||||
|
