Skip to content

Commit b396849

Browse files
committed
Release 1.5.0-RC1
1 parent 3677116 commit b396849

File tree

14 files changed

+101
-26
lines changed

14 files changed

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

changelog.txt

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
SPRING WEB SERVICES CHANGELOG
2+
=============================
3+
http://www.springframework.org/spring-ws
4+
5+
Changes in version 1.5.0 RC1
6+
-------------------------
7+
8+
** Sub-task
9+
* [SWS-297] - Server-side support for WS-Addressing
10+
* [SWS-298] - Client-side support for WS-Addressing
11+
12+
** Bug
13+
* [SWS-285] - Clear SecurityContext in Acegi Callbacks
14+
* [SWS-286] - WSS4J AcegiDigestPasswordValidationCallbackHandler does not set Acegi SecurityContext
15+
* [SWS-292] - Add documentation for SoapFaultAnnotationExceptionResolver
16+
* [SWS-293] - Response should be cleared in case of exception in WS-Security securement
17+
* [SWS-294] - WSS4J interceptor shouldn't verify that validationDecryptionCrypto != null
18+
* [SWS-295] - WSS4J interceptor lacks a property to set WSHandlerConstants.ENC_KEY_NAME option
19+
* [SWS-301] - The key used in Wss4j interceptor's Signature tests has expired
20+
* [SWS-305] - CommonsXsdSchema has issues with schema prefixes
21+
22+
** Improvement
23+
* [SWS-249] - POX Sample
24+
* [SWS-271] - Request to inline included XSD's in auto generated WSDL's
25+
* [SWS-282] - Document Wss4jInterceptor
26+
* [SWS-284] - WSS4J jars missing from the "with-dependencies" distribution
27+
* [SWS-289] - Add diagnostic information to threadlocals
28+
* [SWS-290] - Support Spring IDE in NamespaceHandlers
29+
* [SWS-296] - Allow logger name to bet set in PayloadLoggingInterceptor & SoapEnvelopeLoggingInterceptor
30+
* [SWS-303] - WS-Security documentation typo's
31+
32+
** New Feature
33+
* [SWS-252] - Create Spring Security handlers for WS-Security
34+
* [SWS-259] - Support Java 6 HTTP server
35+
* [SWS-281] - add support for imported xsd in static wsdl as well as xsd's that import other xsd's
36+
37+

notes.txt

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
Dear Spring community,
2+
3+
I'm pleased to announce that Spring Web Services 1.5.0 RC1 has been released! This release candidate release introduces:
4+
5+
* WS-Addressing support for both client and server, supporting the August 2004 and final versions of the specification,
6+
* A new and improved XSD-to-WSDL generator that inlines included and import XSDs,
7+
* Support for Spring Security
8+
* Support for the Java 6 HTTP Server
9+
* Two new samples, showing Plain Old XML usage and WS-Addressing with the Java 6 HTTP server
10+
11+
Additionally, there are other minor improvements and bug fixes.
12+
13+
Spring-WS 1.5.0 RC1 is the first milestone in the 1.5 series, which is now feature complete. The 1.5.0 series is 95%
14+
backwards compatible, though support for Java 1.3 has been dropped, in favor of Java 1.6. Java is required 6 to build.
15+
16+
The next release in this branch will be 1.5.0, to be released around the 28th of March, unless a second release
17+
candidate is required. After 1.5.0 final has been released, there will be a 1.0.4, backporting all bugfixes in the 1.5
18+
branch.
19+
20+
For Maven users, please note that this release is not published at the central maven repository. Instead it is
21+
published on Amazon's S3 service, like all Spring milestones. To use it, add the following repository to your POM:
22+
23+
<repository>
24+
<id>spring-milestone</id>
25+
<name>Spring Milestone Repository</name>
26+
<url>http://s3.amazonaws.com/maven.springframework.org/milestone</url>
27+
</repository>
28+
29+
For more information, see http://static.springframework.org/spring-ws/sites/1.5/

pom.xml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,12 @@
254254
<version>3.2.3</version>
255255
<outputDirectory>${project.build.directory}/dependency/stax/</outputDirectory>
256256
</artifactItem>
257+
<artifactItem>
258+
<groupId>org.apache.ws.commons.schema</groupId>
259+
<artifactId>XmlSchema</artifactId>
260+
<version>1.3.2</version>
261+
<outputDirectory>${project.build.directory}/dependency/ws-commons/</outputDirectory>
262+
</artifactItem>
257263
<!-- OXM dependencies -->
258264
<!--Castor-->
259265
<artifactItem>
@@ -356,13 +362,13 @@
356362
<groupId>org.apache.ws.commons.axiom</groupId>
357363
<artifactId>axiom-api</artifactId>
358364
<version>1.2.5</version>
359-
<outputDirectory>${project.build.directory}/dependency/axiom/</outputDirectory>
365+
<outputDirectory>${project.build.directory}/dependency/ws-commons/</outputDirectory>
360366
</artifactItem>
361367
<artifactItem>
362368
<groupId>org.apache.ws.commons.axiom</groupId>
363369
<artifactId>axiom-impl</artifactId>
364370
<version>1.2.5</version>
365-
<outputDirectory>${project.build.directory}/dependency/axiom/</outputDirectory>
371+
<outputDirectory>${project.build.directory}/dependency/ws-commons/</outputDirectory>
366372
</artifactItem>
367373
<artifactItem>
368374
<groupId>wsdl4j</groupId>

readme.txt

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

