Skip to content

Commit e09e7eb

Browse files
committed
Released 1.5.3
1 parent b638a83 commit e09e7eb

File tree

14 files changed

+58
-26
lines changed

14 files changed

+58
-26
lines changed

archetype/src/main/resources/archetype-resources/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
<dependency>
1616
<groupId>org.springframework.ws</groupId>
1717
<artifactId>spring-oxm</artifactId>
18-
<version>1.5.2</version>
18+
<version>1.5.3</version>
1919
</dependency>
2020
<dependency>
2121
<groupId>org.springframework.ws</groupId>
2222
<artifactId>spring-ws-core</artifactId>
23-
<version>1.5.2</version>
23+
<version>1.5.3</version>
2424
</dependency>
2525
</dependencies>
2626
</project>

changelog.txt

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,39 @@ SPRING WEB SERVICES CHANGELOG
22
=============================
33
http://www.springframework.org/spring-ws
44

5+
Changes in version 1.5.3
6+
-------------------------
7+
** Bug
8+
* [SWS-357] - Axiom does not support SwA attachments
9+
* [SWS-358] - NPE in JmsSenderConnection.onReceiveBeforeRead() when the received Message is null
10+
* [SWS-359] - Using Axiom with payload caching off sometimes creates empty soap bodies
11+
* [SWS-363] - AcegiPlainTextPasswordValidationCallbackHandler doesn't implement InitializingBean
12+
* [SWS-365] - wss4j-1.5.4.jar not in repository
13+
* [SWS-366] - Dynamic AOP proxies for @Endpoints result in IllegalArgumentExceptions
14+
* [SWS-367] - SOAP over JMS (BEA Weblogic 9.2) - empty body in SOAP responses with a jms TextMessage
15+
* [SWS-370] - 'KeyStoreUtils.loadDefaultKeyStore()' issue
16+
* [SWS-373] - broken links in FAQ
17+
* [SWS-374] - DefaultURIResolver with witespaces
18+
* [SWS-376] - SaajSoapMessage.setSaajMessage() and AxiomSoapMessage.setAxiomMessage() should clear cached fields
19+
* [SWS-378] - Wss4jSecurityInterceptor.toDocument(..) causes decryption to fail when using SaajSoapMessageFactory
20+
* [SWS-380] - Incorrect soap:address location="http://localhost:8080/holidayService/ for samples/tutorial - resource (/holidayService/) is not available
21+
* [SWS-385] - Exceptions thrown using WS-Addressing result in Assert failure in Addressing10.addAddressingHeaders
22+
23+
** Improvement
24+
* [SWS-273] - AbstractAnnotationMethodEndpointMapping doesn't support proxied bean dependencies
25+
* [SWS-361] - XStream.addImplicitCollection not supported by XStreamMarshaller
26+
* [SWS-371] - Expose MaxConnectionsPerHost and TotalConnections in CommonsHttpMessageSender
27+
* [SWS-377] - Create all-in-one source jar
28+
* [SWS-382] - DefaultWsdl11Definition should throw exceptions when given an empty suffix
29+
* [SWS-383] - JmsSenderConnection does not correlate response messages on permanent response queues
30+
31+
** New Feature
32+
* [SWS-346] - HandlerAdapter for XsdSchemas
33+
* [SWS-356] - Document X509 support in Wss4jSecurityInterceptor
34+
35+
** Task
36+
* [SWS-369] - Website links broken
37+
538
Changes in version 1.5.2
639
-------------------------
740
** Bug
@@ -14,7 +47,6 @@ Changes in version 1.5.2
1447
* [SWS-329] - SaajContentHandler shouldn't repeat namespace declarations
1548
* [SWS-344] - Add @Endpoints support to AbstractEndpointExceptionResolver
1649

17-
1850
** Task
1951
* [SWS-354] - Document AbstractValidatingMarshallingPayloadEndpoint and AbstractFaultCreatingValidatingMarshallingPayloadEndpoint
2052

notes.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
Dear Spring community,
22

3-
I'm pleased to announce that Spring Web Services 1.5.2 has been released!
3+
I'm pleased to announce that Spring Web Services 1.5.3 has been released!
44

5-
This is the second bug fix and enhancement release in the Spring-WS 1.5 series.
6-
It fixes all bugs reported since 1.5.1 and introduces various enhancements
5+
This is the third bug fix and enhancement release in the Spring-WS 1.5 series.
6+
It fixes all bugs reported since 1.5.2 and introduces various enhancements
77
throughout the framework:
88

