}
protected Wsdl1SoapOperation getOperation(Message message) {
Operation operation = message.get(Operation.class);
if (operation == null) {
throw new Fault("Operation not bound on this message");
}
if (operation instanceof Wsdl1SoapOperation == false) {
throw new Fault("Message is not bound to a WSDL 1.1 SOAP operation");
}
return (Wsdl1SoapOperation) operation;
}