You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by cj...@apache.org on 2007/09/03 21:54:58 UTC

svn commit: r572411 - in /geronimo/daytrader/branches/1.2: README.Geronimo README.SunServer9 modules/ejb/src/main/resources/META-INF/sun-ejb-jar.xml modules/web/src/main/webapp/WEB-INF/sun-web.xml

Author: cjblythe
Date: Mon Sep  3 12:54:58 2007
New Revision: 572411

URL: http://svn.apache.org/viewvc?rev=572411&view=rev
Log:
Modify SJAS9 DDs so they do not interfere with DayTrader 1.2 deployment on Geronimo 2.0.1

Modified:
    geronimo/daytrader/branches/1.2/README.Geronimo
    geronimo/daytrader/branches/1.2/README.SunServer9
    geronimo/daytrader/branches/1.2/modules/ejb/src/main/resources/META-INF/sun-ejb-jar.xml
    geronimo/daytrader/branches/1.2/modules/web/src/main/webapp/WEB-INF/sun-web.xml

Modified: geronimo/daytrader/branches/1.2/README.Geronimo
URL: http://svn.apache.org/viewvc/geronimo/daytrader/branches/1.2/README.Geronimo?rev=572411&r1=572410&r2=572411&view=diff
==============================================================================
--- geronimo/daytrader/branches/1.2/README.Geronimo (original)
+++ geronimo/daytrader/branches/1.2/README.Geronimo Mon Sep  3 12:54:58 2007
@@ -122,4 +122,11 @@
 If you would like the trace statements to show up in the geronimo.log as well, 
 modify the FILE threshold with the following line:
 
-log4j.appender.FILE.threshold=TRACE#org.apache.geronimo.system.logging.log4j.XLevel
\ No newline at end of file
+log4j.appender.FILE.threshold=TRACE#org.apache.geronimo.system.logging.log4j.XLevel
+
+
+ISSUES
+---------------------------
+On Geronimo 2.0.1, if OpenJPA tracing is enabled, the KeySequenceBean will not function 
+correctly because the tracing code will deplete all of the keys in the resulting KeyBlock
+when the toString method is called. [08/31/2007]
\ No newline at end of file

Modified: geronimo/daytrader/branches/1.2/README.SunServer9
URL: http://svn.apache.org/viewvc/geronimo/daytrader/branches/1.2/README.SunServer9?rev=572411&r1=572410&r2=572411&view=diff
==============================================================================
--- geronimo/daytrader/branches/1.2/README.SunServer9 (original)
+++ geronimo/daytrader/branches/1.2/README.SunServer9 Mon Sep  3 12:54:58 2007
@@ -88,13 +88,13 @@
 1) Expand the "Resources" >> "JMS Resources" tree
 2) Follow the "Connection Factories" link and click on "New"
 3) Enter the following required properties...
-      JNDI Name:   jms/TradeBrokerQCF
+      JNDI Name:   jms/QueueConnectionFactory
       Type:        javax.jms.QueueConnectionFactory
 4) Delete all properties in the "Additional Properties" list
 5) Click on the "OK" button to save the changes
 6) Repeat steps 1 through 5 for the TradeStreamTCF using the following
    properties...
-      JNDI Name:   jms/TradeStreamerTCF
+      JNDI Name:   jms/TopicConnectionFactory
       Type:        javax.jms.TopicConnectionFactory
 7) Following the "Destination Resources" link and click on "New"
 8) Enter the following required properties...

Modified: geronimo/daytrader/branches/1.2/modules/ejb/src/main/resources/META-INF/sun-ejb-jar.xml
URL: http://svn.apache.org/viewvc/geronimo/daytrader/branches/1.2/modules/ejb/src/main/resources/META-INF/sun-ejb-jar.xml?rev=572411&r1=572410&r2=572411&view=diff
==============================================================================
--- geronimo/daytrader/branches/1.2/modules/ejb/src/main/resources/META-INF/sun-ejb-jar.xml (original)
+++ geronimo/daytrader/branches/1.2/modules/ejb/src/main/resources/META-INF/sun-ejb-jar.xml Mon Sep  3 12:54:58 2007
@@ -9,14 +9,14 @@
         <ejb-ref-name>ejb/Trade</ejb-ref-name>
         <jndi-name>ejb/TradeEJB</jndi-name>
       </ejb-ref>
-      <resource-ref>
+      <!--<resource-ref>
         <res-ref-name>jms/QueueConnectionFactory</res-ref-name>
         <jndi-name>jms/TradeBrokerQCF</jndi-name>
       </resource-ref>
       <resource-ref>
         <res-ref-name>jms/TopicConnectionFactory</res-ref-name>
         <jndi-name>jms/TradeStreamerTCF</jndi-name>
-      </resource-ref>
+      </resource-ref>-->
       <resource-ref>
         <res-ref-name>jdbc/TradeDataSource</res-ref-name>
         <jndi-name>jdbc/TradeDataSource</jndi-name>
@@ -34,14 +34,16 @@
         <jndi-name>ejb/TradeEJB</jndi-name>
       </ejb-ref>
       <mdb-connection-factory>
-        <jndi-name>jms/TradeBrokerQCF</jndi-name>
+        <!--<jndi-name>jms/TradeBrokerQCF</jndi-name>-->
+        <jndi-name>jms/QueueConnectionFactory</jndi-name>
       </mdb-connection-factory>
     </ejb>
     <ejb>
       <ejb-name>TradeStreamerMDB</ejb-name>
       <jndi-name>jms/TradeStreamerTopic</jndi-name>
       <mdb-connection-factory>
-        <jndi-name>jms/TradeStreamerTCF</jndi-name>
+        <!--<jndi-name>jms/TradeStreamerTCF</jndi-name>-->
+        <jndi-name>jms/QueueConnectionFactory</jndi-name>
       </mdb-connection-factory>
     </ejb>
     <ejb>

Modified: geronimo/daytrader/branches/1.2/modules/web/src/main/webapp/WEB-INF/sun-web.xml
URL: http://svn.apache.org/viewvc/geronimo/daytrader/branches/1.2/modules/web/src/main/webapp/WEB-INF/sun-web.xml?rev=572411&r1=572410&r2=572411&view=diff
==============================================================================
--- geronimo/daytrader/branches/1.2/modules/web/src/main/webapp/WEB-INF/sun-web.xml (original)
+++ geronimo/daytrader/branches/1.2/modules/web/src/main/webapp/WEB-INF/sun-web.xml Mon Sep  3 12:54:58 2007
@@ -24,7 +24,8 @@
   </resource-ref>
   <resource-ref>
     <res-ref-name>jms/QueueConnectionFactory</res-ref-name>
-    <jndi-name>jms/TradeBrokerQCF</jndi-name>
+    <!--<jndi-name>jms/TradeBrokerQCF</jndi-name>-->
+    <jndi-name>jms/QueueConnectionFactory</jndi-name>
     <default-resource-principal>
       <name>guest</name>
       <password>guest</password>
@@ -32,7 +33,8 @@
   </resource-ref>
   <resource-ref>
     <res-ref-name>jms/TopicConnectionFactory</res-ref-name>
-    <jndi-name>jms/TradeStreamerTCF</jndi-name>
+    <!--<jndi-name>jms/TradeStreamerTCF</jndi-name>-->
+    <jndi-name>jms/TopicConnectionFactory</jndi-name>
     <default-resource-principal>
       <name>guest</name>
       <password>guest</password>