Fix HTTP urls to HTTPS
* Do not fix urls for the `http://apache.org/xml/features` when we configure XML components * Do not fix urls for localhost and fake links in tests * Fix all the dead links in docs
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
<xsd:import namespace="http://www.springframework.org/schema/beans"/>
|
||||
<xsd:import namespace="http://www.springframework.org/schema/tool"/>
|
||||
<xsd:import namespace="http://www.springframework.org/schema/integration"
|
||||
schemaLocation="http://www.springframework.org/schema/integration/spring-integration-5.2.xsd"/>
|
||||
schemaLocation="https://www.springframework.org/schema/integration/spring-integration-5.2.xsd"/>
|
||||
|
||||
<xsd:annotation>
|
||||
<xsd:documentation><![CDATA[
|
||||
|
||||
@@ -196,7 +196,7 @@ public class WebSocketServerTests {
|
||||
public IntegrationWebSocketContainer clientWebSocketContainer() {
|
||||
ClientWebSocketContainer clientWebSocketContainer =
|
||||
new ClientWebSocketContainer(webSocketClient(), server().getWsBaseUrl() + "/ws");
|
||||
clientWebSocketContainer.setOrigin("http://foo.com");
|
||||
clientWebSocketContainer.setOrigin("http://www.foo.com/");
|
||||
return clientWebSocketContainer;
|
||||
}
|
||||
|
||||
@@ -271,7 +271,7 @@ public class WebSocketServerTests {
|
||||
return new ServerWebSocketContainer("/ws")
|
||||
.setHandshakeHandler(handshakeHandler())
|
||||
.setDecoratorFactories(testWebSocketHandlerDecoratorFactory())
|
||||
.setAllowedOrigins("http://foo.com")
|
||||
.setAllowedOrigins("http://www.foo.com/")
|
||||
.withSockJs();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user