Correction - no loop needed obviously:

public final class SchemaValidationDisablingOutboundInterceptor extends
AbstractSoapInterceptor
{
    public SchemaValidatingOutbountInterceptor() {
        super(Phase.MARSHAL);
    }

    public void handleMessage(SoapMessage message) throws Fault  {
            message.setContextualProperty(Message.SCHEMA_VALIDATION_ENABLED,
false);
    }
} 

--
View this message in context: 
http://cxf.547215.n5.nabble.com/schema-validation-enabled-true-tp3408876p3408881.html
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to