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

Shane Bryzak Shane_Bryzak at symantec.com
Tue Jan 30 20:20:50 EST 2007


  User: sbryzak2
  Date: 07/01/30 20:20:50

  Modified:    examples/seamspace/resources/WEB-INF  components.xml
  Log:
  used newer xml schemas
  
  Revision  Changes    Path
  1.16      +17 -17    jboss-seam/examples/seamspace/resources/WEB-INF/components.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: components.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/seamspace/resources/WEB-INF/components.xml,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -b -r1.15 -r1.16
  --- components.xml	31 Jan 2007 00:17:39 -0000	1.15
  +++ components.xml	31 Jan 2007 01:20:50 -0000	1.16
  @@ -1,17 +1,21 @@
  -<!DOCTYPE components PUBLIC
  -  "-//JBoss/Seam Component Configuration DTD 1.1//EN"
  -  "http://jboss.com/products/seam/components-1.1.dtd">
  -
  -<components>
  -
  -    <component name="org.jboss.seam.core.init">
  -        <property name="jndiPattern">@jndiPattern@</property>
  -        <property name="debug">false</property>
  -    </component>
  +<?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:xsi="http://www.w3.org/2001/XMLSchema-instance"
  +            xsi:schemaLocation=
  +                "http://jboss.com/products/seam/core http://jboss.com/products/seam/core-1.1.xsd 
  +                 http://jboss.com/products/seam/components http://jboss.com/products/seam/components-1.1.xsd
  +                 http://jboss.com/products/seam/security http://jboss.com/products/seam/security-1.1.xsd">
  +
  +    <core:init jndi-pattern="@jndiPattern@" debug="false"/>  
  + 
  +    <core:manager conversation-timeout="120000" 
  +                  concurrent-request-timeout="500"
  +                  conversation-id-parameter="cid"
  +                  conversation-is-long-running-parameter="clr"/>
    
  -    <component name="org.jboss.seam.core.manager">
  -        <property name="conversationTimeout">120000</property>
  -    </component>
  +    <security:identity authenticate-method="#{authenticator.authenticate}"/>    
       
       <component name="entityManager" auto-create="true" class="org.jboss.seam.core.ManagedPersistenceContext">
           <property name="persistenceUnitJndiName">java:/seamspaceEntityManagerFactory</property>
  @@ -21,8 +25,4 @@
           <property name="ruleFiles">/META-INF/security-rules.drl</property>
       </component>
       
  -    <component class="org.jboss.seam.security.Identity">
  -        <property name="authenticateMethod">#{authenticator.authenticate}</property>
  -    </component>
  -        
   </components>
  \ No newline at end of file
  
  
  



More information about the jboss-cvs-commits mailing list