User: pra     
  Date: 01/08/08 12:01:24

  Modified:    src/docs jbossjms.xml
  Log:
  Changed connection factories for 2.5.x to support the latest names, changed 
destination mbean xml for MDB for 2.5.x
  
  Revision  Changes    Path
  1.2       +33 -36    manual/src/docs/jbossjms.xml
  
  Index: jbossjms.xml
  ===================================================================
  RCS file: /cvsroot/jboss/manual/src/docs/jbossjms.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- jbossjms.xml      2001/08/07 21:17:14     1.1
  +++ jbossjms.xml      2001/08/08 19:01:24     1.2
  @@ -1,6 +1,6 @@
   <?xml version = "1.0" encoding = "UTF-8"?>
   
  -<!-- Version: $Revision: 1.1 $ -->
  +<!-- Version: $Revision: 1.2 $ -->
   <chapter id = "jms">   
        <title>JBoss and JMS</title>   
        <subtitle>Java Messaging Service in JBoss</subtitle>   
  @@ -454,7 +454,7 @@
   </table> 
   
   
  -<para>From 2.5.x the names have changed. The same factory is now used for both 
topic and queue based connections.
  +<para>From 2.5.x the names have changed. The same factory is now used for both 
topic and queue based connections. The type of name used have also changed wich 
factory type it points to. The OIL and UIL types are not even available by default, 
but has to be configured in jboss.jcml by taking away the XML comments surounding them,
   </para>
   
   <table>
  @@ -469,64 +469,63 @@
   </row>
   </thead>
   <tbody>
  -
  -<!-- OIL -->
  +<!-- RMI -->
   <row>
   <entry>Topic/Queue</entry>
   <entry>ConnectionFactory</entry>
  -<entry>OIL</entry>
  +<entry>RMI</entry>
   <entry>2.5.x</entry>
   </row>
   <row>
   <entry>Topic/Queue</entry>
   <entry>XAConnectionFactory</entry>
  -<entry>OIL. Supports XA transaction</entry>
  +<entry>RMI. Supports XA transaction</entry>
   <entry>2.5.x</entry>
   </row>
   
   
  -<!-- UIL -->
  +<!-- INVM -->
   <row>
   <entry>Topic/Queue</entry>
  -<entry>UILConnectionFactory</entry>
  -<entry>UIL</entry>
  +<entry>java:/ConnectionFactory</entry>
  +<entry>INVM</entry>
   <entry>2.5.x</entry>
   </row>
   <row>
   <entry>Topic/Queue</entry>
  -<entry>UILXAConnectionFactory</entry>
  -<entry>UIL. Supports XA transaction</entry>
  +<entry>java:/XAConnectionFactory</entry>
  +<entry>INVM. Supports XA transaction</entry>
   <entry>2.5.x</entry>
   </row>
  -
  -<!-- RMI -->
  +<!-- OIL -->
   <row>
   <entry>Topic/Queue</entry>
  -<entry>RMIConnectionFactory</entry>
  -<entry>RMI</entry>
  +<entry>OILConnectionFactory</entry>
  +<entry>OIL (not on by default)</entry>
   <entry>2.5.x</entry>
   </row>
   <row>
   <entry>Topic/Queue</entry>
  -<entry>RMIXAConnectionFactory</entry>
  -<entry>RMI. Supports XA transaction</entry>
  +<entry>OILXAConnectionFactory</entry>
  +<entry>OIL. Supports XA transaction (not on by default)</entry>
   <entry>2.5.x</entry>
   </row>
   
   
  -<!-- INVM -->
  +<!-- UIL -->
   <row>
   <entry>Topic/Queue</entry>
  -<entry>java:/ConnectionFactory</entry>
  -<entry>INVM</entry>
  +<entry>UILConnectionFactory</entry>
  +<entry>UIL (not on by default)</entry>
   <entry>2.5.x</entry>
   </row>
   <row>
   <entry>Topic/Queue</entry>
  -<entry>java:/XAConnectionFactory</entry>
  -<entry>INVM. Supports XA transaction</entry>
  +<entry>UILXAConnectionFactory</entry>
  +<entry>UIL. Supports XA transaction (not on by default)</entry>
   <entry>2.5.x</entry>
   </row>
  +
   </tbody>
   </tgroup>
   </table>
  @@ -939,7 +938,7 @@
    *
    * <p><b>NOTE</b>This code is showcase only. It may not provide a stable production 
