if(request.getMethod().equals("POST") &&
type.match(request.getContentType()) >= 0) {
// Notify the client that we are willing to continue:
Client client = request.getClient();
if ( client != null )
client.sendContinue();
qDataStream = request.getInputStream() ;
} else if(queryString != null) {
qDataStream = new StringBufferInputStream(queryString) ;
}
if(qDataStream != null) {