1 16 17 package org.apache.axis.transport.local; 18 19 import org.apache.axis.AxisFault; 20 import org.apache.axis.MessageContext; 21 import org.apache.axis.components.logger.LogFactory; 22 import org.apache.axis.handlers.BasicHandler; 23 import org.apache.commons.logging.Log; 24 25 26 32 public class LocalResponder extends BasicHandler { 33 protected static Log log = 34 LogFactory.getLog(LocalResponder.class.getName()); 35 36 public void invoke(MessageContext msgContext) throws AxisFault { 37 if (log.isDebugEnabled()) { 38 log.debug("Enter: LocalResponder::invoke"); 39 } 40 41 String msgStr = msgContext.getResponseMessage().getSOAPPartAsString(); 42 43 if (log.isDebugEnabled()) { 44 log.debug(msgStr); 45 46 log.debug("Exit: LocalResponder::invoke"); 47 } 48 } 49 } 50 | Popular Tags |