Handles a received SOAP message by simply
returning it.
// Convert the message to string representation
// and log it.
try {
message.writeTo(os);
log("Received SOAP message:\n" + os.toString());
os.reset();
} catch (Exception ex) {
log("Exception", ex);
}
// Return the received message to the caller.
return message;