FileDocCategorySizeDatePackage
LocalResponder.javaAPI DocApache Axis 1.41600Sat Apr 22 18:57:28 BST 2006org.apache.axis.transport.local

LocalResponder

public class LocalResponder extends org.apache.axis.handlers.BasicHandler
Tiny Handler which just makes sure to Stringize the outgoing Message to appropriately use serializers on the server side.
author
Glen Daniels (gdaniels@apache.org)

Fields Summary
protected static Log
log
Constructors Summary
Methods Summary
public voidinvoke(org.apache.axis.MessageContext msgContext)


          
        if (log.isDebugEnabled()) {
            log.debug("Enter: LocalResponder::invoke");
        }

        String msgStr = msgContext.getResponseMessage().getSOAPPartAsString();

        if (log.isDebugEnabled()) {
            log.debug(msgStr);

            log.debug("Exit: LocalResponder::invoke");
        }