[jboss-cvs] jboss-seam/examples/jee5/remoting/resources/WEB-INF ...

Michael Yuan michael.yuan at jboss.com
Mon Aug 6 23:21:13 EDT 2007


  User: myuan   
  Date: 07/08/06 23:21:13

  Added:       examples/jee5/remoting/resources/WEB-INF    components.xml
                        faces-config.xml web.xml
  Log:
  re-structure the jee5 directory
  
  Revision  Changes    Path
  1.1      date: 2007/08/07 03:21:13;  author: myuan;  state: Exp;jboss-seam/examples/jee5/remoting/resources/WEB-INF/components.xml
  
  Index: components.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  <components xmlns="http://jboss.com/products/seam/components"
              xmlns:core="http://jboss.com/products/seam/core"
              xmlns:security="http://jboss.com/products/seam/security"
              xmlns:transaction="http://jboss.com/products/seam/transaction"
              xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
              xsi:schemaLocation=
                  "http://jboss.com/products/seam/core http://jboss.com/products/seam/core-2.0.xsd 
                   http://jboss.com/products/seam/security http://jboss.com/products/seam/security-2.0.xsd
                   http://jboss.com/products/seam/transaction http://jboss.com/products/seam/transaction-2.0.xsd
                   http://jboss.com/products/seam/components http://jboss.com/products/seam/components-2.0.xsd">
  
      <core:init jndi-pattern="java:comp/env/jboss-seam-remoting/#{ejbName}/local" debug="true"/>    
  
      <core:manager conversation-timeout="120000" 
                    concurrent-request-timeout="500"
                    conversation-id-parameter="cid"/>
  
      <component name="org.jboss.seam.remoting.remoting">
        <property name="debug">true</property>
      </component>
                    
      
  </components>
  
  
  
  1.1      date: 2007/08/07 03:21:13;  author: myuan;  state: Exp;jboss-seam/examples/jee5/remoting/resources/WEB-INF/faces-config.xml
  
  Index: faces-config.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  <faces-config version="1.2"
     xmlns="http://java.sun.com/xml/ns/javaee"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd">
  
  </faces-config>
  
  
  
  1.1      date: 2007/08/07 03:21:13;  author: myuan;  state: Exp;jboss-seam/examples/jee5/remoting/resources/WEB-INF/web.xml
  
  Index: web.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  <web-app version="2.5"    
      xmlns="http://java.sun.com/xml/ns/javaee"    
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"    
      xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">   
    
     <!-- Ajax4jsf filter not needed, Seam Filter installs it for us -->
    <context-param>		
      <param-name>org.ajax4jsf.VIEW_HANDLERS</param-name>		
      <param-value>com.sun.facelets.FaceletViewHandler</param-value>	
    </context-param>        
    
    <!-- Seam -->
    
    <listener>        
      <listener-class>org.jboss.seam.servlet.SeamListener</listener-class>    
    </listener>    
  
    <filter>
      <filter-name>Seam Filter</filter-name>
      <filter-class>org.jboss.seam.servlet.SeamFilter</filter-class>
    </filter>
  
    <filter-mapping>
      <filter-name>Seam Filter</filter-name>
      <url-pattern>/*</url-pattern>
    </filter-mapping>
    
    <servlet>
      <servlet-name>Seam Resource Servlet</servlet-name>
      <servlet-class>org.jboss.seam.servlet.SeamResourceServlet</servlet-class>
    </servlet>
    
    <servlet-mapping>
      <servlet-name>Seam Resource Servlet</servlet-name>
      <url-pattern>/seam/resource/*</url-pattern>
    </servlet-mapping>   
    
    <!-- JSF and Facelets -->
    
    <context-param>        
      <param-name>javax.faces.DEFAULT_SUFFIX</param-name>        
      <param-value>.xhtml</param-value>    
    </context-param>
      
    <context-param>        
      <param-name>facelets.DEVELOPMENT</param-name>        
      <param-value>true</param-value>    
    </context-param>    
    
    <!-- Faces Servlet -->
    
    <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>*.seam</url-pattern>    
    </servlet-mapping>
    
    <!-- MyFaces -->    
    <!--    
    <listener>        
      <listener-class>org.apache.myfaces.webapp.StartupServletContextListener</listener-class>    
    </listener>    
    -->        
    
    <!-- JSF RI -->
    
    <listener>        
      <listener-class>com.sun.faces.config.ConfigureListener</listener-class>    
    </listener>        
    
    <!-- JEE5 EJB3 names -->
    
    <ejb-local-ref>              
      <ejb-ref-name>jboss-seam-remoting/HelloAction/local</ejb-ref-name>
      <ejb-ref-type>Session</ejb-ref-type>
      <local-home/>
      <local>org.jboss.seam.example.remoting.HelloLocal</local>               
      <ejb-link>HelloAction</ejb-link>        
    </ejb-local-ref>	  
    
    <session-config>
      <session-timeout>10</session-timeout> 
    </session-config>   
    
  </web-app>
  
  
  



More information about the jboss-cvs-commits mailing list