if (!"POST".equals(request.getMethod())) {
throw new HttpRequestMethodNotSupportedException("POST",
"BurlapServiceExporter only supports POST requests");
}
BurlapInput in = new BurlapInput(request.getInputStream());
BurlapOutput out = new BurlapOutput(response.getOutputStream());
try {
this.skeleton.invoke(in, out);
}
catch (Throwable ex) {