Skip to content

Commit

Permalink
Upgrade to Spring Web Services 2.2.1.RELEASE
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
wilkinsona authored and artembilan committed Mar 31, 2015
1 parent aabd101 commit 1514313
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
Expand Down
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -70,6 +70,7 @@
/**
* @author Mark Fisher
* @author Artem Bilan
* @author Andy Wilkinson
* @since 2.1
*/
@RunWith(SpringJUnit4ClassRunner.class)
Expand Down Expand Up @@ -249,7 +250,7 @@ public boolean handleRequest(MessageContext messageContext) throws WebServiceCli
else {
throw new IllegalStateException("expected WebServiceConnection in the TransportContext");
}
return false;
return true;
}

public boolean handleResponse(MessageContext messageContext) throws WebServiceClientException {
Expand Down

0 comments on commit 1514313

Please sign in to comment.