Hi
Thank you for reply.
here is my web.xml portion that i add to make this web.xml seam enabled.


  | 
  | <filter>
  |         <filter-name>Seam Redirect Filter</filter-name>
  |         
<filter-class>org.jboss.seam.servlet.SeamRedirectFilter</filter-class>
  |     </filter>
  |     
  |     <filter-mapping>
  |         <filter-name>Seam Redirect Filter</filter-name>
  |         <url-pattern>/face/*</url-pattern>
  |     </filter-mapping>
  | 
  |     <!-- 120 second conversation timeout -->
  |     <context-param>
  |         
<param-name>org.jboss.seam.core.manager.conversationTimeout</param-name>
  |         <param-value>120000</param-value>
  |     </context-param>
  | 
  |     <!-- Global JNDI name pattern for JBoss EJB3 (change for other servers) 
-->
  |     <context-param>
  |         <param-name>org.jboss.seam.core.init.jndiPattern</param-name>
  |         <param-value>jboss-seam-booking/#{ejbName}/local</param-value>
  |     </context-param>
  | 
  | 

I should say that my face servlet mapping is like :

  | <servlet>
  |         <servlet-name>Faces Servlet</servlet-name>
  |         <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
  |         <load-on-startup>1</load-on-startup>
  |         </servlet>
  |     <servlet-mapping>
  |         <servlet-name>Faces Servlet</servlet-name>
  |         <url-pattern>/faces/*</url-pattern>
  |     </servlet-mapping>
  | 

and this is the code from my faces-config.xml

  |  <lifecycle>
  |             
<phase-listener>org.jboss.seam.jsf.SeamPhaseListener</phase-listener>
  |     </lifecycle>
  |     
  | 
  | 

I still get the same error.

what is wrong ?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3932232#3932232

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3932232


-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to