You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by er...@apache.org on 2006/10/17 22:53:02 UTC

svn commit: r465047 - in /directory/sandbox/ersiner/apachecon-us06-fr14: README ac-us-06-FR14-ErsinEr-Stored_Procedures_and_Triggers_Arrive_in_ApacheDS.pdf pom.xml src/main/java/apachecon/us06/fr14/tool/ServerTools.java

Author: ersiner
Date: Tue Oct 17 13:53:00 2006
New Revision: 465047

URL: http://svn.apache.org/viewvc?view=rev&rev=465047
Log:
Finalized FR14 Demos.

Added:
    directory/sandbox/ersiner/apachecon-us06-fr14/README
    directory/sandbox/ersiner/apachecon-us06-fr14/ac-us-06-FR14-ErsinEr-Stored_Procedures_and_Triggers_Arrive_in_ApacheDS.pdf   (with props)
Modified:
    directory/sandbox/ersiner/apachecon-us06-fr14/pom.xml
    directory/sandbox/ersiner/apachecon-us06-fr14/src/main/java/apachecon/us06/fr14/tool/ServerTools.java

Added: directory/sandbox/ersiner/apachecon-us06-fr14/README
URL: http://svn.apache.org/viewvc/directory/sandbox/ersiner/apachecon-us06-fr14/README?view=auto&rev=465047
==============================================================================
--- directory/sandbox/ersiner/apachecon-us06-fr14/README (added)
+++ directory/sandbox/ersiner/apachecon-us06-fr14/README Tue Oct 17 13:53:00 2006
@@ -0,0 +1,35 @@
+This project includes several subprojects which served
+as Demos for ApacheCon US 2006 FR14 session.
+
+All programs should be run against an ApacheDS instance
+built from the trunks (v1.1-SNAPSHOT). Latest version of
+ApacheDS can be checked out and built with the following
+commands:
+
+svn co https://svn.apache.org/repos/asf/directory/trunks directory-trunks
+cd directory-trunks
+mvn install
+
+The installer images for various platforms can be built
+with the following commands:
+
+cd apacheds/server-installers
+mvn install
+
+Once the server is installed and started, loading the provided
+LDIF is necessary.
+
+Each program (demo) can be executed in any order.
+
+For setting the server hostname and port number for all
+programs, edit the ServerTools.java file.
+
+As some of the programs attempt to load the same Stored
+Procedures to the DIT, appropriate lines may be commented
+out in order to prevent run-time errors.
+
+Before/after running each program, the directory content
+may be examined in order to make sense of the operations.
+
+For further questions contact the author at ersiner@apache.org
+or the ApacheDS developers at dev@directory.apache.org.
\ No newline at end of file

Added: directory/sandbox/ersiner/apachecon-us06-fr14/ac-us-06-FR14-ErsinEr-Stored_Procedures_and_Triggers_Arrive_in_ApacheDS.pdf
URL: http://svn.apache.org/viewvc/directory/sandbox/ersiner/apachecon-us06-fr14/ac-us-06-FR14-ErsinEr-Stored_Procedures_and_Triggers_Arrive_in_ApacheDS.pdf?view=auto&rev=465047
==============================================================================
Binary file - no diff available.

Propchange: directory/sandbox/ersiner/apachecon-us06-fr14/ac-us-06-FR14-ErsinEr-Stored_Procedures_and_Triggers_Arrive_in_ApacheDS.pdf
------------------------------------------------------------------------------
    svn:executable = *

Propchange: directory/sandbox/ersiner/apachecon-us06-fr14/ac-us-06-FR14-ErsinEr-Stored_Procedures_and_Triggers_Arrive_in_ApacheDS.pdf
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Modified: directory/sandbox/ersiner/apachecon-us06-fr14/pom.xml
URL: http://svn.apache.org/viewvc/directory/sandbox/ersiner/apachecon-us06-fr14/pom.xml?view=diff&rev=465047&r1=465046&r2=465047
==============================================================================
--- directory/sandbox/ersiner/apachecon-us06-fr14/pom.xml (original)
+++ directory/sandbox/ersiner/apachecon-us06-fr14/pom.xml Tue Oct 17 13:53:00 2006
@@ -6,6 +6,7 @@
   <version>1.0</version>
   <name>FR14: LDAP Stored Procedures and Triggers Arrive in ApacheDS - Demos</name>
   <packaging>jar</packaging>
+
   <dependencies>
     <dependency>
       <groupId>org.apache.directory.shared</groupId>
@@ -20,9 +21,10 @@
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>nlog4j</artifactId>
-      <version>1.2.24</version>
+      <version>1.2.25</version>
       <scope>provided</scope>
     </dependency>
   </dependencies>
+
 </project>
 

Modified: directory/sandbox/ersiner/apachecon-us06-fr14/src/main/java/apachecon/us06/fr14/tool/ServerTools.java
URL: http://svn.apache.org/viewvc/directory/sandbox/ersiner/apachecon-us06-fr14/src/main/java/apachecon/us06/fr14/tool/ServerTools.java?view=diff&rev=465047&r1=465046&r2=465047
==============================================================================
--- directory/sandbox/ersiner/apachecon-us06-fr14/src/main/java/apachecon/us06/fr14/tool/ServerTools.java (original)
+++ directory/sandbox/ersiner/apachecon-us06-fr14/src/main/java/apachecon/us06/fr14/tool/ServerTools.java Tue Oct 17 13:53:00 2006
@@ -41,7 +41,7 @@
 public class ServerTools
 {
     private static String host = "localhost";
-    private static int port = 1024;
+    private static int port = 10389;
 
 
     public static LdapContext connectToServer() throws NamingException