You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by jl...@apache.org on 2006/10/26 11:57:46 UTC

svn commit: r467941 - /incubator/openejb/trunk/openejb2/modules/openejb-sunorb/src/main/java/org/apache/openejb/sunorb/SunORBConfigAdapter.java

Author: jlaskowski
Date: Thu Oct 26 02:57:45 2006
New Revision: 467941

URL: http://svn.apache.org/viewvc?view=rev&rev=467941
Log:
OPENEJB-297 The sunorb code is using a hardcoded Windows directory for it's DbDir instead of the configured dir.

Submitted by: Rick McGuire

Modified:
    incubator/openejb/trunk/openejb2/modules/openejb-sunorb/src/main/java/org/apache/openejb/sunorb/SunORBConfigAdapter.java

Modified: incubator/openejb/trunk/openejb2/modules/openejb-sunorb/src/main/java/org/apache/openejb/sunorb/SunORBConfigAdapter.java
URL: http://svn.apache.org/viewvc/incubator/openejb/trunk/openejb2/modules/openejb-sunorb/src/main/java/org/apache/openejb/sunorb/SunORBConfigAdapter.java?view=diff&rev=467941&r1=467940&r2=467941
==============================================================================
--- incubator/openejb/trunk/openejb2/modules/openejb-sunorb/src/main/java/org/apache/openejb/sunorb/SunORBConfigAdapter.java (original)
+++ incubator/openejb/trunk/openejb2/modules/openejb-sunorb/src/main/java/org/apache/openejb/sunorb/SunORBConfigAdapter.java Thu Oct 26 02:57:45 2006
@@ -153,7 +153,7 @@
 
         // This must be a system property, the Sun BootStrapActivation class only looks at the
         // system properties for this value
-        System.setProperty("com.sun.CORBA.activation.DbDir", "C:\\temp");
+        System.setProperty("com.sun.CORBA.activation.DbDir", dbDir);
 
         // the transient name service is automatically started by the Sun NSORB
         properties.put("org.omg.CORBA.ORBClass", "com.sun.corba.se.internal.CosNaming.NSORB");