Skip to content

Commit 207dca5

Browse files
committed
Released 2.0.0.RELEASE
1 parent d088995 commit 207dca5

File tree

9 files changed

+134
-34
lines changed

9 files changed

+134
-34
lines changed

changelog.txt

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

5+
Changes in version 2.0.0.RELEASE
6+
----------------------------------
7+
8+
** Bug
9+
* [SWS-585] - POMs of Spring-WS artifacts at maven central repo wrongfuly contain references to external repositories
10+
* [SWS-675] - XwssSecurityInterceptor in combination with <sws:interceptors>
11+
* [SWS-677] - /META-INF/spring.schema
12+
13+
** Improvement
14+
* [SWS-254] - Add an EndpointAdapter that adapts to a MethodEndpoint for a methos with one Source param containing the payload
15+
* [SWS-557] - Make XPathParamAnnotationMethodEndpointAdapter more extendable
16+
* [SWS-558] - Use custom data types for @XPathParam annotations
17+
* [SWS-673] - Remove final keyword from AbstractAnnotationMethodEndpointMapping initApplicationContext() method
18+
19+
** New Feature
20+
* [SWS-263] - Provide xml based Mock for Web Services
21+
22+
Changes in version 2.0 Release Candidate 2
23+
----------------------------------
24+
25+
** Sub-task
26+
* [SWS-668] - sws:annotation-driven
27+
* [SWS-669] - sws:static-wsdl and sws:dynamic-wsdl
28+
* [SWS-670] - sws:interceptors
29+
30+
** Bug
31+
* [SWS-656] - ResponseMatcher.payload(Resource payload) should be static
32+
* [SWS-664] - Tutorial requires transformWsdlLocations true
33+
34+
** Improvement
35+
* [SWS-672] - Allow MarshallingPayloadMethodProcessor to have a null marshaller or unmarshaller
36+
37+
** New Feature
38+
* [SWS-667] - Improve SWS namespace
39+
40+
** Task
41+
* [SWS-652] - Document full streaming WebServiceMessage
42+
* [SWS-653] - Make sure samples are included in release
43+
* [SWS-666] - Update tutorial
44+
45+
Changes in version 2.0 Release Candidate 1
46+
----------------------------------
47+
48+
** Sub-task
49+
* [SWS-631] - Create Client-Side testing framework
50+
* [SWS-632] - Create Server-Side testing framework
51+
* [SWS-651] - Add documentation for testing framework
52+
53+
** Bug
54+
* [SWS-640] - evaluateAsBoolean returns true for node with text content "false"
55+
56+
** Improvement
57+
* [SWS-544] - Add test framework for Spring WS
58+
* [SWS-635] - handleUsernameTokenUnknown() should attach root cause
59+
* [SWS-641] - Make sentMessageTracingLogger independent from receivedMessageTracingLogger
60+
* [SWS-648] - Document Spring-WS Security exception handling
61+
* [SWS-650] - AxiomSoapMessageFactory does not provide way to set properties on XMLInputFactory
62+
63+
** New Feature
64+
* [SWS-352] - Full streaming WebServiceMessage/SoapMessage
65+
* [SWS-642] - Support resolving SOAP header elements in @Endpoint method parameters
66+
* [SWS-643] - Create TransformerHelper class
67+
68+
** Task
69+
* [SWS-639] - Deprecate redundant XML classes
70+
71+
Changes in version 2.0 Milestone 3
72+
----------------------------------
73+
74+
** Sub-task
75+
* [SWS-631] - Create Client-Side testing framework
76+
77+
** Improvement
78+
* [SWS-610] - Incompatibility with WS-I requirement R2750
79+
80+
** Task
81+
* [SWS-620] - Add the Spring-OXM jar to the "with dependencies" distribution
82+
* [SWS-624] - Documentation- explain that WSDL generation should better not be used in production
83+
84+
Changes in version 2.0 Milestone 2
85+
----------------------------------
86+
87+
** Bug
88+
* [SWS-613] - Jaxp13XPathTemplate uses thread-unsafe XPathFactory as field
89+
90+
** Improvement
91+
* [SWS-538] - Add support for XWSS 3.1
92+
93+
** New Feature
94+
* [SWS-193] - XwsSecurityInterceptor : funtionality for skipping the validate of a SOAP message when there are no WSSE headers in SOAP envelope.
95+
* [SWS-349] - Support @PayloadRoot annotation on methods with DOM, JDOM, DOM4J and XOM type method signatures
96+
* [SWS-351] - Arbitrary parameter injection for @Endpoints
97+
* [SWS-428] - XMPP support
98+
* [SWS-540] - Adding XML declaration to a response
99+
100+
** Task
101+
* [SWS-559] - Upgrade Spring Security to 3.0.2
102+
* [SWS-603] - Drop OXM chapter from ref docs
103+
* [SWS-604] - Upgrade XSD schemas
5104

