shttpdj/0.1.1 (c)2003,2004 Stepan Roh ------------------------------------- Motto: 's' as stupid. This archive contains small experimental Java HTTP server shttpdj/0.1.1. It is free to use, redistribution and modification. I don't take any responsibilities for any damages originated by its usage. Changes against version 0.1 --------------------------- Server exit was fixed, problem with too many open files was fixed and error in HTTP request reading, which does not affect existing code, was documented. Contents -------- shttpdj_0.1.1_bin.zip contains documentation and compiled server as jar file shttpdj_0.1.1_src.zip contains API documentation, source codes and Eclipse IDE project shttpdj_0.1.1_lib.zip contains third-party libraries needed for server run and compilation Running ------- Requirements: J2RE 1.3 or higher third-party libraries (see below) Test example run: java -cp shttpdj.jar:lib/log4j-1.2.8.jar:lib/xercesImpl.jar:lib/xmlParserAPIs.jar \ cz.srnet.shttpdj.impl.Main test/config.xml Compilation ----------- Requirements: J2SDK 1.3 or higher third-party libraries (see below) Ant 1.4 or higher There is build.xml for Ant, which does compilation and packaging, or .project for Eclipse IDE series 2.x. Used third-party libraries -------------------------- Log4j series 1.2.x (lib/log4j-1.2.8.jar) used log4j 1.2.8 from http://jakarta.apache.org/log4j/ JAXP 1.1 compatible XML parser (lib/xercesImpl.jar, lib/xmlParserAPIs.jar) used Xerces 2.2.0 from http://xml.apache.org/xerces2-j/ Stepan Roh