Adding more stuff to site

This commit is contained in:
Arjen Poutsma
2007-01-22 22:25:13 +00:00
parent 61747bafd0
commit 77830515b4
3 changed files with 124 additions and 0 deletions

View File

@@ -0,0 +1,61 @@
---------
Resources
---------
Tutorial
* {{{http://blog.springframework.com/arjen/archives/2006/06/09/tutorial-writing-contract-first-web-services/}Writing Contract-first Web Services}}
SOAP Reference
Below are some resources which help you understand SOAP in general. These are not tied to Spring-WS.
* {{{http://www.w3.org/TR/2000/NOTE-SOAP-20000508/}the SOAP 1.1 specification}}
* {{{http://www.ws-i.org/Profiles/BasicProfile-1.1.html}the WS-Interop basic profile}}, to make sure your Web services are interopable with other platforms
* {{{http://www.w3schools.com/soap/default.asp}SOAP tutorial}}
* {{{http://www.jguru.com/forums/SOAP}the jGuru SOAP forum}}
* {{{http://www.daniweb.com/techtalkforums/forum151.html}another XML and SOAP forum}}
* {{{http://www.amazon.com/gp/product/0131488740}Web Services Platform Architecture}} is a good book on SOAP, WSDL, and all current and upcoming WS-* specifications
XSD Reference
Below are some resources which help you understand XSD schemas in general. These are not tied to Spring-WS.
* {{{http://www.w3.org/XML/Schema}the XSD 1.1 specification}}
* {{{http://www.w3schools.com/schema/default.asp}XSD tutorial}}
* {{{http://www.amazon.com/gp/product/0130655678}Definite XML Schema}}, a good book on XSDs
* {{{http://www.amazon.com/gp/product/0201740958}Essential XML Quick Reference}}, a good reference on XML, XPath, XSL, XSD, and more
WSDL Reference
Below are some resources which help you understand WSDL in general. These are not tied to Spring-WS.
* {{{http://www.w3.org/TR/wsdl}the WSDL 1.1 specification}}
* {{{http://www.ws-i.org/Profiles/BasicProfile-1.1-2004-08-24.html}the WS-I basic profile}}, something every Web service should adhere to
* {{{http://www.w3schools.com/wsdl/default.asp}WSDL tutorial}}
* {{{http://www.amazon.com/gp/product/0131488740}Web Services Platform Architecture}} is a good book on SOAP, WSDL, and all current and upcoming WS-* specifications
WS-Security Reference
Below are some resources which help you understand WS-Security in general. These are not tied to Spring-WS.
* {{{http://www.oasis-open.org/committees/tc_home.php?wg_abbrev=wss}the WS-Security 1.1 specification}}
* {{{http://dev2dev.bea.com/pub/a/2004/05/WS-Security.html}WS-Security and Java: Practical, In-Depth, Message-Based Security}}
* {{{http://www.amazon.com/gp/product/0131488740}Web Services Platform Architecture}} is a good book on SOAP, WSDL, and all current and upcoming WS-* specifications

View File

@@ -0,0 +1,36 @@
---------------------
Spring-WS - Upgrading
---------------------
Upgrading from version 1.0-M2 to 1.0-M3
Several changes were made between version 1.0 Milestone 2 and Milestone 3 of the project. These changes increased
modularity of the code, enhanced unit testing, made package roles clearer, and added compelling alternatives to
adapters and using web.xml security constraints to protect HTTP resources.
Unfortunately, changes to the API and package locations were required. The following should help most casual users
the project update their applications:
* MessageContextFactory
The MessageContextFactory has been refactored into the WebServiceMessageFactory:
* If you used AxiomSoapMessageContextFactory before, replace it with AxiomSoapMessageFactory.
* If you used SaajSoapMessageContextFactory before, replace with SaajSoapMessageFactory.
* MessageDispatcher
* The MessageDispatcher has been moved to the EndpointInvocationChain to org.springframework.ws.server package.
* The SoapMessageDispatcher has been moved to the EndpointInvocationChain to org.springframework.ws.soap.server
package.
* Endpoint interceptors
* All EndpointInterceptors in org.springframework.ws.endpoint.interceptor have been moved to org.springframework.ws.server.endpoint.interceptor
* All EndpointInterceptors in org.springframework.ws.soap.endpoint.interceptor have been moved to org.springframework.ws.soap.server.endpoint.interceptor
*

27
src/site/site.xml Normal file
View File

@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<project name="Spring Web Services">
<bannerLeft>
<name>Spring Web Services</name>
<href>http://www.springframework.org/spring-ws</href>
</bannerLeft>
<body>
<links>
<item name="Spring Framework" href="http://www.springframework.org" />
<item name="Spring Web Services" href="http://www.springframework.org/spring-ws" />
</links>
<menu name="Documentation">
<item name="Upgrading" href="upgrading.html"/>
<item name="Resources" href="resources.html"/>
</menu>
<menu name="Support">
<item name="Support Forums" href="http://forum.springframework.org/forumdisplay.php?f=39"/>
<item name="JIRA" href="http://opensource.atlassian.com/projects/spring/browse/SWS"/>
</menu>
${modules}
${reports}
</body>
</project>