6105
Changes in version 2.0 Milestone 1
7106
------------------------
@@ -432,4 +531,4 @@ Changes in version 1.5.0 Milestone 1
432531
* [SWS-121] - Spring Namespace support
433532
* [SWS-139] - Mail transport support
434533
* [SWS-187] - SOAP 1.2 Compatible WSDL descriptor generation
435-
* [SWS-228] - Support Spring 2.5
534+
* [SWS-228] - Support Spring 2.5

notes.txt

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
11
Dear Spring community,
22

3-
I'm pleased to announce that Spring Web Services 2.0 Milestone 1 has been
4-
released!
3+
I'm pleased to announce that Spring Web Services 2.0.0.RELEASE has
4+
been released!
55

6-
This is the first milestone release in the 2.0 release cycle. It does not
7-
introduce any new features (yet), but does add the following:
6+
This is the first GA release in the 2.0 release cycle. Spring Web Services 2.0
7+
contains the following new features:
88

9-
- Usage of Spring's OXM
10-
- Java 5 API (including generics, varargs, etc)
9+
- Java 5+ and Spring 3.0 support
10+
- Improved @Endpoint programming model
11+
- New Integration Testing Module
12+
- And numerous other new features
1113

12-
Please see the changelog for details.
14+
For more information, refer to
1315

14-
Spring Web Services 2.0 is due in the second quarter of 2010.
16+
http://blog.springsource.com/2011/01/11/spring-web-services-2-0-released/
1517

16-
For more information, see http://static.springframework.org/spring-ws/site/
18+
Please see the changelog for more details.
19+
20+
For more information, see http://static.springframework.org/spring-ws/sites/2.0

parent/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,8 @@
99
<distributionManagement>
1010
<downloadUrl>http://static.springframework.org/spring-ws/site/downloads/releases.html</downloadUrl>
1111
<repository>
12-
<id>spring-release</id>
13-
<name>Spring Release Repository</name>
14-
<url>s3://maven.springframework.org/release</url>
12+
<id>local</id>
13+
<url>file:///Users/arjen/Projects/Spring/repos/repo</url>
1514
</repository>
1615
<snapshotRepository>
1716
<id>spring-snapshot</id>

pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,8 @@
7979
<distributionManagement>
8080
<downloadUrl>http://www.springsource.com/download/community?project=Spring%20Web%20Services</downloadUrl>
8181
<repository>
82-
<id>spring-release</id>
83-
<name>Spring Release Repository</name>
84-
<url>s3://maven.springframework.org/release</url>
82+
<id>local</id>
83+
<url>file:///Users/arjen/Projects/Spring/repos/repo</url>
8584
</repository>
8685
<snapshotRepository>
8786
<id>spring-s3</id>

readme.txt

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
SPRING WEB SERVICES 2.0 M1 (March 2010)
1+
SPRING WEB SERVICES 2.0.0.RELEASE (January 2011)
22
-------------------------------
33
http://www.springframework.org/spring-ws
44
http://forum.springframework.org/forumdisplay.php?f=39
@@ -36,27 +36,31 @@ The following distinct jar files are included in the distribution. This list spe
3636
third-party dependencies. Libraries in [brackets] are optional, i.e. just necessary for certain functionality. For an
3737
exact list of Spring-WS project dependencies see the respective Maven2 pom.xml files.
3838

