tareq
Sep 13th, 2006, 10:12 AM
in AbstractValidatingInterceptor, line 307 (spring-ws-1.0-m2) :
detailElement.addText(errors[0].getMessage());
causes the first error message to be repeated. I think it should be
detailElement.addText(errors[i].getMessage());
(the "0" at the 47th position should be changed to "i").
detailElement.addText(errors[0].getMessage());
causes the first error message to be repeated. I think it should be
detailElement.addText(errors[i].getMessage());
(the "0" at the 47th position should be changed to "i").