The cgi/ and servlet/ subdirectories contain the new MultipartRequest wrappers
and the testupload and testMemoryUpload examples.

Note: It is recommended you recompile the testupload.java and testMemoryUpload.java
before use, as they contain path statements that may not be available or
applicable on your system.

--------------------------------------------------------------------------
cgi/ 

	These are the straight CGI based java examples, which are
	executed via a .cgi script.
--------------------------------------------------------------------------

cgi/testupload.*
	This one is the original example provided since v1.1, but
	now uses the MultipartRequest wrapper CgiMultipartRequest, to
	upload any files to the specified directory.

cgi/testMemoryUpload.*
	Demonstration of the new memory based upload.  Will upload files
	into memory and then access each one via the getFileContents method
	and write it out to a directory.  

--------------------------------------------------------------------------
servlet/

	These are the Servlet API 2.x examples
--------------------------------------------------------------------------

servlet/testupload.*
	The Java Servlet 2.x version of cgi/testupload.*.  This one uses the
	ServletMultipartRequest wrapper.

servlet/testMemoryUpload.*
	The Java Servlet 2.x version of cgi/testMemoryUpload.*

