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

Gavin King gavin.king at jboss.com
Mon Nov 20 20:01:19 EST 2006


  User: gavin   
  Date: 06/11/20 20:01:19

  Modified:    examples/booking/resources/WEB-INF  components.xml
  Log:
  use new XML ns stuff
  
  Revision  Changes    Path
  1.7       +15 -23    jboss-seam/examples/booking/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/booking/resources/WEB-INF/components.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -b -r1.6 -r1.7
  --- components.xml	10 Nov 2006 19:07:54 -0000	1.6
  +++ components.xml	21 Nov 2006 01:01:19 -0000	1.7
  @@ -1,28 +1,20 @@
  -<!DOCTYPE components PUBLIC
  -  "-//JBoss/Seam Component Configuration DTD 1.1//EN"
  -  "http://jboss.com/products/seam/components-1.1.dtd">
  +<?xml version="1.0" encoding="UTF-8"?>
  +<components xmlns="http://jboss.com/products/seam/components"
  +            xmlns:core="http://jboss.com/products/seam/core"
  +            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">
  +
  +    <core:init jndi-pattern="@jndiPattern@" debug="true"/>    
  +
  +    <core:pages no-conversation-view-id="/main.xhtml"/>
  +
  +    <core:manager conversation-timeout="120000" 
  +                  concurrent-request-timeout="500"
  +                  conversation-id-parameter="cid"
  +                  conversation-is-long-running-parameter="clr"/>
   
  -<components>
  -
  -    <component name="org.jboss.seam.core.init">
  -        <property name="debug">true</property>
  -        <property name="jndiPattern">@jndiPattern@</property>
  -    </component>
  -    
  -    <component name="org.jboss.seam.core.manager">
  -        <!-- half second wait for conversation lock on concurrent requests -->
  -        <property name="concurrentRequestTimeout">500</property>
  -        <!-- 120 second conversation timeout -->
  -        <property name="conversationTimeout">120000</property>
  -        <property name="conversationIdParameter">cid</property>
  -        <property name="conversationIsLongRunningParameter">clr</property>
  -    </component>
  -    
  -    <component name="org.jboss.seam.core.pages">
  -        <property name="noConversationViewId">/main.xhtml</property>
  -    </component>
  -
  -    <component class="org.jboss.seam.core.Ejb" 
  -           installed="@embeddedEjb@"/>
  +    <core:ejb installed="@embeddedEjb@"/>
   
   </components>
  \ No newline at end of file
  
  
  



More information about the jboss-cvs-commits mailing list