This commit is contained in:
14
readme.txt
14
readme.txt
@@ -1,4 +1,4 @@
|
||||
SPRING WEB SERVICES 1.0-RC2 (June 2007)
|
||||
SPRING WEB SERVICES 1.0.0 (August 2007)
|
||||
-------------------------------
|
||||
http://www.springframework.org/spring-ws
|
||||
http://forum.springframework.org/forumdisplay.php?f=39
|
||||
@@ -37,30 +37,30 @@ The following distinct jar files are included in the distribution. This list spe
|
||||
third-party dependencies. Libraries in [brackets] are optional, i.e. just necessary for certain functionality. For an
|
||||
exact list of Spring-WS project dependencies see the respective Maven2 pom.xml files.
|
||||
|
||||
* spring-oxm-1.0-rc2.jar
|
||||
* spring-oxm-1.0.0.jar
|
||||
- Contents: The Spring Object/XML Mapping framework
|
||||
- Dependencies: Commons Logging, spring-beans, spring-core
|
||||
[Log4J, JAXB 1, Castor, XMLBeans, StAX, JiBX, XStream]
|
||||
|
||||
* spring-oxm-tiger-1.0-rc2.jar
|
||||
* spring-oxm-tiger-1.0.0.jar
|
||||
- Contents: The Spring Object/XML Mapping framework for Java 5
|
||||
- Dependencies: Commons Logging, spring-beans, spring-core, JAXB 2
|
||||
|
||||
* spring-ws-core-1.0-rc2.jar
|
||||
* spring-ws-core-1.0.0.jar
|
||||
- Contents: The Spring-WS Core
|
||||
- Dependencies: Commons Logging, spring-beans, spring-core, spring-context, spring-oxm
|
||||
[Log4J, spring-web, spring-webmvc, SAAJ, JDOM, StAX, Servlet API, JAF, Axiom, DOM4J, XOM]
|
||||
|
||||
* spring-ws-core-tiger-1.0-rc2.jar
|
||||
* spring-ws-core-tiger-1.0.0.jar
|
||||
- Contents: The Spring-WS Core for Java 5
|
||||
- Dependencies: Commons Logging, spring-beans, spring-core, spring-context, spring-core
|
||||
|
||||
* spring-ws-security-1.0-rc2.jar
|
||||
* spring-ws-security-1.0.0.jar
|
||||
- Contents: Spring-WS Security integration
|
||||
- Dependencies: Commons Logging, spring-beans, spring-core, spring-context, spring-ws-core
|
||||
[Log4J, xmlsdig, xmlsec, XWS-security, Acegi]
|
||||
|
||||
* spring-xml-1.0-rc2.jar
|
||||
* spring-xml-1.0.0.jar
|
||||
- Contents: Spring XML utility framework
|
||||
- Dependencies: Commons Logging, spring-beans, spring-core
|
||||
[StAX, Xalan, Jaxen]
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<author email="apoutsma@interface21.com">Arjen Poutsma</author>
|
||||
</properties>
|
||||
<body>
|
||||
<release version="1.0">
|
||||
<release version="1.0" date="2007-08-17">
|
||||
<action dev="poutsma" type="fix" issue="SWS-150">Don't close the ServletInputStream in AbstractWebServiceConnection.receive</action>
|
||||
<action dev="poutsma" type="fix" issue="SWS-151">IllegalStateException in Saaj11Implementation.removeContents()</action>
|
||||
<action dev="poutsma" type="fix" issue="SWS-152">NoSuchMethodError: SaajUtils.toName()</action>
|
||||
@@ -19,7 +19,7 @@
|
||||
<action dev="poutsma" type="fix" issue="SWS-141">Minor Documentation Bug: org.springframework.xml.transform.ResourceSource</action>
|
||||
<action dev="poutsma" types="fix" issue="SWS-142">AxiomSoapFaultDetailElementIterator does not consider whitespace nodes.</action>
|
||||
</release>
|
||||
<release version="1.0-rc2">
|
||||
<release version="1.0-rc2" date="2007-06-15">
|
||||
<action dev="poutsma" types="add">Added MarshallingSource, a TrAX Source that uses a Marshaller.</action>
|
||||
<action dev="poutsma" type="update" issue="SWS-134">Reduce the number of overloaded methods on the WebServiceTemplate class to aid comprehension.</action>
|
||||
<action dev="poutsma" type="add" issue="SWS-124">Allow specifying names of message factory and message receiver in MessageDispatcherServlet</action>
|
||||
|
||||
@@ -634,7 +634,7 @@ public class HolidayEndpoint extends AbstractJDomPayloadEndpoint {
|
||||
<dependency>
|
||||
<groupId>org.springframework.ws</groupId>
|
||||
<artifactId>spring-ws-core</artifactId>
|
||||
<version>1.0-rc2</version>
|
||||
<version>1.0.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>jdom</groupId>
|
||||
|
||||
@@ -6,11 +6,11 @@ Downloads
|
||||
|
||||
* Get the latest Spring Web Services releases here
|
||||
|
||||
* <<Spring-WS 1.0 RC2 is the current development release>>
|
||||
* <<Spring-WS 1.0.0 is the current production release>>
|
||||
|
||||
* {{{http://sourceforge.net/project/showfiles.php?group_id=73357&package_id=178569&release_id=516288}Downloads}} | {{{http://static.springframework.org/spring-ws/docs/1.0-rc2/changelog.txt}Changelog}} | {{{http://forum.springframework.org/showthread.php?t=40148}Announcement}}
|
||||
* {{{http://sourceforge.net/project/showfiles.php?group_id=73357&package_id=178569&release_id=532966}Download}} | {{{http://static.springframework.org/spring-ws/docs/1.0.0/changelog.txt}Changelog}} | {{{http://forum.springframework.org/showthread.php?t=42788}Announcement}}
|
||||
|
||||
|
||||
* <<Spring-WS 1.0 RC3 is the upcoming development release>>
|
||||
* <<Spring-WS 1.0.1 is the upcoming development release>>
|
||||
|
||||
* {{{snapshots.html}Download nighly snapshots}}
|
||||
|
||||
@@ -23,10 +23,10 @@ Snapshot Builds
|
||||
<dependency>
|
||||
<groupId>org.springframework.ws</groupId>
|
||||
<artifactId>spring-ws-core</artifactId>
|
||||
<version>1.0-rc3-SNAPSHOT</version>
|
||||
<version>1.0.1-SNAPSHOT</version>
|
||||
</dependency>
|
||||
+---------------
|
||||
|
||||
Additionally, there are
|
||||
{{{http://s3browse.com/explore/maven.springframework.org/snapshot/org/springframework/ws/spring-ws/1.0-rc3-SNAPSHOT/}zips}}
|
||||
{{{http://s3browse.com/explore/maven.springframework.org/snapshot/org/springframework/ws/spring-ws/1.0.1-SNAPSHOT/}zips}}
|
||||
available which contain all jars. Make sure to click 'Next >' a couple of times to get the most recent snapshots.
|
||||
|
||||
Reference in New Issue
Block a user