Backported changes from 1.5.3 release (13085:13088)

This commit is contained in:
Arjen Poutsma
2008-07-04 23:30:37 +00:00
parent 3d7b1bc06d
commit cbe55649a2
14 changed files with 58 additions and 26 deletions

View File

@@ -15,12 +15,12 @@
<dependency>
<groupId>org.springframework.ws</groupId>
<artifactId>spring-oxm</artifactId>
<version>1.5.2</version>
<version>1.5.3</version>
</dependency>
<dependency>
<groupId>org.springframework.ws</groupId>
<artifactId>spring-ws-core</artifactId>
<version>1.5.2</version>
<version>1.5.3</version>
</dependency>
</dependencies>
</project>

View File

@@ -2,6 +2,39 @@ SPRING WEB SERVICES CHANGELOG
=============================
http://www.springframework.org/spring-ws
Changes in version 1.5.3
-------------------------
** Bug
* [SWS-357] - Axiom does not support SwA attachments
* [SWS-358] - NPE in JmsSenderConnection.onReceiveBeforeRead() when the received Message is null
* [SWS-359] - Using Axiom with payload caching off sometimes creates empty soap bodies
* [SWS-363] - AcegiPlainTextPasswordValidationCallbackHandler doesn't implement InitializingBean
* [SWS-365] - wss4j-1.5.4.jar not in repository
* [SWS-366] - Dynamic AOP proxies for @Endpoints result in IllegalArgumentExceptions
* [SWS-367] - SOAP over JMS (BEA Weblogic 9.2) - empty body in SOAP responses with a jms TextMessage
* [SWS-370] - 'KeyStoreUtils.loadDefaultKeyStore()' issue
* [SWS-373] - broken links in FAQ
* [SWS-374] - DefaultURIResolver with witespaces
* [SWS-376] - SaajSoapMessage.setSaajMessage() and AxiomSoapMessage.setAxiomMessage() should clear cached fields
* [SWS-378] - Wss4jSecurityInterceptor.toDocument(..) causes decryption to fail when using SaajSoapMessageFactory
* [SWS-380] - Incorrect soap:address location="http://localhost:8080/holidayService/ for samples/tutorial - resource (/holidayService/) is not available
* [SWS-385] - Exceptions thrown using WS-Addressing result in Assert failure in Addressing10.addAddressingHeaders
** Improvement
* [SWS-273] - AbstractAnnotationMethodEndpointMapping doesn't support proxied bean dependencies
* [SWS-361] - XStream.addImplicitCollection not supported by XStreamMarshaller
* [SWS-371] - Expose MaxConnectionsPerHost and TotalConnections in CommonsHttpMessageSender
* [SWS-377] - Create all-in-one source jar
* [SWS-382] - DefaultWsdl11Definition should throw exceptions when given an empty suffix
* [SWS-383] - JmsSenderConnection does not correlate response messages on permanent response queues
** New Feature
* [SWS-346] - HandlerAdapter for XsdSchemas
* [SWS-356] - Document X509 support in Wss4jSecurityInterceptor
** Task
* [SWS-369] - Website links broken
Changes in version 1.5.2
-------------------------
** Bug
@@ -14,7 +47,6 @@ Changes in version 1.5.2
* [SWS-329] - SaajContentHandler shouldn't repeat namespace declarations
* [SWS-344] - Add @Endpoints support to AbstractEndpointExceptionResolver
** Task
* [SWS-354] - Document AbstractValidatingMarshallingPayloadEndpoint and AbstractFaultCreatingValidatingMarshallingPayloadEndpoint

View File

@@ -1,15 +1,15 @@
Dear Spring community,
I'm pleased to announce that Spring Web Services 1.5.2 has been released!
I'm pleased to announce that Spring Web Services 1.5.3 has been released!
This is the second bug fix and enhancement release in the Spring-WS 1.5 series.
It fixes all bugs reported since 1.5.1 and introduces various enhancements
This is the third bug fix and enhancement release in the Spring-WS 1.5 series.
It fixes all bugs reported since 1.5.2 and introduces various enhancements
throughout the framework:
* Fixed WS-Security signatures when using WSS4J in combination with SAAJ
messages (for real this time ;) )
* Drastically improved performance of writing to Axiom Message payloads
* Support for receiving SOAP messages on permanent JMS queues, and various
other JMS transport bug fixes
* Support for Soap with Attachments using Axiom
and more. Please see the changelog for details.
and more, including more documentation. Please see the changelog for details.
For more information, see http://static.springframework.org/spring-ws/site/
For more information, see http://static.springframework.org/spring-ws/site/

View File

@@ -497,7 +497,7 @@
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2-beta-1</version>
<version>2.2-beta-2</version>
<inherited>false</inherited>
<executions>
<execution>

View File

