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[
|
||||
|
||||
@@ -71,11 +71,11 @@ public class DefaultSoapHeaderMapperTests {
|
||||
SoapHeader soapHeader = mock(SoapHeader.class);
|
||||
@SuppressWarnings("unchecked")
|
||||
Iterator<QName> attrIterator = mock(Iterator.class);
|
||||
QName attribute = new QName("http://x", "attr", "x");
|
||||
QName attribute = new QName("https://x", "attr", "x");
|
||||
@SuppressWarnings("unchecked")
|
||||
Iterator<SoapHeaderElement> elementIterator = mock(Iterator.class);
|
||||
SoapHeaderElement soapHeaderElement = mock(SoapHeaderElement.class);
|
||||
QName element = new QName("http://x", "elem", "x");
|
||||
QName element = new QName("https://x", "elem", "x");
|
||||
|
||||
when(soapMessage.getSoapHeader()).thenReturn(soapHeader);
|
||||
when(soapHeader.getAllAttributes()).thenReturn(attrIterator);
|
||||
|
||||
@@ -89,7 +89,7 @@ public class SimpleWebServiceOutboundGatewayTests {
|
||||
|
||||
@Test // INT-1051
|
||||
public void soapActionAndCustomCallback() {
|
||||
String uri = "http://www.example.org";
|
||||
String uri = "https://www.example.org";
|
||||
SimpleWebServiceOutboundGateway gateway = new SimpleWebServiceOutboundGateway(new TestDestinationProvider(uri));
|
||||
final AtomicReference<String> soapActionFromCallback = new AtomicReference<String>();
|
||||
gateway.setRequestCallback(message -> {
|
||||
@@ -137,7 +137,7 @@ public class SimpleWebServiceOutboundGatewayTests {
|
||||
|
||||
@Test
|
||||
public void testAttachments() throws Exception {
|
||||
String uri = "http://www.example.org";
|
||||
String uri = "https://www.example.org";
|
||||
SimpleWebServiceOutboundGateway gateway = new SimpleWebServiceOutboundGateway(uri);
|
||||
gateway.setBeanFactory(mock(BeanFactory.class));
|
||||
|
||||
@@ -197,7 +197,7 @@ public class SimpleWebServiceOutboundGatewayTests {
|
||||
|
||||
@Test
|
||||
public void testDomPoxMessageFactory() throws Exception {
|
||||
String uri = "http://www.example.org";
|
||||
String uri = "https://www.example.org";
|
||||
SimpleWebServiceOutboundGateway gateway = new SimpleWebServiceOutboundGateway(uri);
|
||||
gateway.setBeanFactory(mock(BeanFactory.class));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user