Upgrade to Spring Web Services 2.2.1.RELEASE

This commit updates the version of Spring Web Services to
2.2.1.RELEASE. The fix for SWS-892 means that in the event of an
interceptor failing to handle a request, the request is no longer
sent. The interceptor in UriVariableTests has been updated to return
true, indicating that the request has been handled and should be
sent.
This commit is contained in:
Andy Wilkinson
2015-03-31 15:21:35 +01:00
committed by Artem Bilan
parent aabd1018df
commit 151431390d
2 changed files with 4 additions and 3 deletions

View File

@@ -116,7 +116,7 @@ subprojects { subproject ->
springSocialTwitterVersion = '1.1.0.RELEASE'
springRetryVersion = '1.1.1.RELEASE'
springVersion = project.hasProperty('springVersion') ? project.springVersion : '4.0.8.RELEASE'
springWsVersion = '2.2.0.RELEASE'
springWsVersion = '2.2.1.RELEASE'
xmlUnitVersion = '1.5'
xstreamVersion = '1.4.7'
}

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2013 the original author or authors.
* Copyright 2002-2015 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -70,6 +70,7 @@ import org.springframework.ws.transport.mail.MailSenderConnection;
/**
* @author Mark Fisher
* @author Artem Bilan
* @author Andy Wilkinson
* @since 2.1
*/
@RunWith(SpringJUnit4ClassRunner.class)
@@ -249,7 +250,7 @@ public class UriVariableTests {
else {
throw new IllegalStateException("expected WebServiceConnection in the TransportContext");
}
return false;
return true;
}
public boolean handleResponse(MessageContext messageContext) throws WebServiceClientException {