example.</p>
    * @author Peter Antman
  - * @version $Revision: 1.1 $
  + * @version $Revision: 1.2 $
    */
   
   public class HelloPublisher {
  @@ -1137,7 +1136,7 @@
    * <p><b>NOTE</b>This code is showcase only. It may not provide a stable production 
example.</p>
    *
    * @author Peter Antman
  - * @version $Revision: 1.1 $
  + * @version $Revision: 1.2 $
   
    */
   
  @@ -1756,9 +1755,7 @@
   
   <programlisting><![CDATA[
   
  -<mbean code="org.jbossmq.server.TopicManager" 
name="JBossMQ:service=Topic,name=testTopic">
  -   <attribute name="TopicName">testTopic</attribute>
  -</mbean>
  +  <mbean code="org.jbossmq.server.TopicManager" 
name="JBossMQ:service=Topic,name=testTopic"/>
   
   ]]></programlisting>
   
  @@ -1824,7 +1821,7 @@
    * Created: Thu Jul 26 13:20:32 2001
    *
    * @author Peter Antman
  - * @version $Revision: 1.1 $ $Date: 2001/08/07 21:17:14 $
  + * @version $Revision: 1.2 $ $Date: 2001/08/08 19:01:24 $
    */
   
   public class HelloMDB implements MessageDrivenBean, MessageListener {
  @@ -2025,7 +2022,7 @@
    * Created: Thu Jul 26 16:02:46 2001
    *
    * @author Peter Antman
  - * @version $Revision: 1.1 $ $Date: 2001/08/07 21:17:14 $
  + * @version $Revision: 1.2 $ $Date: 2001/08/08 19:01:24 $
    */
   
   public interface HelloWorkerHome extends EJBHome  {
  @@ -2054,7 +2051,7 @@
    * Created: Thu Jul 26 15:50:06 2001
    *
    * @author Peter Antman
  - * @version $Revision: 1.1 $ $Date: 2001/08/07 21:17:14 $
  + * @version $Revision: 1.2 $ $Date: 2001/08/08 19:01:24 $
    */
   
   public interface HelloWorker extends EJBObject {
  @@ -2088,7 +2085,7 @@
    *
    *
    * @author Peter Antman
  - * @version $Revision: 1.1 $
  + * @version $Revision: 1.2 $
    */
   
   public class HelloWorkerBean implements SessionBean {
  @@ -2186,7 +2183,7 @@
    * Created: Thu Jul 26 13:20:32 2001
    *
    * @author Peter Antman
  - * @version $Revision: 1.1 $ $Date: 2001/08/07 21:17:14 $
  + * @version $Revision: 1.2 $ $Date: 2001/08/08 19:01:24 $
    */
   
   public class HelloListener implements MessageDrivenBean, MessageListener {
  @@ -3118,7 +3115,7 @@
    *
    *
    * @author Peter Antman
  - * @version $Revision: 1.1 $
  + * @version $Revision: 1.2 $
    */
   public class TopicHelloBean implements SessionBean {
       
  @@ -3247,7 +3244,7 @@
    *
    *
    * @author Peter Antman
  - * @version $Revision: 1.1 $
  + * @version $Revision: 1.2 $
    */
   
   public interface Hello extends EJBObject {
  @@ -3275,7 +3272,7 @@
    *
    *
    * @author Peter Antman
  - * @version $Revision: 1.1 $
  + * @version $Revision: 1.2 $
    */
   public interface HelloHome extends EJBHome {
       Hello create() throws RemoteException, CreateException;
  @@ -3304,7 +3301,7 @@
    * 
    *
    * @author Peter Antman
  - * @version $Revision: 1.1 $
  + * @version $Revision: 1.2 $
    */
   
   public class HelloClient
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to