40-
* spring-oxm-1.5.0-m2.jar
40+
* spring-oxm-1.5.0-rc1.jar
4141
- Contents: The Spring Object/XML Mapping framework
4242
- Dependencies: Commons Logging, spring-beans, spring-core
4343
[Log4J, JAXB 1, Castor, XMLBeans, StAX, JiBX, XStream]
4444

45-
* spring-oxm-tiger-1.5.0-m2.jar
45+
* spring-oxm-tiger-1.5.0-rc1.jar
4646
- Contents: The Spring Object/XML Mapping framework for Java 5
4747
- Dependencies: Commons Logging, spring-beans, spring-core, JAXB 2
4848

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

54-
* spring-ws-core-tiger-1.5.0-m2.jar
54+
* spring-ws-core-tiger-1.5.0-rc1.jar
5555
- Contents: The Spring-WS Core for Java 5
5656
- Dependencies: Commons Logging, spring-beans, spring-core, spring-context, spring-core
5757

58-
* spring-ws-support-1.5.0-m2.jar
58+
* spring-ws-support-1.5.0-rc1.jar
5959
- Contents: The Spring-WS Support
6060
- Dependencies: Commons Logging, spring-beans, spring-core, spring-context, spring-core
6161
[JMS, JavaMail]
6262

63-
* spring-ws-security-1.5.0-m2.jar
63+
* spring-ws-security-1.5.0-rc1.jar
6464
- Contents: Spring-WS Security integration
6565
- Dependencies: Commons Logging, spring-beans, spring-core, spring-context, spring-ws-core
6666
[Log4J, xmlsdig, xmlsec, XWS-security, Acegi, WSS4J]
6767

68-
* spring-xml-1.5.0-m2.jar
68+
* spring-xml-1.5.0-rc1.jar
6969
- Contents: Spring XML utility framework
7070
- Dependencies: Commons Logging, spring-beans, spring-core
7171
[StAX, Xalan, Jaxen]
7272

73+
* spring-ws-1.5.0.jar
74+
- Contents: Convenient al-in-one jar containing all of the jars described above
75+
7376

7477
4. WHERE TO START
7578

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-m2"/>
27+
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.0-rc1"/>
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-m2"/>
35+
<dependency groupId="org.springframework.ws" artifactId="spring-ws-support" version="1.5.0-rc1"/>
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-m2"/>
24-
<dependency groupId="org.springframework.ws" artifactId="spring-ws-security" version="1.5.0-m2"/>
23+
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.0-rc1"/>
24+
<dependency groupId="org.springframework.ws" artifactId="spring-ws-security" version="1.5.0-rc1"/>
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-m2"/>
15+
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.0-rc1"/>
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-m2"/>
15+
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.0-rc1"/>
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-rc1-SNAPSHOT"/>
15+
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.0-rc1"/>
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-rc1-SNAPSHOT</version>
6+
<version>1.5.0-rc1</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>spring-ws-sandbox</artifactId>

src/docbkx/tutorial.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@
474474
</para>
475475
<screen>mvn archetype:create -DarchetypeGroupId=org.springframework.ws \
476476
-DarchetypeArtifactId=spring-ws-archetype \
477-
-DarchetypeVersion=1.5.0-m2 \
477+
-DarchetypeVersion=1.5.0-rc1 \
478478
-DgroupId=com.mycompany.hr \
479479
-DartifactId=holidayService
480480
</screen>
@@ -634,7 +634,7 @@ public class HolidayEndpoint extends AbstractJDomPayloadEndpoint {
634634
<dependency>
635635
<groupId>org.springframework.ws</groupId>
636636
<artifactId>spring-ws-core</artifactId>
637-
<version>1.5.0-m2</version>
637+
<version>1.5.0-rc1</version>
638638
</dependency>
639639
<dependency>
640640
<groupId>jdom</groupId>

src/site/apt/downloads/releases.apt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ Downloads
1010

1111
* {{{http://sourceforge.net/project/showfiles.php?group_id=73357&package_id=178569&release_id=563313}Download}} | {{{http://static.springframework.org/spring-ws/docs/1.0.3/changelog.txt}Changelog}} | {{{http://forum.springframework.org/showthread.php?t=47787}Announcement}}
1212

13-
* <<Spring-WS 1.5.0 Milestone 2 is the current development preview>>
13+
* <<Spring-WS 1.5.0 Release Candidate 1 is the current development preview>>
1414

15-
* {{{http://sourceforge.net/project/showfiles.php?group_id=73357&package_id=178569&release_id=575397}Download}} | {{{http://static.springframework.org/spring-ws/docs/1.5.0-m2/changelog.txt}Changelog}} | {{{http://forum.springframework.org/showthread.php?t=49690}Announcement}}
15+
* {{{http://sourceforge.net/project/showfiles.php?group_id=73357&package_id=178569&release_id=582822}Download}} | {{{http://static.springframework.org/spring-ws/docs/1.5.0-rc1/changelog.txt}Changelog}} | {{{http://forum.springframework.org/showthread.php?t=50896}Announcement}}
1616

17-
* <<Spring-WS 1.5.0 Release Candidate 1 is the upcoming development release>>
17+
* <<Spring-WS 1.5.0 is the upcoming production release>>
1818

1919
* {{{snapshots.html}Download nightly snapshots}}

src/site/apt/downloads/snapshots.apt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Snapshot Builds
2323
<dependency>
2424
<groupId>org.springframework.ws</groupId>
2525
<artifactId>spring-ws-core</artifactId>
26-
<version>1.5.0-rc1-SNAPSHOT</version>
26+
<version>1.5.0-SNAPSHOT</version>
2727
</dependency>
2828
+---------------
2929

0 commit comments

Comments
 (0)