9-
* Fixed WS-Security signatures when using WSS4J in combination with SAAJ
10-
messages (for real this time ;) )
11-
* Drastically improved performance of writing to Axiom Message payloads
9+
* Support for receiving SOAP messages on permanent JMS queues, and various
10+
other JMS transport bug fixes
11+
* Support for Soap with Attachments using Axiom
1212

13-
and more. Please see the changelog for details.
13+
and more, including more documentation. Please see the changelog for details.
1414

15-
For more information, see http://static.springframework.org/spring-ws/site/
15+
For more information, see http://static.springframework.org/spring-ws/site/

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@
497497
</plugin>
498498
<plugin>
499499
<artifactId>maven-assembly-plugin</artifactId>
500-
<version>2.2-beta-1</version>
500+
<version>2.2-beta-2</version>
501501
<inherited>false</inherited>
502502
<executions>
503503
<execution>

samples/airline/client/jms/build.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@
2323
<remoteRepository refid="spring-ext"/>
2424
<dependency groupId="javax.xml.soap" artifactId="saaj-api" version="1.3"/>
2525
<dependency groupId="org.apache.activemq" artifactId="activemq-core" version="4.1.1"/>
26-
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.2"/>
26+
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.3"/>
2727
</artifact:dependencies>
2828

2929
<artifact:dependencies pathId="runtime.classpath">
3030
<remoteRepository refid="main"/>
3131
<remoteRepository refid="java.net"/>
3232
<remoteRepository refid="spring-ext"/>
3333
<dependency groupId="com.sun.xml.messaging.saaj" artifactId="saaj-impl" version="1.3"/>
34-
<dependency groupId="org.springframework.ws" artifactId="spring-ws-support" version="1.5.2"/>
34+
<dependency groupId="org.springframework.ws" artifactId="spring-ws-support" version="1.5.3"/>
3535
<dependency groupId="org.springframework" artifactId="spring-jms" version="2.5.1"/>
3636
</artifact:dependencies>
3737

samples/airline/client/spring-ws/build.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
<artifact:dependencies pathId="classpath">
2020
<remoteRepository refid="main"/>
2121
<remoteRepository refid="java.net"/>
22-
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.2"/>
23-
<dependency groupId="org.springframework.ws" artifactId="spring-ws-security" version="1.5.2"/>
22+
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.3"/>
23+
<dependency groupId="org.springframework.ws" artifactId="spring-ws-security" version="1.5.3"/>
2424
<dependency groupId="com.sun.xml.messaging.saaj" artifactId="saaj-impl" version="1.3"/>
2525
<dependency groupId="commons-httpclient" artifactId="commons-httpclient" version="3.0.1"/>
2626
<dependency groupId="xmlbeans" artifactId="xbean" version="2.2.0"/>

samples/echo/client/spring-ws/build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</typedef>
1212

1313
<artifact:dependencies pathId="classpath">
14-
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.2"/>
14+
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.3"/>
1515
<dependency groupId="com.sun.xml.messaging.saaj" artifactId="saaj-impl" version="1.3"/>
1616
<dependency groupId="commons-httpclient" artifactId="commons-httpclient" version="3.0.1"/>
1717
</artifact:dependencies>

samples/pox/client/spring-ws/build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</typedef>
1212

1313
<artifact:dependencies pathId="classpath">
14-
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.2"/>
14+
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.3"/>
1515
<dependency groupId="log4j" artifactId="log4j" version="1.2.13"/>
1616
</artifact:dependencies>
1717

samples/stockquote/client/spring-ws/build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</typedef>
1212

1313
<artifact:dependencies pathId="classpath">
14-
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.2"/>
14+
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.3"/>
1515
<dependency groupId="com.sun.xml.messaging.saaj" artifactId="saaj-impl" version="1.3"/>
1616
<dependency groupId="log4j" artifactId="log4j" version="1.2.13"/>
1717
</artifact:dependencies>

sandbox/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>spring-ws-parent</artifactId>
55
<groupId>org.springframework.ws</groupId>
6-
<version>1.5.2</version>
6+
<version>1.5.3</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>spring-ws-sandbox</artifactId>

0 commit comments

Comments
 (0)