Does anyone know how to get the name of the current executing operation?? When I execute client code, this is populated, but when someone calls my service my interceptor doesn't have the name of the requested operation.
if (message.getExchange().get( Message.WSDL_OPERATION ) != null){
log.debug("Operation: " + message.getExchange().get(
Message.WSDL_OPERATION ).toString());
operation = message.getExchange().get( Message.WSDL_OPERATION
).toString();
}
