You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-ws-core/src/main/java/org/springframework/ws/client/support/interceptor/AbstractValidatingInterceptor.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -185,7 +185,7 @@ public boolean handleRequest(MessageContext messageContext) throws WebServiceCli
185
185
errors = this.validator.validate(requestSource);
186
186
}
187
187
catch (IOExceptionex) {
188
-
thrownewWebServiceIOException("Could not validate response: " + ex.getMessage(), ex);
188
+
thrownewWebServiceIOException("Could not validate request: " + ex.getMessage(), ex);
Copy file name to clipboardExpand all lines: spring-ws-core/src/main/java/org/springframework/ws/client/support/interceptor/WebServiceValidationException.java
+4-2
Original file line number
Diff line number
Diff line change
@@ -41,15 +41,17 @@ public WebServiceValidationException(SAXParseException[] validationErrors) {
Copy file name to clipboardExpand all lines: spring-ws-core/src/test/java/org/springframework/ws/client/support/interceptor/PayloadValidatingInterceptorTest.java
+3-3
Original file line number
Diff line number
Diff line change
@@ -93,7 +93,7 @@ public void testHandleInvalidRequest() throws Exception {
0 commit comments