You are viewing a plain text version of this content. The canonical link for it is here.
Posted to wsrp4j-dev@portals.apache.org by dl...@apache.org on 2006/12/25 22:50:05 UTC

svn commit: r490179 - in /portals/wsrp4j/trunk: README.txt WHATWHERE.txt

Author: dlouzan
Date: Mon Dec 25 13:50:04 2006
New Revision: 490179

URL: http://svn.apache.org/viewvc?view=rev&rev=490179
Log:
- Added info on how to configure HSQLDB to README.txt
- Added info about persistence-db module to WHATWHERE.txt

Modified:
    portals/wsrp4j/trunk/README.txt
    portals/wsrp4j/trunk/WHATWHERE.txt

Modified: portals/wsrp4j/trunk/README.txt
URL: http://svn.apache.org/viewvc/portals/wsrp4j/trunk/README.txt?view=diff&rev=490179&r1=490178&r2=490179
==============================================================================
--- portals/wsrp4j/trunk/README.txt (original)
+++ portals/wsrp4j/trunk/README.txt Mon Dec 25 13:50:04 2006
@@ -73,6 +73,9 @@
 
    * The JTA transaction API jar from Sun (needed for persistence-db module)
 
+   * (Optional) A relational database and JDBC driver.
+     - The examples assume you are using HSQLDB 1.8.0.7.
+
 3. Basic installation and configuration
    ------------------------------------
 
@@ -182,7 +185,26 @@
        $ mvn install:install-file -DgroupId=javax.transaction -DartifactId=jta \
            -Dversion=1.0.1B -Dpackaging=jar -Dfile=jta-1_0_1B-classes.zip
 
-   3.6 Basic installation and configuration of Apache Pluto
+   3.6 (Optional) Basic installation and configuration of HSQLDB 1.8.0.7
+       -----------------------------------------------------------------
+
+   * If you want to use the persistence-db module, you need a relational database
+     and a driver to connect to the database. The examples assume you have
+     installed HSQLDB.
+
+     - Download hsqldb_1_8_0_7.zip from:
+           http://www.hsqldb.org/
+
+     - Unpack the file and copy hsqldb-1.8.0.7.jar to $CATALINA_HOME/commmon/lib:
+       $ cp hsqldb-1.8.0.7.jar $CATALINA_HOME/common/lib
+       This is needed by the Tomcat DataSource configured to connect to the db.
+
+     - Start HSQLDB:
+       $ java -classpath hsqldb.jar org.hsqldb.Server
+
+     - You can stop HSQLDB anytime using Ctrl-C.
+
+   3.7 Basic installation and configuration of Apache Pluto
        ----------------------------------------------------
 
    * Installation of Apache Pluto 1.0.1 on Unix-like operating systems:

Modified: portals/wsrp4j/trunk/WHATWHERE.txt
URL: http://svn.apache.org/viewvc/portals/wsrp4j/trunk/WHATWHERE.txt?view=diff&rev=490179&r1=490178&r2=490179
==============================================================================
--- portals/wsrp4j/trunk/WHATWHERE.txt (original)
+++ portals/wsrp4j/trunk/WHATWHERE.txt Mon Dec 25 13:50:04 2006
@@ -32,6 +32,12 @@
     Common code to any producer implementation. 
     Depends on commons.
 
+persistence-db/
+    DB persistence implementation. Implements the persistent packages included
+    in commons, storing all required persistent information needed by consumers
+    and producers in a relational database.
+    Depends on commons, commons-producer and commons-consumer.
+
 persistence-xml/
     Xml mapping persistence implementation. Implements the persistent packages
     included on commons, storing all required persistent information needed by