Skip to content

Commit c9a6cb8

Browse files
committed
Releasing 1.5.1
1 parent 4a042f1 commit c9a6cb8

File tree

13 files changed

+225
-25
lines changed

13 files changed

+225
-25
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.0</version>
18+
<version>1.5.1</version>
1919
</dependency>
2020
<dependency>
2121
<groupId>org.springframework.ws</groupId>
2222
<artifactId>spring-ws-core</artifactId>
23-
<version>1.5.0</version>
23+
<version>1.5.1</version>
2424
</dependency>
2525
</dependencies>
2626
</project>

changelog.txt

Lines changed: 178 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,178 @@
1+
SPRING WEB SERVICES CHANGELOG
2+
=============================
3+
http://www.springframework.org/spring-ws
4+
5+
Changes in version 1.5.1
6+
-------------------------
7+
** Bug
8+
* [SWS-300] - SAAJ0539: Unable to get header stream in saveChanges
9+
* [SWS-321] - Update artifact version in tutorial
10+
* [SWS-323] - Fix xmlsec dependency
11+
* [SWS-328] - Error creating signed message with WSS4J
12+
* [SWS-330] - WebServiceTemplate hasFaut skips check for fault in response if the connection implements FaultAwareWebServiceConnection
13+
* [SWS-333] - Transport streams not closed in WebServiceConnection
14+
* [SWS-334] - Calls to lifecycleMonitor.notifyAll() in AbstractStandaloneMessageReceiver are superfluous
15+
* [SWS-335] - SaajXmlReader NullPointerException / jboss / mac in interceptors
16+
* [SWS-339] - XML namespace (http://www.w3.org/XML/1998/namespace) mapped to wrong prefix when building WSDL with inlined schemas
17+
* [SWS-341] - Wss4jSecurityInterceptor and AcegiDigestPasswordValidationCallbackHandler do not correctly work together to update the Acegi security context.
18+
* [SWS-342] - NPE in AbstractAnnotationMethodEndpointMapping on line 47 during postProcessAfterInitialization
19+
* [SWS-345] - WSS4J interceptor creates creates invalid digest for SAAJ messages
20+
* [SWS-347] - Error using AxiomSoapMessageFactory with comments in request
21+
22+
** Improvement
23+
* [SWS-287] - Spring Web Services does not seem to work with Castor 1.2
24+
* [SWS-309] - Add namespaceMappings property to CastorMarshaller
25+
* [SWS-319] - Document MessageTracing logging
26+
* [SWS-320] - Add timeout properties to Client-side transport
27+
* [SWS-324] - Make Import-package: javax.wsdl.extensions.soap12 in MANIFEST.MF optional
28+
* [SWS-325] - Spring WS modules require spring modules 2.5.0
29+
* [SWS-326] - Separate MessageTracing logger between sent and received messages
30+
* [SWS-332] - Upgrade to Spring Security 2.0
31+
* [SWS-336] - Fix Airline C# client build script
32+
* [SWS-337] - WebServiceTemplate problem when invoking oneway style services with marshalSendAndReceive
33+
* [SWS-338] - Inspect Content-Type in WebServiceTemplate
34+
* [SWS-350] - Upgrade Airline sample to use Spring Security
35+
36+
** New Feature
37+
* [SWS-281] - add support for imported xsd in static wsdl as well as xsd's that import other xsd's
38+
* [SWS-317] - Integrate spring OXM with Spring core JMS support / OXM MessageConverter
39+
* [SWS-331] - Spring MVC View based on OXM marshaller
40+
* [SWS-340] - Create new MessagesProvider that only includes elements with the given suffixes
41+
42+
** Task
43+
* [SWS-327] - Document Embedded HTTP Server transport
44+
45+
Changes in version 1.5.0
46+
-------------------------
47+
48+
** Bug
49+
* [SWS-316] - Unresolvable dependency in parent pom
50+
51+
Changes in version 1.5.0 RC2
52+
-------------------------
53+
54+
** Sub-task
55+
* [SWS-299] - WS-Addressing Documentation
56+
57+
** Bug
58+
* [SWS-307] - org.springframework.ws.soap.security.wss4j.callback.KeyStoreCallbackHandler uses tiger specific
59+
classes
60+
* [SWS-308] - WebServiceTemplate skips handling fault in response with checkConnectionForFault="false" when HTTP
61+
status code is not 200 or 500
62+
63+
** Improvement
64+
* [SWS-179] - Create and use some wrapper around javax.xml.validation.Schema
65+
* [SWS-304] - Support XsdSchema in AbstractValidatingInterceptor
66+
* [SWS-306] - Document DefaultWsdl11Defintion and WSDL Provider model
67+
* [SWS-310] - Add getters for ProviderBasedWsdl4jDefinition
68+
* [SWS-311] - Create RequestMessage in JmsSenderConnection constructor
69+
* [SWS-312] - Add FAQ entry for Websphere
70+
* [SWS-313] - Rewrite Airline sample to use Spring 2.5 features
71+
* [SWS-315] - Endpointsextending AbstractMarshallingPayloadEndpoint require a marshaller also for oneway style
72+
service
73+
74+
** New Feature
75+
* [SWS-84] - WS-Addressing support
76+
77+
Changes in version 1.5.0 RC1
78+
-------------------------
79+
80+
** Sub-task
81+
* [SWS-297] - Server-side support for WS-Addressing
82+
* [SWS-298] - Client-side support for WS-Addressing
83+
84+
** Bug
85+
* [SWS-285] - Clear SecurityContext in Acegi Callbacks
86+
* [SWS-286] - WSS4J AcegiDigestPasswordValidationCallbackHandler does not set Acegi SecurityContext
87+
* [SWS-292] - Add documentation for SoapFaultAnnotationExceptionResolver
88+
* [SWS-293] - Response should be cleared in case of exception in WS-Security securement
89+
* [SWS-294] - WSS4J interceptor shouldn't verify that validationDecryptionCrypto != null
90+
* [SWS-295] - WSS4J interceptor lacks a property to set WSHandlerConstants.ENC_KEY_NAME option
91+
* [SWS-301] - The key used in Wss4j interceptor's Signature tests has expired
92+
* [SWS-305] - CommonsXsdSchema has issues with schema prefixes
93+
94+
** Improvement
95+
* [SWS-249] - POX Sample
96+
* [SWS-271] - Request to inline included XSD's in auto generated WSDL's
97+
* [SWS-282] - Document Wss4jInterceptor
98+
* [SWS-284] - WSS4J jars missing from the "with-dependencies" distribution
99+
* [SWS-289] - Add diagnostic information to threadlocals
100+
* [SWS-290] - Support Spring IDE in NamespaceHandlers
101+
* [SWS-296] - Allow logger name to bet set in PayloadLoggingInterceptor & SoapEnvelopeLoggingInterceptor
102+
* [SWS-303] - WS-Security documentation typo's
103+
104+
** New Feature
105+
* [SWS-252] - Create Spring Security handlers for WS-Security
106+
* [SWS-259] - Support Java 6 HTTP server
107+
* [SWS-281] - add support for imported xsd in static wsdl as well as xsd's that import other xsd's
108+
109+
110+
111+
Changes in version 1.5.0 Milestone 2
112+
-------------------------
113+
114+
** Bug
115+
* [SWS-257] - Infinite loop in XsdBasedSoap11Wsdl4jDefinitionBuilder#buildMessages method
116+
* [SWS-258] - getting error when trying to use IBM MQ JMS implementation as transport.
117+
* [SWS-264] - XPathExpressionFactory should fallback to Jaxen if no JAXP 1.3 XPath implementation is available
118+
* [SWS-265] - AbstractStaxXmlReader should support the required standard SAX features (namespace, namespace-prefixes...)
119+
* [SWS-266] - AxiomContentHandler should empty the response body before adding the transformation result
120+
* [SWS-267] - code bugs in Reference docs section 4.3.1
121+
* [SWS-268] - cope typos in reference docs section 6.2.4 and 6.2.5
122+
* [SWS-274] - Soap headers with whitespace cause java.lang.ClassCastException: com.sun.xml.messaging.saaj.soap.impl.TextImpl - Part II
123+
* [SWS-275] - NAMESPACE_ERR: An attempt is made to create or change an object in a way which is incorrect with regard to namespaces.
124+
* [SWS-276] - PayloadTransformingInterceptor has a typo in the example
125+
126+
** Improvement
127+
* [SWS-92] - JAXP 1.4 support
128+
* [SWS-148] - WebServiceTemplte needs two more methods in order to easy enable ws security client support
129+
* [SWS-231] - @Endpoint component scanning
130+
* [SWS-243] - AxiomSoapHeaderElement has no convenient way to access child elements of the header element
131+
* [SWS-246] - Better support for large Axiom attachments
132+
* [SWS-251] - Improve OSGi manifest
133+
* [SWS-253] - Tiger jars should not include non-tiger classes
134+
* [SWS-255] - Support for javax.jms.TextMessage
135+
* [SWS-261] - There are more default HandlerAdapters in Spring-MVC
136+
* [SWS-262] - Endpoint annotation should be annotated as @Inherited
137+
* [SWS-269] - OSGi bundleSymName
138+
* [SWS-270] - Changes for WS XSD for tooling
139+
* [SWS-272] - Add removeHeaderElement(QName) to SoapHeader
140+
* [SWS-278] - Add traffic logging when response is fault
141+
142+
** New Feature
143+
* [SWS-143] - Client-side WS-Security support
144+
* [SWS-194] - Add Interceptor functionality to WebServiceTemplate
145+
* [SWS-207] - WSS4J-based WS-Security implementation
146+
* [SWS-277] - URI-based routing
147+
* [SWS-279] - AcegiUsernamePasswordCallbackHandler
148+
149+
Changes in version 1.5.0 Milestone 1
150+
-------------------------
151+
152+
** Bug
153+
* [SWS-225] - Spring-WS doesn't send "Content-Transfer-Encoding: binary" with MTOM part and this creates interoperability issue with .NET 3.0
154+
* [SWS-226] - Exception mapping corrupts the 'defaultFault' instance
155+
* [SWS-227] - NPE when "mustUnderstand" attribute is in SOAP header and no Interceptors have been defined
156+
* [SWS-229] - JibxMarshaller should support marshalling/unmarshalling of all mapped classes
157+
* [SWS-230] - AxiomSoapMessageFactory throws NPE
158+
* [SWS-232] - PayloadValidatingInterceptor refuses to validate correct message with a top-level attribute
159+
* [SWS-238] - AbstractMethodEndpointMapping does not support JDK Proxies
160+
* [SWS-239] - Marshalling with Castor and Axiom results in a XMLStreamException
161+
* [SWS-241] - NullPointerException during processing message with empty body
162+
* [SWS-244] - Soap headers with whitespace cause java.lang.ClassCastException: com.sun.xml.messaging.saaj.soap.impl.TextImpl
163+
* [SWS-245] - SAXParseException when using HttpURLConnection
164+
* [SWS-247] - Exception thrown when schemaPrefix is empty in XsdBasedSoap11Wsdl4jDefinitionBuilder
165+
* [SWS-248] - DomPoxMessage not clearing DOM on setting the result
166+
167+
** Improvement
168+
* [SWS-223] - Use BeanClassLoader in Jaxb marshallers
169+
* [SWS-233] - OSGi bundles
170+
* [SWS-235] - XStreamMarshaller - support for custom HierarchicalStreamDriver
171+
* [SWS-240] - spring-ws-with-dependencies distribution
172+
173+
** New Feature
174+
* [SWS-108] - JMS transport support
175+
* [SWS-121] - Spring Namespace support
176+
* [SWS-139] - Mail transport support
177+
* [SWS-187] - SOAP 1.2 Compatible WSDL descriptor generation
178+
* [SWS-228] - Support Spring 2.5

notes.txt

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Dear Spring community,
2+
3+
I'm pleased to announce that Spring Web Services 1.5.1 has been released!
4+
5+
This is the first bug fix and enhancement release in the Spring-WS 1.5 series.
6+
It fixes all bugs reported since 1.5.0 and introduces various enhancements
7+
throughout the framework:
8+
9+
* Introduced a Spring JMS MessageConverter that uses OXM marshallers
10+
* Introduced a Spring MVC View that uses OXM marshallers
11+
* Fixed WS-Security signatures when using WSS4J in combination with SAAJ
12+
messages
13+
* Support for timeouts on HTTP transports
14+
* Support for Castor 1.2, see note below
15+
* Airline sample now uses Spring Security
16+
17+
and more. Please see the changelog for details.
18+
19+
For more information, see http://static.springframework.org/spring-ws/site/
20+
21+
Please note that - due to a backwards compatibility issue - the
22+
CastorMarshaller now requires Castor 1.2 or higher.

readme.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
SPRING WEB SERVICES 1.5.0 (March 2008)
1+
SPRING WEB SERVICES 1.5.1 (May 2008)
22
-------------------------------
33
http://www.springframework.org/spring-ws
44
http://forum.springframework.org/forumdisplay.php?f=39
@@ -39,40 +39,40 @@ The following distinct jar files are included in the distribution. This list spe
3939
third-party dependencies. Libraries in [brackets] are optional, i.e. just necessary for certain functionality. For an
4040
exact list of Spring-WS project dependencies see the respective Maven2 pom.xml files.
4141

42-
* spring-oxm-1.5.0.jar
42+
* spring-oxm-1.5.1.jar
4343
- Contents: The Spring Object/XML Mapping framework
4444
- Dependencies: Commons Logging, spring-beans, spring-core
4545
[Log4J, JAXB 1, Castor, XMLBeans, StAX, JiBX, XStream]
4646

47-
* spring-oxm-tiger-1.5.0.jar
47+
* spring-oxm-tiger-1.5.1.jar
4848
- Contents: The Spring Object/XML Mapping framework for Java 5
4949
- Dependencies: Commons Logging, spring-beans, spring-core, JAXB 2
5050

51-
* spring-ws-core-1.5.0.jar
51+
* spring-ws-core-1.5.1.jar
5252
- Contents: The Spring-WS Core
5353
- Dependencies: Commons Logging, spring-beans, spring-core, spring-context, spring-oxm
5454
[Log4J, spring-web, spring-webmvc, SAAJ, JDOM, StAX, Servlet API, JAF, Axiom, DOM4J, XOM, WSDL4J]
5555

56-
* spring-ws-core-tiger-1.5.0.jar
56+
* spring-ws-core-tiger-1.5.1.jar
5757
- Contents: The Spring-WS Core for Java 5
5858
- Dependencies: Commons Logging, spring-beans, spring-core, spring-context, spring-core
5959

60-
* spring-ws-support-1.5.0.jar
60+
* spring-ws-support-1.5.1.jar
6161
- Contents: The Spring-WS Support
6262
- Dependencies: Commons Logging, spring-beans, spring-core, spring-context, spring-core
6363
[JMS, JavaMail]
6464

65-
* spring-ws-security-1.5.0.jar
65+
* spring-ws-security-1.5.1.jar
6666
- Contents: Spring-WS Security integration
6767
- Dependencies: Commons Logging, spring-beans, spring-core, spring-context, spring-ws-core
6868
[Log4J, xmlsdig, xmlsec, XWS-security, Acegi, WSS4J]
6969

70-
* spring-xml-1.5.0.jar
70+
* spring-xml-1.5.1.jar
7171
- Contents: Spring XML utility framework
7272
- Dependencies: Commons Logging, spring-beans, spring-core
7373
[StAX, Xalan, Jaxen]
7474

75-
* spring-ws-1.5.0.jar
75+
* spring-ws-1.5.1.jar
7676
- Contents: Convenient al-in-one jar containing all of the jars described above
7777

7878

samples/airline/client/jms/build.xml

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

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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
<artifact:dependencies pathId="classpath">
2121
<remoteRepository refid="main"/>
2222
<remoteRepository refid="java.net"/>
23-
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.0"/>
24-
<dependency groupId="org.springframework.ws" artifactId="spring-ws-security" version="1.5.0"/>
23+
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.1"/>
24+
<dependency groupId="org.springframework.ws" artifactId="spring-ws-security" version="1.5.1"/>
2525
<dependency groupId="com.sun.xml.messaging.saaj" artifactId="saaj-impl" version="1.3"/>
2626
<dependency groupId="commons-httpclient" artifactId="commons-httpclient" version="3.0.1"/>
2727
<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
@@ -12,7 +12,7 @@
1212
</typedef>
1313

1414
<artifact:dependencies pathId="classpath">
15-
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.0"/>
15+
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.1"/>
1616
<dependency groupId="com.sun.xml.messaging.saaj" artifactId="saaj-impl" version="1.3"/>
1717
<dependency groupId="commons-httpclient" artifactId="commons-httpclient" version="3.0.1"/>
1818
</artifact:dependencies>

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

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

1414
<artifact:dependencies pathId="classpath">
15-
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.0"/>
15+
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.1"/>
1616
<dependency groupId="log4j" artifactId="log4j" version="1.2.13"/>
1717
</artifact:dependencies>
1818

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

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

1414
<artifact:dependencies pathId="classpath">
15-
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.0"/>
15+
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.1"/>
1616
<dependency groupId="com.sun.xml.messaging.saaj" artifactId="saaj-impl" version="1.3"/>
1717
<dependency groupId="log4j" artifactId="log4j" version="1.2.13"/>
1818
</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.0</version>
6+
<version>1.5.1</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>spring-ws-sandbox</artifactId>

0 commit comments

Comments
 (0)