Added initial SCGI server and a handler for serving JARs from the filesystem.
authorFredrik Tolf <fredrik@dolda2000.com>
Tue, 7 Sep 2010 04:54:24 +0000 (06:54 +0200)
committerFredrik Tolf <fredrik@dolda2000.com>
Tue, 7 Sep 2010 04:54:24 +0000 (06:54 +0200)
commit13e578b10b388cc0dea88e05b79265c21416e3a0
tree528dc11982150a57f92b903af92ccb001a3b9ab9
parentb560fc1c45ee31c6d509781b53d5934121990189
Added initial SCGI server and a handler for serving JARs from the filesystem.

There's quite some amount uglyness involved, but nothing that cannot be
fixed over time.
13 files changed:
src/dolda/jsvc/ServerContext.java
src/dolda/jsvc/ThreadContext.java
src/dolda/jsvc/j2ee/J2eeContext.java
src/dolda/jsvc/scgi/DSContext.java [new file with mode: 0644]
src/dolda/jsvc/scgi/DirServer.java [new file with mode: 0644]
src/dolda/jsvc/scgi/InvalidRequestException.java [new file with mode: 0644]
src/dolda/jsvc/scgi/LimitInputStream.java [new file with mode: 0644]
src/dolda/jsvc/scgi/ScgiReqThread.java [new file with mode: 0644]
src/dolda/jsvc/scgi/ScgiRequest.java [new file with mode: 0644]
src/dolda/jsvc/scgi/Server.java [new file with mode: 0644]
src/dolda/jsvc/util/JarContext.java [new file with mode: 0644]
src/dolda/jsvc/util/Misc.java
src/dolda/jsvc/util/ResponseBuffer.java