Skip to content

Commit c5210e3

Browse files
committed
Released 1.0.4
1 parent 1a6d241 commit c5210e3

File tree

9 files changed

+38
-17
lines changed

9 files changed

+38
-17
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.0.3</version>
18+
<version>1.0.4</version>
1919
</dependency>
2020
<dependency>
2121
<groupId>org.springframework.ws</groupId>
2222
<artifactId>spring-ws-core</artifactId>
23-
<version>1.0.3</version>
23+
<version>1.0.4</version>
2424
</dependency>
2525
</dependencies>
2626
</project>

changelog.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
SPRING WEB SERVICES CHANGELOG
2+
=============================
3+
http://www.springframework.org/spring-ws
4+
5+
Changes in version 1.0.4
6+
-------------------------
7+
8+
** Bug
9+
* [SWS-264] - XPathExpressionFactory should fallback to Jaxen if no JAXP 1.3 XPath implementation is available
10+
* [SWS-266] - AxiomContentHandler should empty the response body before adding the transformation result
11+
* [SWS-274] - Soap headers with whitespace cause java.lang.ClassCastException: com.sun.xml.messaging.saaj.soap.impl.TextImpl - Part II
12+
* [SWS-275] - NAMESPACE_ERR: An attempt is made to create or change an object in a way which is incorrect with regard to namespaces.
13+
* [SWS-285] - Clear SecurityContext in Acegi Callbacks
14+
* [SWS-316] - Unresolvable dependency in parent pom

notes.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
I'm pleased to announce that Spring Web Services 1.0.4 has been released.
2+
3+
Spring-WS 1.0.4 is a bugfix and enhancement release, addressing issues
4+
reported since 1.0.3 and introducing further improvements. We recommend to
5+
upgrade to Spring-WS 1.0.4 when running on JDK 1.3; for JDK 1.4+ we recommend
6+
using Spring Web Services 1.5.0.

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,7 @@
172172
</plugin>
173173
<plugin>
174174
<artifactId>maven-assembly-plugin</artifactId>
175+
<version>2.2-beta-1</version>
175176
<configuration>
176177
<descriptors>
177178
<descriptor>src/assembly/minimal.xml</descriptor>

readme.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
SPRING WEB SERVICES 1.0.3 (December 2007)
1+
SPRING WEB SERVICES 1.0.4 (March 2008)
22
-------------------------------
33
http://www.springframework.org/spring-ws
44
http://forum.springframework.org/forumdisplay.php?f=39
@@ -14,7 +14,7 @@ XMLBeans, Castor, JiBX and XStream; and a Web service framework that resembles S
1414

1515
2. RELEASE INFO
1616

17-
Spring-WS requires J2SE 1.4 and J2EE 1.4. J2SE 1.5 is required for building. J2SE 1.6 is not yet supported.
17+
Spring-WS requires J2SE 1.3 and J2EE 1.4. J2SE 1.5 is required for building. J2SE 1.6 is supported in version 1.5.0 and higher.
1818

1919
Release contents:
2020

@@ -37,30 +37,30 @@ 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.0.3.jar
40+
* spring-oxm-1.0.4.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.0.3.jar
45+
* spring-oxm-tiger-1.0.4.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.0.3.jar
49+
* spring-ws-core-1.0.4.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]
5353

54-
* spring-ws-core-tiger-1.0.3.jar
54+
* spring-ws-core-tiger-1.0.4.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-security-1.0.3.jar
58+
* spring-ws-security-1.0.4.jar
5959
- Contents: Spring-WS Security integration
6060
- Dependencies: Commons Logging, spring-beans, spring-core, spring-context, spring-ws-core
6161
[Log4J, xmlsdig, xmlsec, XWS-security, Acegi]
6262

63-
* spring-xml-1.0.3.jar
63+
* spring-xml-1.0.4.jar
6464
- Contents: Spring XML utility framework
6565
- Dependencies: Commons Logging, spring-beans, spring-core
6666
[StAX, Xalan, Jaxen]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
</typedef>
1515

1616
<artifact:dependencies pathId="classpath">
17-
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.0.3"/>
17+
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.0.4"/>
1818
<dependency groupId="com.sun.xml.messaging.saaj" artifactId="saaj-impl" version="1.3"/>
1919
<dependency groupId="commons-httpclient" artifactId="commons-httpclient" version="3.0.1"/>
2020
<dependency groupId="commons-httpclient" artifactId="commons-httpclient" version="3.0.1"/>

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.0.3"/>
15+
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.0.4"/>
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>

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.0.3 \
477+
-DarchetypeVersion=1.0.4 \
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.0.3</version>
637+
<version>1.0.4</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
@@ -6,13 +6,13 @@ Downloads
66

77
* Get the latest Spring Web Services releases here
88

9-
* <<Spring-WS 1.5.0 is the current production release>>
9+
* <<Spring-WS 1.5.0 is the current production release (JDK 1.4+)>>
1010

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

13-
* <<Spring-WS 1.0.3 is the previous production release>>
13+
* <<Spring-WS 1.0.4 is the previous production release (JDK 1.3)>>
1414

15-
* {{{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}}
15+
* {{{http://sourceforge.net/project/showfiles.php?group_id=73357&package_id=178569&release_id=590453}Download}} | {{{http://static.springframework.org/spring-ws/docs/1.0.4/changelog.txt}Changelog}} | {{{http://forum.springframework.org/showthread.php?t=52246}Announcement}}
1616

1717

1818
* <<Spring-WS 1.5.1 is the upcoming production release>>

0 commit comments

Comments
 (0)