Skip to content

Commit 7783051

Browse files
committed
Adding more stuff to site
1 parent 61747ba commit 7783051

File tree

3 files changed

+124
-0
lines changed

3 files changed

+124
-0
lines changed

src/site/apt/resources.apt

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
---------
2+
Resources
3+
---------
4+
5+
Tutorial
6+
7+
* {{{http://blog.springframework.com/arjen/archives/2006/06/09/tutorial-writing-contract-first-web-services/}Writing Contract-first Web Services}}
8+
9+
SOAP Reference
10+
11+
Below are some resources which help you understand SOAP in general. These are not tied to Spring-WS.
12+
13+
14+
* {{{http://www.w3.org/TR/2000/NOTE-SOAP-20000508/}the SOAP 1.1 specification}}
15+
16+
* {{{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
17+
18+
* {{{http://www.w3schools.com/soap/default.asp}SOAP tutorial}}
19+
20+
* {{{http://www.jguru.com/forums/SOAP}the jGuru SOAP forum}}
21+
22+
* {{{http://www.daniweb.com/techtalkforums/forum151.html}another XML and SOAP forum}}
23+
24+
* {{{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
25+
26+
XSD Reference
27+
28+
Below are some resources which help you understand XSD schemas in general. These are not tied to Spring-WS.
29+
30+
31+
* {{{http://www.w3.org/XML/Schema}the XSD 1.1 specification}}
32+
33+
* {{{http://www.w3schools.com/schema/default.asp}XSD tutorial}}
34+
35+
* {{{http://www.amazon.com/gp/product/0130655678}Definite XML Schema}}, a good book on XSDs
36+
37+
* {{{http://www.amazon.com/gp/product/0201740958}Essential XML Quick Reference}}, a good reference on XML, XPath, XSL, XSD, and more
38+
39+
WSDL Reference
40+
41+
Below are some resources which help you understand WSDL in general. These are not tied to Spring-WS.
42+
43+
44+
* {{{http://www.w3.org/TR/wsdl}the WSDL 1.1 specification}}
45+
46+
* {{{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
47+
48+
* {{{http://www.w3schools.com/wsdl/default.asp}WSDL tutorial}}
49+
50+
* {{{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
51+
52+
WS-Security Reference
53+
54+
Below are some resources which help you understand WS-Security in general. These are not tied to Spring-WS.
55+
56+
57+
* {{{http://www.oasis-open.org/committees/tc_home.php?wg_abbrev=wss}the WS-Security 1.1 specification}}
58+
59+
* {{{http://dev2dev.bea.com/pub/a/2004/05/WS-Security.html}WS-Security and Java: Practical, In-Depth, Message-Based Security}}
60+
61+
* {{{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

src/site/apt/upgrading.apt

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---------------------
2+
Spring-WS - Upgrading
3+
---------------------
4+
5+
Upgrading from version 1.0-M2 to 1.0-M3
6+
7+
Several changes were made between version 1.0 Milestone 2 and Milestone 3 of the project. These changes increased
8+
modularity of the code, enhanced unit testing, made package roles clearer, and added compelling alternatives to
9+
adapters and using web.xml security constraints to protect HTTP resources.
10+
11+
Unfortunately, changes to the API and package locations were required. The following should help most casual users
12+
the project update their applications:
13+
14+
15+
* MessageContextFactory
16+
17+
The MessageContextFactory has been refactored into the WebServiceMessageFactory:
18+
19+
* If you used AxiomSoapMessageContextFactory before, replace it with AxiomSoapMessageFactory.
20+
21+
* If you used SaajSoapMessageContextFactory before, replace with SaajSoapMessageFactory.
22+
23+
* MessageDispatcher
24+
25+
* The MessageDispatcher has been moved to the EndpointInvocationChain to org.springframework.ws.server package.
26+
27+
* The SoapMessageDispatcher has been moved to the EndpointInvocationChain to org.springframework.ws.soap.server
28+
package.
29+
30+
* Endpoint interceptors
31+
32+
* All EndpointInterceptors in org.springframework.ws.endpoint.interceptor have been moved to org.springframework.ws.server.endpoint.interceptor
33+
34+
* All EndpointInterceptors in org.springframework.ws.soap.endpoint.interceptor have been moved to org.springframework.ws.soap.server.endpoint.interceptor
35+
36+
*

src/site/site.xml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?xml version="1.0" encoding="ISO-8859-1"?>
2+
<project name="Spring Web Services">
3+
<bannerLeft>
4+
<name>Spring Web Services</name>
5+
<href>http://www.springframework.org/spring-ws</href>
6+
</bannerLeft>
7+
8+
<body>
9+
<links>
10+
<item name="Spring Framework" href="http://www.springframework.org" />
11+
<item name="Spring Web Services" href="http://www.springframework.org/spring-ws" />
12+
</links>
13+
<menu name="Documentation">
14+
<item name="Upgrading" href="upgrading.html"/>
15+
<item name="Resources" href="resources.html"/>
16+
</menu>
17+
<menu name="Support">
18+
<item name="Support Forums" href="http://forum.springframework.org/forumdisplay.php?f=39"/>
19+
<item name="JIRA" href="http://opensource.atlassian.com/projects/spring/browse/SWS"/>
20+
</menu>
21+
${modules}
22+
${reports}
23+
</body>
24+
25+
26+
27+
</project>

0 commit comments

Comments
 (0)