@@ -23,7 +23,7 @@
<remoteRepository refid="spring-ext"/>
<dependency groupId="javax.xml.soap" artifactId="saaj-api" version="1.3"/>
<dependency groupId="org.apache.activemq" artifactId="activemq-core" version="4.1.1"/>
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.2"/>
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.3"/>
</artifact:dependencies>
<artifact:dependencies pathId="runtime.classpath">
@@ -31,7 +31,7 @@
<remoteRepository refid="java.net"/>
<remoteRepository refid="spring-ext"/>
<dependency groupId="com.sun.xml.messaging.saaj" artifactId="saaj-impl" version="1.3"/>
<dependency groupId="org.springframework.ws" artifactId="spring-ws-support" version="1.5.2"/>
<dependency groupId="org.springframework.ws" artifactId="spring-ws-support" version="1.5.3"/>
<dependency groupId="org.springframework" artifactId="spring-jms" version="2.5.1"/>
</artifact:dependencies>

View File

@@ -19,8 +19,8 @@
<artifact:dependencies pathId="classpath">
<remoteRepository refid="main"/>
<remoteRepository refid="java.net"/>
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.2"/>
<dependency groupId="org.springframework.ws" artifactId="spring-ws-security" version="1.5.2"/>
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.3"/>
<dependency groupId="org.springframework.ws" artifactId="spring-ws-security" version="1.5.3"/>
<dependency groupId="com.sun.xml.messaging.saaj" artifactId="saaj-impl" version="1.3"/>
<dependency groupId="commons-httpclient" artifactId="commons-httpclient" version="3.0.1"/>
<dependency groupId="xmlbeans" artifactId="xbean" version="2.2.0"/>

View File

@@ -11,7 +11,7 @@
</typedef>
<artifact:dependencies pathId="classpath">
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.2"/>
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.3"/>
<dependency groupId="com.sun.xml.messaging.saaj" artifactId="saaj-impl" version="1.3"/>
<dependency groupId="commons-httpclient" artifactId="commons-httpclient" version="3.0.1"/>
</artifact:dependencies>

View File

@@ -11,7 +11,7 @@
</typedef>
<artifact:dependencies pathId="classpath">
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.2"/>
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.3"/>
<dependency groupId="log4j" artifactId="log4j" version="1.2.13"/>
</artifact:dependencies>

View File

@@ -11,7 +11,7 @@
</typedef>
<artifact:dependencies pathId="classpath">
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.2"/>
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.3"/>
<dependency groupId="com.sun.xml.messaging.saaj" artifactId="saaj-impl" version="1.3"/>
<dependency groupId="log4j" artifactId="log4j" version="1.2.13"/>
</artifact:dependencies>

View File

@@ -3,7 +3,7 @@
<parent>
<artifactId>spring-ws-parent</artifactId>
<groupId>org.springframework.ws</groupId>
<version>1.5.2</version>
<version>1.5.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>spring-ws-sandbox</artifactId>

View File

@@ -83,7 +83,7 @@
<include>mtom/**/spring-ws-logo.png</include>
<include>maven-ant-tasks-*.jar</include>
<include>**/ant-dotnet-*.jar</include>
<includes>**/*.exe</includes>
<include>**/*.exe</include>
</includes>
<excludes>
<exclude>airline/activemq-data</exclude>

View File

@@ -474,7 +474,7 @@
</para>
<screen>mvn archetype:create -DarchetypeGroupId=org.springframework.ws \
-DarchetypeArtifactId=spring-ws-archetype \
-DarchetypeVersion=1.5.2 \
-DarchetypeVersion=1.5.3 \
-DgroupId=com.mycompany.hr \
-DartifactId=holidayService
</screen>
@@ -634,7 +634,7 @@ public class HolidayEndpoint extends AbstractJDomPayloadEndpoint {
<dependency>
<groupId>org.springframework.ws</groupId>
<artifactId>spring-ws-core</artifactId>
<version>1.5.2</version>
<version>1.5.3</version>
</dependency>
<dependency>
<groupId>jdom</groupId>

View File

@@ -6,9 +6,9 @@ Downloads
* Get the latest Spring Web Services releases here
* <<Spring-WS 1.5.2 is the current production release (JDK 1.4+)>>
* <<Spring-WS 1.5.3 is the current production release (JDK 1.4+)>>
* {{{http://sourceforge.net/project/showfiles.php?group_id=73357&package_id=178569&release_id=600343}Download}} | {{{http://static.springframework.org/spring-ws/docs/1.5.2/changelog.txt}Changelog}} | {{{http://forum.springframework.org/showthread.php?t=54476}Announcement}}
* {{{http://sourceforge.net/project/showfiles.php?group_id=73357&package_id=178569&release_id=611368}Download}} | {{{http://static.springframework.org/spring-ws/docs/1.5.3/changelog.txt}Changelog}} | {{{http://forum.springframework.org/showthread.php?t=56915}Announcement}}
* <<Spring-WS 1.0.4 is the previous production release (JDK 1.3)>>

View File

@@ -23,7 +23,7 @@ Snapshot Builds
<dependency>
<groupId>org.springframework.ws</groupId>
<artifactId>spring-ws-core</artifactId>
<version>1.5.3-SNAPSHOT</version>
<version>1.5.4-SNAPSHOT</version>
</dependency>
+---------------