vmassol     2003/08/09 09:42:28

  Modified:    integration/ant/src/confs/share/weblogic7x config.xml
               
integration/ant/src/java/org/apache/cactus/integration/ant/container/weblogic
                        WebLogic7xContainer.java
  Log:
  - It seems adding weblogichome/bin to java.library.path is no longer needed with WL 
7.x, so I've removed it
  - Removed unneeded config parameter (nativeioenabled) in config.xml
  
  Revision  Changes    Path
  1.3       +1 -1      
jakarta-cactus/integration/ant/src/confs/share/weblogic7x/config.xml
  
  Index: config.xml
  ===================================================================
  RCS file: 
/home/cvs/jakarta-cactus/integration/ant/src/confs/share/weblogic7x/config.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- config.xml        6 Aug 2003 19:34:21 -0000       1.2
  +++ config.xml        9 Aug 2003 16:42:28 -0000       1.3
  @@ -1,5 +1,5 @@
   <?xml version="1.0" encoding="UTF-8"?>
   
   <Domain Name="testdomain">
  -    <Server Name="testserver" NativeIOEnabled="true" ListenPort="@cactus.port@"/>
  +    <Server Name="testserver" ListenPort="@cactus.port@"/>
   </Domain>
  
  
  
  1.8       +2 -9      
jakarta-cactus/integration/ant/src/java/org/apache/cactus/integration/ant/container/weblogic/WebLogic7xContainer.java
  
  Index: WebLogic7xContainer.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-cactus/integration/ant/src/java/org/apache/cactus/integration/ant/container/weblogic/WebLogic7xContainer.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- WebLogic7xContainer.java  6 Aug 2003 19:28:50 -0000       1.7
  +++ WebLogic7xContainer.java  9 Aug 2003 16:42:28 -0000       1.8
  @@ -90,7 +90,7 @@
   
       /**
        * The WebLogic 7.x installation directory. For example:
  -     * "c:/bea/weblogic700".
  +     * "c:\bea\weblogic700".
        */
       private File dir;
   
  @@ -204,13 +204,6 @@
               
               File serverDir = new File(this.dir, "server");
               
  -            Path libraryPath = new Path(getProject());
  -            libraryPath.createPathElement().setPath(
  -                getProject().getProperty("java.library.path"));
  -            libraryPath.createPathElement().setLocation(
  -                new File(serverDir, "bin"));
  -            java.addSysproperty(
  -                createSysProperty("java.library.path", libraryPath));
               java.addSysproperty(
                   createSysProperty("weblogic.Name", "testserver"));
               java.addSysproperty(
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to