This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # HTTP URLs that Could Not Be Fixed These URLs were unable to be fixed. Please review them to see if they can be manually resolved. * [ ] http://schemas.xmlsoap.org/wsdl/ (200) with 3 occurrences could not be migrated: ([https](https://schemas.xmlsoap.org/wsdl/) result AnnotatedConnectException). * [ ] http://schemas.xmlsoap.org/wsdl/soap/ (200) with 3 occurrences could not be migrated: ([https](https://schemas.xmlsoap.org/wsdl/soap/) result AnnotatedConnectException). * [ ] http://wsf.cdyne.com/WeatherWS/Weather.asmx (200) with 1 occurrences could not be migrated: ([https](https://wsf.cdyne.com/WeatherWS/Weather.asmx) result ConnectTimeoutException). * [ ] http://schemas.xmlsoap.org/soap/http (301) with 3 occurrences could not be migrated: ([https](https://schemas.xmlsoap.org/soap/http) result AnnotatedConnectException). * [ ] http://mycompany.com/hr/definitions (404) with 1 occurrences could not be migrated: ([https](https://mycompany.com/hr/definitions) result ConnectTimeoutException). # Fixed URLs ## Fixed But Review Recommended These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request or http redirected to an https URL, so they were migrated. Your review is recommended. * [ ] http://wiki.cdyne.com/index.php/CDYNE_Weather (301) with 1 occurrences migrated to: https://wiki.cdyne.com/index.php/CDYNE_Weather ([https](https://wiki.cdyne.com/index.php/CDYNE_Weather) result SSLHandshakeException). * [ ] http://ws.cdyne.com/WeatherWS/GetCityForecastByZIP (404) with 1 occurrences migrated to: https://ws.cdyne.com/WeatherWS/GetCityForecastByZIP ([https](https://ws.cdyne.com/WeatherWS/GetCityForecastByZIP) result 404). ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * [ ] http://www.w3.org/2005/05/xmlmime with 2 occurrences migrated to: https://www.w3.org/2005/05/xmlmime ([https](https://www.w3.org/2005/05/xmlmime) result 200). * [ ] http://projects.spring.io/spring-ws with 7 occurrences migrated to: https://projects.spring.io/spring-ws ([https](https://projects.spring.io/spring-ws) result 301). * [ ] http://www.w3.org/2006/05/addressing/wsdl with 1 occurrences migrated to: https://www.w3.org/2006/05/addressing/wsdl ([https](https://www.w3.org/2006/05/addressing/wsdl) result 301). # Ignored These URLs were intentionally ignored. * http://java.sun.com/jsp/jstl/core with 5 occurrences * http://localhost:8080/StockService with 3 occurrences * http://localhost:8080/airline-server/services with 2 occurrences * http://localhost:8080/echo-server/services with 2 occurrences * http://localhost:8080/echo/services with 1 occurrences * http://localhost:8080/mtom-server/ with 2 occurrences * http://localhost:8080/mtom-server/services with 2 occurrences * http://localhost:8080/tutorial/holiday.wsdl with 2 occurrences * http://mycompany.com/hr/schemas with 3 occurrences * http://www.joda.org/joda/time/tags with 2 occurrences * http://www.springframework.org/spring-ws/samples/airline/definitions with 3 occurrences * http://www.springframework.org/spring-ws/samples/airline/schemas/messages with 11 occurrences * http://www.springframework.org/spring-ws/samples/airline/schemas/types with 10 occurrences * http://www.springframework.org/spring-ws/samples/echo with 3 occurrences * http://www.springframework.org/spring-ws/samples/mtom with 11 occurrences * http://www.springframework.org/spring-ws/samples/stockquote with 5 occurrences * http://www.springframework.org/spring-ws/samples/stockquote/StockService/GetQuote with 3 occurrences * http://www.springframework.org/spring-ws/samples/stockquote/StockService/Quotes with 2 occurrences * http://www.springframework.org/tags with 1 occurrences * http://www.w3.org/2001/XMLSchema with 9 occurrences
Spring Web Services Samples
Spring Web Services is a product of the Spring community focused on creating document-driven, contract-first Web services. This repository contains sample projects illustrating usage of Spring Web Services.
Sample Applications
The following sample applications demonstrate the capabilities of Spring Web Services. See the README within each sample project for more information and additional instructions.
- airline - a complete airline sample that shows both Web Service and O/X Mapping functionality in a complete application
- echo - a simple sample that shows a bare-bones Echo service
- mtom - shows how to use MTOM and JAXB2 marshalling
- stockquote - shows how to use WS-Addressing and the Java 6 HTTP Server
- tutorial - contains the code from the Spring-WS tutorial
- weather - shows how to connect to a public SOAP service
Running the Server
Most of the sample apps can be built and run using the following commands from
within the server folder.
```sh
$ ./gradlew tomcatRun
```
Or alternatively, run the following to create war archive which can be deployed in any Web Container.
```sh
$ ./gradlew war
```
Running the Client(s)
Most of the sample apps have a separate client directory containing clients
that connect to the server. You can run these clients by using the following
command from within each of client subdirectories:
```sh
$ gradle runClient
```
License
Spring Web Services is released under version 2.0 of the Apache License.