diff --git a/core/src/main/java/org/springframework/ws/server/endpoint/interceptor/AbstractValidatingInterceptor.java b/core/src/main/java/org/springframework/ws/server/endpoint/interceptor/AbstractValidatingInterceptor.java index 7890c0f9..f91700dd 100644 --- a/core/src/main/java/org/springframework/ws/server/endpoint/interceptor/AbstractValidatingInterceptor.java +++ b/core/src/main/java/org/springframework/ws/server/endpoint/interceptor/AbstractValidatingInterceptor.java @@ -196,11 +196,11 @@ public abstract class AbstractValidatingInterceptor extends TransformerObjectSup /** * Template method that is called when the response message contains validation errors. Default implementation logs - * all errors, and returns false, i.e. do not send the response. + * all errors, and returns false, i.e. do not cot continue to process the respone interceptor chain. * * @param messageContext the message context - * @param errors the validation errors @return true to continue sending the response, - * false (the default) otherwise + * @param errors the validation errors + * @return true to continue the reponse interceptor chain, false (the default) otherwise */ protected boolean handleResponseValidationErrors(MessageContext messageContext, SAXParseException[] errors) { for (int i = 0; i < errors.length; i++) {