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 2003/08/06 21:34:21 UTC

cvs commit: jakarta-cactus/integration/ant/src/confs/share/weblogic7x/testserver/ldap/ldapfiles EmbeddedLDAP.trpos EmbeddedLDAP.index EmbeddedLDAP.twpos EmbeddedLDAP.data EmbeddedLDAP.tran EmbeddedLDAP.delete

vmassol     2003/08/06 12:34:21

  Modified:    integration/ant/src/confs/share/weblogic7x config.xml
                        DefaultAuthenticatorInit.ldift
  Removed:     integration/ant/src/confs/share/weblogic7x
                        fileRealm.properties SerializedSystemIni.dat
               integration/ant/src/confs/share/weblogic7x/testserver/ldap/ldapfiles
                        EmbeddedLDAP.trpos EmbeddedLDAP.index
                        EmbeddedLDAP.twpos EmbeddedLDAP.data
                        EmbeddedLDAP.tran EmbeddedLDAP.delete
  Log:
  Simplified the WL 7.x default configuration
  
  Revision  Changes    Path
  1.2       +0 -10     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.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- config.xml	3 Feb 2003 10:52:41 -0000	1.1
  +++ config.xml	6 Aug 2003 19:34:21 -0000	1.2
  @@ -1,15 +1,5 @@
   <?xml version="1.0" encoding="UTF-8"?>
   
   <Domain Name="testdomain">
  -    <EmbeddedLDAP
  -        Credential="{3DES}55B/7RZVVwwrYUjjEf9Cdd5f72Gj7pm7apl5R36oQfU=" Name="testdomain"/>
  -    <FileRealm Name="wl_default_file_realm"/>
  -    <PasswordPolicy Name="wl_default_password_policy"/>
  -    <Realm FileRealm="wl_default_file_realm" Name="wl_default_realm"/>
  -    <Security Name="testdomain"
  -        PasswordPolicy="wl_default_password_policy"
  -        Realm="wl_default_realm" RealmSetup="true"/>
  -    <SecurityConfiguration
  -        Credential="{3DES}VXIBKpJ4bKQa1IbvnNqcaZa6BPWIg0zhWlcSd2lrfZmn7KZ9gF7QnMZqhjswb/KzSbiBo/cuJGV7qLrkNbpL64iLduDXGin1" Name="testdomain"/>
       <Server Name="testserver" NativeIOEnabled="true" ListenPort="@cactus.port@"/>
   </Domain>
  
  
  
  1.2       +18 -6     jakarta-cactus/integration/ant/src/confs/share/weblogic7x/DefaultAuthenticatorInit.ldift
  
  Index: DefaultAuthenticatorInit.ldift
  ===================================================================
  RCS file: /home/cvs/jakarta-cactus/integration/ant/src/confs/share/weblogic7x/DefaultAuthenticatorInit.ldift,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- DefaultAuthenticatorInit.ldift	3 Feb 2003 10:52:41 -0000	1.1
  +++ DefaultAuthenticatorInit.ldift	6 Aug 2003 19:34:21 -0000	1.2
  @@ -50,16 +50,28 @@
   objectclass: organizationalUnit
   objectclass: top
   
  -dn: uid=system,ou=people,ou=@realm@, dc=@domain@
  -description: system
  +dn: uid=weblogic,ou=people,ou=@realm@, dc=@domain@
  +description: weblogic
   objectclass: inetOrgPerson
   objectclass: organizationalPerson
   objectclass: person
   objectclass: top
  -cn: system
  -sn: system
  -userpassword: {ssha}XYqqB9c/6OXoNVCOil7ZRdbb/GSIXVcE
  -uid: system
  +cn: weblogic
  +sn: weblogic
  +userpassword: weblogic
  +uid: weblogic
   objectclass: wlsUser
   wlsMemberOf: cn=Administrators,ou=groups,ou=@realm@,dc=@domain@
   
  +dn: uid=testuser,ou=people,ou=@realm@, dc=@domain@
  +description: test user for Cactus
  +objectclass: inetOrgPerson
  +objectclass: organizationalPerson
  +objectclass: person
  +objectclass: top
  +cn: testuser
  +sn: testuser
  +userpassword: testpassword
  +uid: testuser
  +objectclass: wlsUser
  +wlsMemberOf: cn=Administrators,ou=groups,ou=@realm@,dc=@domain@