From 77830515b46c6c66e1decdf1c93ab4a253eed6de Mon Sep 17 00:00:00 2001 From: Arjen Poutsma Date: Mon, 22 Jan 2007 22:25:13 +0000 Subject: [PATCH] Adding more stuff to site --- src/site/apt/resources.apt | 61 ++++++++++++++++++++++++++++++++++++++ src/site/apt/upgrading.apt | 36 ++++++++++++++++++++++ src/site/site.xml | 27 +++++++++++++++++ 3 files changed, 124 insertions(+) create mode 100644 src/site/apt/resources.apt create mode 100644 src/site/apt/upgrading.apt create mode 100644 src/site/site.xml diff --git a/src/site/apt/resources.apt b/src/site/apt/resources.apt new file mode 100644 index 00000000..aa19c089 --- /dev/null +++ b/src/site/apt/resources.apt @@ -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 diff --git a/src/site/apt/upgrading.apt b/src/site/apt/upgrading.apt new file mode 100644 index 00000000..728b4720 --- /dev/null +++ b/src/site/apt/upgrading.apt @@ -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 + + * \ No newline at end of file diff --git a/src/site/site.xml b/src/site/site.xml new file mode 100644 index 00000000..e8bbab20 --- /dev/null +++ b/src/site/site.xml @@ -0,0 +1,27 @@ + + + + Spring Web Services + http://www.springframework.org/spring-ws + + + + + + + + + + + + + + + + ${modules} + ${reports} + + + + + \ No newline at end of file