Skip to content

Commit 5b52969

Browse files
committed
Spring-WS 1.5.4 release
1 parent 9e54d45 commit 5b52969

File tree

16 files changed

+79
-33
lines changed

16 files changed

+79
-33
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.3</version>
18+
<version>1.5.4</version>
1919
</dependency>
2020
<dependency>
2121
<groupId>org.springframework.ws</groupId>
2222
<artifactId>spring-ws-core</artifactId>
23-
<version>1.5.3</version>
23+
<version>1.5.4</version>
2424
</dependency>
2525
</dependencies>
2626
</project>

changelog.txt

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

5+
Changes in version 1.5.4
6+
-------------------------
7+
** Bug
8+
* [SWS-386] - DefaultWsdl11Definition.setFaultSuffix : responseSuffix overwritten
9+
* [SWS-389] - problem with DomContentHandler
10+
* [SWS-392] - AbstractMarshallingPayloadEndpoint and XStreamMarshaller produces malformed response body
11+
* [SWS-393] - Incoming message with with UTF-8 BOM is failing
12+
* [SWS-395] - Spring-WS support manifest has wrong version of spring xml import
13+
* [SWS-396] - @Endpoint with method having any other annotation then @PayloadRoot is not mapped
14+
* [SWS-401] - unable to use maven2 to use version above 1.0.4 due to missing jar: bouncycastle:bcprov-jdk15:jar:132
15+
* [SWS-406] - Constructor in example for AbstractMarshallingPayloadEndpoint is wrong
16+
17+
** Improvement
18+
* [SWS-214] - Setting Basic Authentication preemptive through CommonsHttpMessageSender
19+
* [SWS-224] - XStreamMarshaller is missing the call to omit fields from serialization process
20+
* [SWS-372] - Missing support for interface/implementation separated JAXB classes in Jaxb2Marshaller
21+
* [SWS-390] - Document OXM tags
22+
* [SWS-394] - Update FAQ to reflect new SAAJ jar in WebLogic 10
23+
* [SWS-397] - Add the possibility to WebServiceTemplate to extract the service URI from a WSDL
24+
* [SWS-399] - Upgrade XStream dependency to 1.3
25+
* [SWS-400] - Make AbstractLoggingInterceptor more extensible
26+
* [SWS-404] - Do not transform request payload Sources when not necessary
27+
28+
** New Feature
29+
* [SWS-362] - WSDL generation issue when xsds import other xsds
30+
* [SWS-391] - Client-side validation interceptor
31+
* [SWS-398] - Add layer of indirection for obtaining WebServiceTemplate URIs
32+
* [SWS-402] - Create utility for dealing with Source and Result objects
33+
534
Changes in version 1.5.3
635
-------------------------
736
** Bug

core-tiger/src/main/java/org/springframework/ws/soap/addressing/server/AnnotationActionEndpointMapping.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
* }
4949
* </pre>
5050
* <p/>
51-
* If set, the {@link @Address} annotation on the endpoint class should be equal to the {@link
51+
* If set, the {@link Address} annotation on the endpoint class should be equal to the {@link
5252
* org.springframework.ws.soap.addressing.core.MessageAddressingProperties#getTo() destination} property of the
5353
* incominging message.
5454
*

notes.txt

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
Dear Spring community,
22

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

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
7-
throughout the framework:
5+
This is the fourth bug fix and enhancement release in the Spring-WS 1.5
6+
series. It fixes all bugs reported since 1.5.3 and introduces various
7+
enhancements throughout the framework:
88

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
9+
* Client-side XSD validation in the WebServiceTemplate, which allows you to
10+
make sure you conform to a provided schema.
11+
* Ability to point the WebServiceTemplate to a WSDL Resource, extracting the
12+
location from it.
13+
* Major speed inprovements in the DOM-based endpoint base classes
14+
(AbstractDomPayloadEndpoint, AbstractJdomPayloadEndpoint, etc.).
1215

1316
and more, including more documentation. Please see the changelog for details.
1417

parent/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,13 @@
124124
<configuration>
125125
<quiet>true</quiet>
126126
</configuration>
127+
<reportSets>
128+
<reportSet>
129+
<reports>
130+
<report>javadoc</report>
131+
</reports>
132+
</reportSet>
133+
</reportSets>
127134
</plugin>
128135
</plugins>
129136
</reporting>

pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -697,6 +697,13 @@
697697
<link>http://ws.apache.org/commons/XmlSchema/apidocs/</link>
698698
</links>
699699
</configuration>
700+
<reportSets>
701+
<reportSet>
702+
<reports>
703+
<report>javadoc</report>
704+
</reports>
705+
</reportSet>
706+
</reportSets>
700707
</plugin>
701708
<plugin>
702709
<artifactId>maven-project-info-reports-plugin</artifactId>

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.2 (May 2008)
1+
SPRING WEB SERVICES 1.5.4 (August 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.2.jar
42+
* spring-oxm-1.5.4.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.2.jar
47+
* spring-oxm-tiger-1.5.4.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.2.jar
51+
* spring-ws-core-1.5.4.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.2.jar
56+
* spring-ws-core-tiger-1.5.4.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.2.jar
60+
* spring-ws-support-1.5.4.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.2.jar
65+
* spring-ws-security-1.5.4.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.2.jar
70+
* spring-xml-1.5.4.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.2.jar
75+
* spring-ws-1.5.4.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
@@ -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.3"/>
26+
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.4"/>
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.3"/>
34+
<dependency groupId="org.springframework.ws" artifactId="spring-ws-support" version="1.5.4"/>
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.3"/>
23-
<dependency groupId="org.springframework.ws" artifactId="spring-ws-security" version="1.5.3"/>
22+
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.4"/>
23+
<dependency groupId="org.springframework.ws" artifactId="spring-ws-security" version="1.5.4"/>
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.3"/>
14+
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.4"/>
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>

0 commit comments

Comments
 (0)