e.printStackTrace();
}
}
if(iLength > 0){
RequestHandler rh = null;
String requestString = null;
String reply = null;
buffer = new byte[iLength];
reqIn.read(buffer, 0, iLength);
requestString = new String(buffer, 0, iLength);
try{
byte[] buf = null;
rh = new RequestHandler(requestString, this.wsClass, this.hashWebMethods, requestUrl);
reply = rh.execute();
resp.setContentType("text/xml");
//resp.getWriter().println(reply);
buf = reply.getBytes();
if(buf.length > 10000000){
throw new Exception("Buffer size exceed GAE limit 10.000.000 bytes: " + buf.length);