Updated site

This commit is contained in:
Arjen Poutsma
2007-02-16 00:26:37 +00:00
parent fd8233ae4a
commit 3b5d228313
4 changed files with 49 additions and 10 deletions

View File

@@ -0,0 +1,11 @@
-----------------------------
Spring Web Services Downloads
-----------------------------
Downloads
* Get the latest Spring Web Services releases here
* <<Spring-WS 1.0 M3 is the current development release>>
* {{{http://sourceforge.net/project/showfiles.php?group_id=73357&package_id=178569&release_id=481055}Downloads}} | {{{http://static.springframework.org/spring-ws/docs/1.0-m3/changelog.txt}Changelog}} | {{{http://forum.springframework.org/showthread.php?t=34044}Announcement}}

View File

@@ -0,0 +1,30 @@
-----------------------------
Spring Web Services Snapshots
-----------------------------
Snapshot Builds
These builds are provided for testing and development purposes only. They are built by a Continuum process
automatically using the latest snapshot from Subversion.
The snapshots are deloyed to a Maven2 snapshot repository. To use it, just add the following repository to the POM:
+---------------
<repository>
<id>springframework.org</id>
<name>Springframework Maven SNAPSHOT Repository</name>
<url>http://static.springframework.org/maven2-snapshots/</url>
</repository>
+---------------
Individual dependencies can then by added like so:
+---------------
<dependency>
<groupId>org.springframework.ws</groupId>
<artifactId>spring-ws-core</artifactId>
<version>1.0-m4-SNAPSHOT</version>
</dependency>
+---------------
Additionally, there are {{{http://static.springframework.org/maven2-snapshots/org/springframework/ws/spring-ws/1.0-m4-SNAPSHOT/}zips}} available which contain all jars.

View File

@@ -9,7 +9,7 @@ Frequently Asked Questions
* Java
<<When I run Spring-WS under Java SE 1.4, the resulting SOAP message does not contain valid namespaces. Does Spring-WS work under Java 1.4?>>
** Does Spring-WS work under Java 1.4?
Yes it does, but it requires some work. Java 1.4 is bundled with the older XML parser Crimson, which does not handle
namespaces correctly. Additionally, it is bundled with an older version of Xalan, which also has problems.
@@ -22,13 +22,13 @@ Frequently Asked Questions
* SAAJ
<<What is SAAJ?>>
** What is SAAJ?
SAAJ is the SOAP with Attachments API for Java. Previously, it has been part of JAXM, but it has been released as a
seperate API as part of the {{{http://java.sun.com/webservices/jwsdp/index.jsp}Java Web Service Developer Pack}},
and also as part of J2EE 1.4. SAAJ is generally known as the package <<<javax.xml.soap>>>.
<<What version of SAAJ does my application server support?>>
** What version of SAAJ does my application server support?
See below:
@@ -43,13 +43,7 @@ Frequently Asked Questions
Additionally, Java SE 6 includes SAAJ 1.3.
<<When I run a Spring-WS application that uses SAAJ, I get the following stack trace:>>
+---------------
java.lang.NoSuchMethodError: javax.xml.soap.MessageFactory.newInstance(Ljava/lang/String;)Ljavax/xml/soap/MessageFactory;
+---------------
<<What can I do about it?>>
** I get a <<<java.lang.NoSuchMethodError: javax.xml.soap.MessageFactory.newInstance(Ljava/lang/String;)Ljavax/xml/soap/MessageFactory;>>>
Like most J2EE libraries, SAAJ consists of two parts: the API that consists of interfaces (<<<saaj-api.jar>>>),
and the implementation (<<<saaj-impl.jar>>>).

View File

@@ -10,6 +10,10 @@
<item name="Spring Framework" href="http://www.springframework.org/" />
<item name="Spring Web Services" href="http://www.springframework.org/spring-ws/" />
</links>
<menu name="Downloads">
<item name="Releases" href="downloads/releases.html"/>
<item name="Snapshots" href="downloads/snapshots.html"/>
</menu>
<menu name="Documentation">
<item name="FAQ" href="faq.html"/>
<item name="Upgrading" href="upgrading.html"/>