You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cactus-dev@jakarta.apache.org by vm...@apache.org on 2002/07/20 16:19:54 UTC

cvs commit: jakarta-cactus/sample-servlet/conf/sample/conf/test/share/weblogic70 fileRealm.properties

vmassol     2002/07/20 07:19:54

  Modified:    documentation/docs/xdocs changes.xml testedon.xml todo.xml
               sample-servlet/conf/sample/build/share
                        build-tests-weblogic-61.xml
               sample-servlet/conf/sample/conf/test/share/weblogic61
                        fileRealm.properties
               sample-servlet/conf/sample/conf/test/share/weblogic70
                        fileRealm.properties
  Log:
  - tested on WL 6.1
  - corrected WL 6.1 and 7.0 config for BASIC authentication
  
  Revision  Changes    Path
  1.28      +2 -2      jakarta-cactus/documentation/docs/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-cactus/documentation/docs/xdocs/changes.xml,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -r1.27 -r1.28
  --- changes.xml	20 Jul 2002 12:56:54 -0000	1.27
  +++ changes.xml	20 Jul 2002 14:19:53 -0000	1.28
  @@ -52,8 +52,8 @@
           Added automatic script support for Orion 1.6.
         </action>
         <action dev="VMA" type="fix">
  -        Ant scripts for Resin, Orion and Tomcat 3.2.4 now correctly configured
  -        for Cactus BASIC authentication tests.
  +        Ant scripts for Resin, Orion, Tomcat 3.2.4, WebLogic 6.1 and WebLogic
  +        7.0 now correctly configured for Cactus BASIC authentication tests.
         </action>
         <action dev="VMA" type="add">
           Added automatic script support for WebLogic 7.0.
  
  
  
  1.16      +32 -0     jakarta-cactus/documentation/docs/xdocs/testedon.xml
  
  Index: testedon.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-cactus/documentation/docs/xdocs/testedon.xml,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- testedon.xml	20 Jul 2002 12:48:13 -0000	1.15
  +++ testedon.xml	20 Jul 2002 14:19:53 -0000	1.16
  @@ -104,6 +104,22 @@
                 Tomcat
               </td>
               <td>
  +              3.2.4
  +            </td>
  +            <td>
  +              1.2
  +            </td>
  +            <td>
  +              <link href="mailto:vmassol@apache.org">Vincent Massol</link>
  +            </td>
  +            <td>
  +            </td>
  +          </tr>
  +          <tr>
  +            <td>
  +              Tomcat
  +            </td>
  +            <td>
                 4.0.4
               </td>
               <td>
  @@ -187,6 +203,22 @@
               </td>
               <td>
                 1.6.0
  +            </td>
  +            <td>
  +              1.2
  +            </td>
  +            <td>
  +              <link href="mailto:vmassol@apache.org">Vincent Massol</link>
  +            </td>
  +            <td>
  +            </td>
  +          </tr>
  +          <tr>
  +            <td>
  +              WebLogic
  +            </td>
  +            <td>
  +              6.1 SP3
               </td>
               <td>
                 1.2
  
  
  
  1.12      +0 -5      jakarta-cactus/documentation/docs/xdocs/todo.xml
  
  Index: todo.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-cactus/documentation/docs/xdocs/todo.xml,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- todo.xml	20 Jul 2002 12:26:25 -0000	1.11
  +++ todo.xml	20 Jul 2002 14:19:53 -0000	1.12
  @@ -73,11 +73,6 @@
         <p>
           All tasks that are related to building Cactus in general.
         </p>
  -      <action assigned-to="Peter Wong, Jason Robertson, Vincent Massol">
  -        Configure all supported containers with authentication so that they
  -        pass the Cactus unit tests (done for Tomcat 3.x + Tomcat 4.x +
  -        Resin 2.x + Orion 1.x)
  -      </action>
         <action assigned-to="Bob Tanner">
           Finalize support for Enhydra 3.1.1. There are some errors upon
           starting the enhydra server and the <code>testOut()</code> method
  
  
  
  1.3       +16 -0     jakarta-cactus/sample-servlet/conf/sample/build/share/build-tests-weblogic-61.xml
  
  Index: build-tests-weblogic-61.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-cactus/sample-servlet/conf/sample/build/share/build-tests-weblogic-61.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build-tests-weblogic-61.xml	19 Jun 2002 22:02:53 -0000	1.2
  +++ build-tests-weblogic-61.xml	20 Jul 2002 14:19:54 -0000	1.3
  @@ -126,4 +126,20 @@
           <copy file="${target.test.dir}/test.war"
               todir="${target.weblogic61.dir}/config/testdomain/applications"/>
   
  +        <!-- Update the war to include the proprietary weblogic.xml config
  +             file. -->
  +
  +        <!-- Hack: Make sure weblogic.xml is always newer than the war so that
  +             the later is always updated. Waiting for an Ant bug fix -->
  +        <touch file="${target.weblogic61.dir}/config/testdomain/applications/test.war"
  +            datetime="06/28/2000 2:02 pm"/>
  +
  +        <war update="true"
  +            warfile="${target.weblogic61.dir}/config/testdomain/applications/test.war">
  +
  +            <webinf dir="${conf.weblogic61.dir}">
  +                <include name="weblogic.xml"/>
  +            </webinf>
  +        </war>
  +
       </target>
  
  
  
  1.2       +1 -0      jakarta-cactus/sample-servlet/conf/sample/conf/test/share/weblogic61/fileRealm.properties
  
  Index: fileRealm.properties
  ===================================================================
  RCS file: /home/cvs/jakarta-cactus/sample-servlet/conf/sample/conf/test/share/weblogic61/fileRealm.properties,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- fileRealm.properties	21 Apr 2002 13:54:02 -0000	1.1
  +++ fileRealm.properties	20 Jul 2002 14:19:54 -0000	1.2
  @@ -1,6 +1,7 @@
   #Mon Dec 10 17:24:02 GMT 2001
   acl.unlockServer.weblogic.admin=Administrators
   user.system=0xb925d776addde243d018a561318650afadb954cc
  +user.testuser=0x9d5b87e7148b1736f1b05d4c5add5e246cd53b0a
   acl.lockServer.weblogic.admin=Administrators
   acl.unlockuser.weblogic.passwordpolicy=Administrators
   acl.shutdown.weblogic.admin=Administrators
  
  
  
  1.2       +1 -0      jakarta-cactus/sample-servlet/conf/sample/conf/test/share/weblogic70/fileRealm.properties
  
  Index: fileRealm.properties
  ===================================================================
  RCS file: /home/cvs/jakarta-cactus/sample-servlet/conf/sample/conf/test/share/weblogic70/fileRealm.properties,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- fileRealm.properties	19 Jun 2002 22:02:53 -0000	1.1
  +++ fileRealm.properties	20 Jul 2002 14:19:54 -0000	1.2
  @@ -2,6 +2,7 @@
   acl.modify.weblogic.admin.acl=Administrators
   acl.unlockServer.weblogic.admin=Administrators
   user.system=0xa7dc9690ce40f88dac3bdd23cb32588ff5546bb6
  +user.testuser=0x9d5b87e7148b1736f1b05d4c5add5e246cd53b0a
   acl.lockServer.weblogic.admin=Administrators
   acl.unlockuser.weblogic.passwordpolicy=Administrators
   acl.shutdown.weblogic.admin=Administrators
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>