Spring Operator 065fdd82e0 URL Cleanup (#8)
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).

# Fixed URLs

## 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.springframework.org/schema/beans/spring-beans-2.0.xsd with 3 occurrences migrated to:
  https://www.springframework.org/schema/beans/spring-beans-2.0.xsd ([https](https://www.springframework.org/schema/beans/spring-beans-2.0.xsd) result 200).
* http://www.springframework.org/schema/beans/spring-beans-3.0.xsd with 1 occurrences migrated to:
  https://www.springframework.org/schema/beans/spring-beans-3.0.xsd ([https](https://www.springframework.org/schema/beans/spring-beans-3.0.xsd) result 200).
* http://www.springframework.org/schema/beans/spring-beans-3.1.xsd with 5 occurrences migrated to:
  https://www.springframework.org/schema/beans/spring-beans-3.1.xsd ([https](https://www.springframework.org/schema/beans/spring-beans-3.1.xsd) result 200).
* http://www.springframework.org/schema/context/spring-context-2.5.xsd with 1 occurrences migrated to:
  https://www.springframework.org/schema/context/spring-context-2.5.xsd ([https](https://www.springframework.org/schema/context/spring-context-2.5.xsd) result 200).
* http://www.springframework.org/schema/context/spring-context-3.1.xsd with 3 occurrences migrated to:
  https://www.springframework.org/schema/context/spring-context-3.1.xsd ([https](https://www.springframework.org/schema/context/spring-context-3.1.xsd) result 200).
* http://www.springframework.org/schema/jms/spring-jms-3.1.xsd with 1 occurrences migrated to:
  https://www.springframework.org/schema/jms/spring-jms-3.1.xsd ([https](https://www.springframework.org/schema/jms/spring-jms-3.1.xsd) result 200).
* http://www.springframework.org/schema/security/spring-security-3.1.xsd with 1 occurrences migrated to:
  https://www.springframework.org/schema/security/spring-security-3.1.xsd ([https](https://www.springframework.org/schema/security/spring-security-3.1.xsd) result 200).
* http://www.springframework.org/schema/tx/spring-tx-3.1.xsd with 1 occurrences migrated to:
  https://www.springframework.org/schema/tx/spring-tx-3.1.xsd ([https](https://www.springframework.org/schema/tx/spring-tx-3.1.xsd) result 200).
* http://www.springframework.org/schema/web-services/web-services-2.0.xsd with 1 occurrences migrated to:
  https://www.springframework.org/schema/web-services/web-services-2.0.xsd ([https](https://www.springframework.org/schema/web-services/web-services-2.0.xsd) result 200).
* http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd with 1 occurrences migrated to:
  https://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd ([https](https://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd) result 302).
* http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd with 1 occurrences migrated to:
  https://java.sun.com/xml/ns/persistence/persistence_1_0.xsd ([https](https://java.sun.com/xml/ns/persistence/persistence_1_0.xsd) result 302).
* http://java.sun.com/xml/ns/xwss/config with 3 occurrences migrated to:
  https://java.sun.com/xml/ns/xwss/config ([https](https://java.sun.com/xml/ns/xwss/config) result 302).

# Ignored
These URLs were intentionally ignored.

* http://java.sun.com/xml/ns/j2ee with 2 occurrences
* http://java.sun.com/xml/ns/persistence with 2 occurrences
* http://localhost:8080/airline-server/services with 2 occurrences
* http://mycompany.com/hr/schemas with 1 occurrences
* http://www.springframework.org/schema/beans with 18 occurrences
* http://www.springframework.org/schema/context with 8 occurrences
* http://www.springframework.org/schema/jms with 2 occurrences
* http://www.springframework.org/schema/security with 2 occurrences
* http://www.springframework.org/schema/tx with 2 occurrences
* http://www.springframework.org/schema/web-services with 2 occurrences
* http://www.springframework.org/spring-ws/samples/airline/definitions with 1 occurrences
* http://www.springframework.org/spring-ws/samples/airline/schemas/messages with 1 occurrences
* http://www.springframework.org/spring-ws/samples/echo with 1 occurrences
* http://www.springframework.org/spring-ws/samples/stockquote with 1 occurrences
* http://www.w3.org/2001/XMLSchema-instance with 11 occurrences
2019-03-21 05:51:59 -05:00
2019-03-21 05:51:59 -05:00
2019-03-21 05:51:40 -05:00
2019-03-21 05:51:40 -05:00
2019-03-21 05:51:40 -05:00
2019-03-21 05:51:40 -05:00
2019-03-21 05:51:40 -05:00
2013-11-08 12:02:45 +01:00
2014-02-17 15:14:50 +01:00

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.

Description
No description provided
Readme 554 KiB
Languages
Java 97.5%
HTML 2.1%
Shell 0.4%