Welcome to the Software Zoo Ludwig framework
--------------------------------------------


To build this project you must set the CLASSPATH and PATH
environment variables. There is shell script in this directory
called 'setup-env.sh' that you should edit and then source:

  [christos@pippin]$ source env-setup.sh

Then make sure that 'ant' and 'java' are in your path. To compile
this project:

  [christos@pippin]$ ant

If everything compiles cleanly then you can start a web server 
and test the servlet:

  [christos@pippin]$ sh server-run.sh &
  [christos@pippin]$ lynx http://localhost:8080/servlet/myproject


The build.xml file has other helpful targets for managing your
project. They are listed here for your convenience:

  ant clean       cleans out all the class, javadoc and .jar files
  ant javadoc     generates the Javadoc for your project
  ant jar         creates a .jar file containing your project

If you want to modify the behaviour of the servlet runner, here are
the parameters that you can set/modify in the server-run.sh script:

  Usage: servletrunner [options]
  Options:
    -p port     the port number to listen on
    -b backlog  the listen backlog
    -m max      maximum number of connection handlers
    -t timeout  connection timeout in milliseconds
    -d dir      servlet directory
    -s filename servlet property file name


Enjoy.

