From 32d960d3e008d920a3db7936485b917d7ec29523 Mon Sep 17 00:00:00 2001 From: Arjen Poutsma Date: Thu, 28 Dec 2006 22:18:11 +0000 Subject: [PATCH] --- .../ws/endpoint/interceptor/AbstractValidatingInterceptor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/org/springframework/ws/endpoint/interceptor/AbstractValidatingInterceptor.java b/core/src/main/java/org/springframework/ws/endpoint/interceptor/AbstractValidatingInterceptor.java index a9acc4a3..bcf09678 100644 --- a/core/src/main/java/org/springframework/ws/endpoint/interceptor/AbstractValidatingInterceptor.java +++ b/core/src/main/java/org/springframework/ws/endpoint/interceptor/AbstractValidatingInterceptor.java @@ -285,7 +285,7 @@ public abstract class AbstractValidatingInterceptor extends TransformerObjectSup Assert.notEmpty(schemas, "setting either the schema or schemas property is required"); Assert.hasLength(schemaLanguage, "schemaLanguage is required"); for (int i = 0; i < schemas.length; i++) { - Assert.isTrue(schemas[i].exists(), "schema [" + schemas + "] does not exist"); + Assert.isTrue(schemas[i].exists(), "schema [" + schemas[i] + "] does not exist"); } if (logger.isInfoEnabled()) { logger.info("Validating using " + StringUtils.arrayToCommaDelimitedString(schemas));