39-
* spring-ws-core-2.0.0-M1.jar
39+
* spring-ws-core-2.0.0.RELEASE.jar
4040
- Contents: The Spring-WS Core
4141
- Dependencies: Commons Logging, spring-beans, spring-core, spring-context, spring-oxm
4242
[Log4J, spring-web, spring-webmvc, SAAJ, JDOM, StAX, Servlet API, JAF, Axiom, DOM4J, XOM, WSDL4J]
4343

44-
* spring-ws-support-2.0.0-M1.jar
44+
* spring-ws-support-2.0.0.RELEASE.jar
4545
- Contents: The Spring-WS Support
4646
- Dependencies: Commons Logging, spring-beans, spring-core, spring-context, spring-core
4747
[JMS, JavaMail]
4848

49-
* spring-ws-security-2.0.0-M1.jar
49+
* spring-ws-security-2.0.0.RELEASE.jar
5050
- Contents: Spring-WS Security integration
5151
- Dependencies: Commons Logging, spring-beans, spring-core, spring-context, spring-ws-core
5252
[Log4J, xmlsdig, xmlsec, XWS-security, Acegi, WSS4J]
5353

54-
* spring-xml-2.0.0-M1.jar
54+
* spring-ws-test-2.0.0.RELEASE.jar
55+
- Contents: Spring-WS Testing framework
56+
- Dependencies: JUnit, XMLUnit
57+
58+
* spring-xml-2.0.0.RELEASE.jar
5559
- Contents: Spring XML utility framework
5660
- Dependencies: Commons Logging, spring-beans, spring-core
5761
[StAX, Xalan, Jaxen]
5862

59-
* spring-ws-2.0.0-M1.jar
63+
* spring-ws-2.0.0.RELEASE-all.jar
6064
- Contents: Convenient al-in-one jar containing all of the jars described above
6165

6266

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>2.0.0.RELEASE-SNAPSHOT</version>
6+
<version>2.0.0.RELEASE</version>
77
<relativePath>../parent/pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

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=2.0.0-RC2 \
477+
-DarchetypeVersion=2.0.0.RELEASE \
478478
-DgroupId=com.mycompany.hr \
479479
-DartifactId=holidayService
480480
</screen>
@@ -678,7 +678,7 @@ public class HolidayEndpoint {
678678
<dependency>
679679
<groupId>org.springframework.ws</groupId>
680680
<artifactId>spring-ws-core</artifactId>
681-
<version>2.0.0-RC2</version>
681+
<version>2.0.0.RELEASE</version>
682682
</dependency>
683683
<dependency>
684684
<groupId>jdom</groupId>

src/site/apt/downloads/releases.apt

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,11 @@ Downloads
66

77
* Get the latest Spring Web Services releases here
88

9-
* <<Spring-WS 2.0.0 M1 is the current development release (JDK 1.5+)>>
9+
* <<Spring-WS 2.0.0.RELEASE is the current production release (JDK 1.5+)>>
1010

11-
* {{{http://www.springsource.com/download/community?project=Spring%20Web%20Services}Download}} | {{{http://static.springframework.org/spring-ws/docs/2.0.0-m1/changelog.txt}Changelog}} | {{{http://forum.springframework.org/showthread.php?t=85421}Announcement}}
11+
* {{{http://www.springsource.com/download/community?project=Spring%20Web%20Services}Download}} | {{{http://static.springframework.org/spring-ws/docs/2.0.0.RELEASE/changelog.txt}Changelog}} | {{{http://forum.springframework.org/showthread.php?t=100937}Announcement}}
1212

1313

14-
* <<Spring-WS 1.5.9 is the current production release (JDK 1.4+)>>
15-
16-
* {{{http://www.springsource.com/download/community?project=Spring%20Web%20Services}Download}} | {{{http://static.springframework.org/spring-ws/docs/1.5.9/changelog.txt}Changelog}} | {{{http://forum.springframework.org/showthread.php?t=83900}Announcement}}
17-
18-
19-
* <<Spring-WS 2.0.0 M2 is the upcoming production release>>
14+
* <<Spring-WS 2.0.1.RELEASE is the upcoming production release>>
2015

2116
* {{{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>2.0.0-M2-SNAPSHOT</version>
26+
<version>2.0.0.RELEASE-SNAPSHOT</version>
2727
</dependency>
2828
+---------------
2929

0 commit comments

Comments
 (0)