diff --git a/settings.xml b/settings.xml index cf86357e..829f33c3 100644 --- a/settings.xml +++ b/settings.xml @@ -1,7 +1,7 @@ + https://maven.apache.org/xsd/settings-1.0.0.xsd"> diff --git a/spring-ws-core/src/test/java/org/springframework/ws/soap/addressing/server/AbstractAddressingInterceptorTestCase.java b/spring-ws-core/src/test/java/org/springframework/ws/soap/addressing/server/AbstractAddressingInterceptorTestCase.java index a1a169fd..c5b0bfc7 100644 --- a/spring-ws-core/src/test/java/org/springframework/ws/soap/addressing/server/AbstractAddressingInterceptorTestCase.java +++ b/spring-ws-core/src/test/java/org/springframework/ws/soap/addressing/server/AbstractAddressingInterceptorTestCase.java @@ -20,6 +20,9 @@ import java.net.URI; import java.util.Iterator; import java.util.Locale; +import org.junit.Before; +import org.junit.Test; + import org.springframework.ws.context.DefaultMessageContext; import org.springframework.ws.context.MessageContext; import org.springframework.ws.soap.SoapHeaderElement; @@ -32,12 +35,8 @@ import org.springframework.ws.soap.saaj.SaajSoapMessageFactory; import org.springframework.ws.transport.WebServiceConnection; import org.springframework.ws.transport.WebServiceMessageSender; -import org.junit.Before; -import org.junit.Test; - import static org.easymock.EasyMock.*; -import static org.junit.Assert.assertFalse; -import static org.junit.Assert.assertTrue; +import static org.junit.Assert.*; public abstract class AbstractAddressingInterceptorTestCase extends AbstractWsAddressingTestCase { @@ -186,7 +185,7 @@ public abstract class AbstractAddressingInterceptorTestCase extends AbstractWsAd URI messageId = new URI("uid:1234"); expect(strategyMock.newMessageId((SoapMessage) context.getResponse())).andReturn(messageId); - URI uri = new URI("http://example.com/business/client1"); + URI uri = new URI("https://example.com/business/client1"); expect(senderMock.supports(uri)).andReturn(true); expect(senderMock.createConnection(uri)).andReturn(connectionMock); connectionMock.send(response); diff --git a/spring-ws-core/src/test/java/org/springframework/ws/soap/addressing/server/AnnotationActionMethodEndpointMappingTest.java b/spring-ws-core/src/test/java/org/springframework/ws/soap/addressing/server/AnnotationActionMethodEndpointMappingTest.java index 13ab060b..792f1ad4 100644 --- a/spring-ws-core/src/test/java/org/springframework/ws/soap/addressing/server/AnnotationActionMethodEndpointMappingTest.java +++ b/spring-ws-core/src/test/java/org/springframework/ws/soap/addressing/server/AnnotationActionMethodEndpointMappingTest.java @@ -16,9 +16,17 @@ package org.springframework.ws.soap.addressing.server; +import java.io.IOException; +import java.io.InputStream; +import javax.xml.soap.MessageFactory; +import javax.xml.soap.MimeHeaders; +import javax.xml.soap.SOAPConstants; +import javax.xml.soap.SOAPException; + import org.custommonkey.xmlunit.XMLUnit; import org.junit.Before; import org.junit.Test; + import org.springframework.context.support.StaticApplicationContext; import org.springframework.ws.context.DefaultMessageContext; import org.springframework.ws.context.MessageContext; @@ -32,13 +40,6 @@ import org.springframework.ws.soap.addressing.server.annotation.Address; import org.springframework.ws.soap.saaj.SaajSoapMessage; import org.springframework.ws.soap.saaj.SaajSoapMessageFactory; -import javax.xml.soap.MessageFactory; -import javax.xml.soap.MimeHeaders; -import javax.xml.soap.SOAPConstants; -import javax.xml.soap.SOAPException; -import java.io.IOException; -import java.io.InputStream; - import static org.junit.Assert.*; /** @@ -97,7 +98,7 @@ public class AnnotationActionMethodEndpointMappingTest { @Address("mailto:joe@fabrikam123.example") private static class MyEndpoint { - @Action("http://fabrikam123.example/mail/Delete") + @Action("https://fabrikam123.example/mail/Delete") public void doIt() { } diff --git a/spring-ws-core/src/test/resources/org/springframework/ws/config/annotationDrivenBeanDefinitionParserTest.xml b/spring-ws-core/src/test/resources/org/springframework/ws/config/annotationDrivenBeanDefinitionParserTest.xml index e5c4b7ea..0faa73f5 100644 --- a/spring-ws-core/src/test/resources/org/springframework/ws/config/annotationDrivenBeanDefinitionParserTest.xml +++ b/spring-ws-core/src/test/resources/org/springframework/ws/config/annotationDrivenBeanDefinitionParserTest.xml @@ -2,8 +2,8 @@ + xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-3.0.xsd + http://www.springframework.org/schema/web-services https://www.springframework.org/schema/web-services/web-services-2.0.xsd"> diff --git a/spring-ws-core/src/test/resources/org/springframework/ws/config/interceptorsBeanDefinitionParserInjectionTest.xml b/spring-ws-core/src/test/resources/org/springframework/ws/config/interceptorsBeanDefinitionParserInjectionTest.xml index 0fa8b8b8..9c673362 100644 --- a/spring-ws-core/src/test/resources/org/springframework/ws/config/interceptorsBeanDefinitionParserInjectionTest.xml +++ b/spring-ws-core/src/test/resources/org/springframework/ws/config/interceptorsBeanDefinitionParserInjectionTest.xml @@ -3,9 +3,9 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:sws="http://www.springframework.org/schema/web-services" xmlns:context="http://www.springframework.org/schema/context" - xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd - http://www.springframework.org/schema/web-services http://www.springframework.org/schema/web-services/web-services.xsd - http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd"> + xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-3.1.xsd + http://www.springframework.org/schema/web-services https://www.springframework.org/schema/web-services/web-services.xsd + http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context-3.1.xsd"> diff --git a/spring-ws-core/src/test/resources/org/springframework/ws/config/interceptorsBeanDefinitionParserOrderTest.xml b/spring-ws-core/src/test/resources/org/springframework/ws/config/interceptorsBeanDefinitionParserOrderTest.xml index ac55bffe..edc2ab32 100644 --- a/spring-ws-core/src/test/resources/org/springframework/ws/config/interceptorsBeanDefinitionParserOrderTest.xml +++ b/spring-ws-core/src/test/resources/org/springframework/ws/config/interceptorsBeanDefinitionParserOrderTest.xml @@ -3,8 +3,8 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" xmlns:sws="http://www.springframework.org/schema/web-services" - xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd - http://www.springframework.org/schema/web-services http://www.springframework.org/schema/web-services/web-services.xsd"> + xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-3.0.xsd + http://www.springframework.org/schema/web-services https://www.springframework.org/schema/web-services/web-services.xsd"> diff --git a/spring-ws-core/src/test/resources/org/springframework/ws/config/interceptorsBeanDefinitionParserTest.xml b/spring-ws-core/src/test/resources/org/springframework/ws/config/interceptorsBeanDefinitionParserTest.xml index ce55385b..4ab2ad25 100644 --- a/spring-ws-core/src/test/resources/org/springframework/ws/config/interceptorsBeanDefinitionParserTest.xml +++ b/spring-ws-core/src/test/resources/org/springframework/ws/config/interceptorsBeanDefinitionParserTest.xml @@ -2,8 +2,8 @@ + xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-3.0.xsd + http://www.springframework.org/schema/web-services https://www.springframework.org/schema/web-services/web-services.xsd"> diff --git a/spring-ws-core/src/test/resources/org/springframework/ws/config/webServiceNamespaceHandlerTest.xml b/spring-ws-core/src/test/resources/org/springframework/ws/config/webServiceNamespaceHandlerTest.xml index 14f40919..7aea0b4d 100644 --- a/spring-ws-core/src/test/resources/org/springframework/ws/config/webServiceNamespaceHandlerTest.xml +++ b/spring-ws-core/src/test/resources/org/springframework/ws/config/webServiceNamespaceHandlerTest.xml @@ -2,9 +2,9 @@ + http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-2.0.xsd + http://www.springframework.org/schema/tx https://www.springframework.org/schema/beans/spring-tx-2.0.xsd + http://www.springframework.org/schema/web-services https://www.springframework.org/schema/web-services/web-services-1.5.xsd"> diff --git a/spring-ws-core/src/test/resources/org/springframework/ws/config/webServicesNamespaceHandlerTest-tiger.xml b/spring-ws-core/src/test/resources/org/springframework/ws/config/webServicesNamespaceHandlerTest-tiger.xml index 0b33cb19..a8ae34e7 100644 --- a/spring-ws-core/src/test/resources/org/springframework/ws/config/webServicesNamespaceHandlerTest-tiger.xml +++ b/spring-ws-core/src/test/resources/org/springframework/ws/config/webServicesNamespaceHandlerTest-tiger.xml @@ -2,8 +2,8 @@ + http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-2.0.xsd + http://www.springframework.org/schema/web-services https://www.springframework.org/schema/web-services/web-services-1.5.xsd"> diff --git a/spring-ws-core/src/test/resources/org/springframework/ws/config/wsdlBeanDefinitionParserTest.xml b/spring-ws-core/src/test/resources/org/springframework/ws/config/wsdlBeanDefinitionParserTest.xml index d091f7fd..6af6c8f3 100644 --- a/spring-ws-core/src/test/resources/org/springframework/ws/config/wsdlBeanDefinitionParserTest.xml +++ b/spring-ws-core/src/test/resources/org/springframework/ws/config/wsdlBeanDefinitionParserTest.xml @@ -2,8 +2,8 @@ + xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-3.0.xsd + http://www.springframework.org/schema/web-services https://www.springframework.org/schema/web-services/web-services-2.0.xsd"> diff --git a/spring-ws-core/src/test/resources/org/springframework/ws/server/endpoint/mapping/bridged-method-registration.xml b/spring-ws-core/src/test/resources/org/springframework/ws/server/endpoint/mapping/bridged-method-registration.xml index a5d75fd3..43560b75 100644 --- a/spring-ws-core/src/test/resources/org/springframework/ws/server/endpoint/mapping/bridged-method-registration.xml +++ b/spring-ws-core/src/test/resources/org/springframework/ws/server/endpoint/mapping/bridged-method-registration.xml @@ -2,8 +2,8 @@ + xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-2.5.xsd + http://www.springframework.org/schema/web-services https://www.springframework.org/schema/web-services/web-services-2.0.xsd"> diff --git a/spring-ws-core/src/test/resources/org/springframework/ws/server/endpoint/mapping/cglib-proxy-registration.xml b/spring-ws-core/src/test/resources/org/springframework/ws/server/endpoint/mapping/cglib-proxy-registration.xml index c140b153..ea899a55 100644 --- a/spring-ws-core/src/test/resources/org/springframework/ws/server/endpoint/mapping/cglib-proxy-registration.xml +++ b/spring-ws-core/src/test/resources/org/springframework/ws/server/endpoint/mapping/cglib-proxy-registration.xml @@ -3,9 +3,9 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:sws="http://www.springframework.org/schema/web-services" - xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd - http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd - http://www.springframework.org/schema/web-services http://www.springframework.org/schema/web-services/web-services-2.0.xsd"> + xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-2.5.xsd + http://www.springframework.org/schema/aop https://www.springframework.org/schema/aop/spring-aop-2.5.xsd + http://www.springframework.org/schema/web-services https://www.springframework.org/schema/web-services/web-services-2.0.xsd"> diff --git a/spring-ws-core/src/test/resources/org/springframework/ws/server/endpoint/mapping/jdk-proxy-registration.xml b/spring-ws-core/src/test/resources/org/springframework/ws/server/endpoint/mapping/jdk-proxy-registration.xml index 0ef33fe6..90199567 100644 --- a/spring-ws-core/src/test/resources/org/springframework/ws/server/endpoint/mapping/jdk-proxy-registration.xml +++ b/spring-ws-core/src/test/resources/org/springframework/ws/server/endpoint/mapping/jdk-proxy-registration.xml @@ -3,9 +3,9 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:sws="http://www.springframework.org/schema/web-services" - xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd - http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd - http://www.springframework.org/schema/web-services http://www.springframework.org/schema/web-services/web-services-2.0.xsd"> + xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-2.5.xsd + http://www.springframework.org/schema/aop https://www.springframework.org/schema/aop/spring-aop-2.5.xsd + http://www.springframework.org/schema/web-services https://www.springframework.org/schema/web-services/web-services-2.0.xsd"> diff --git a/spring-ws-core/src/test/resources/org/springframework/ws/server/endpoint/mapping/payloadRootAnnotationMethodEndpointMapping.xml b/spring-ws-core/src/test/resources/org/springframework/ws/server/endpoint/mapping/payloadRootAnnotationMethodEndpointMapping.xml index 1adfd72c..b8f7cb71 100644 --- a/spring-ws-core/src/test/resources/org/springframework/ws/server/endpoint/mapping/payloadRootAnnotationMethodEndpointMapping.xml +++ b/spring-ws-core/src/test/resources/org/springframework/ws/server/endpoint/mapping/payloadRootAnnotationMethodEndpointMapping.xml @@ -3,9 +3,9 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:sws="http://www.springframework.org/schema/web-services" - xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd - http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd - http://www.springframework.org/schema/web-services http://www.springframework.org/schema/web-services/web-services-2.0.xsd"> + xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-2.5.xsd + http://www.springframework.org/schema/aop https://www.springframework.org/schema/aop/spring-aop-2.5.xsd + http://www.springframework.org/schema/web-services https://www.springframework.org/schema/web-services/web-services-2.0.xsd"> diff --git a/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/10/request-anonymous.xml b/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/10/request-anonymous.xml index e32c0293..39236980 100644 --- a/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/10/request-anonymous.xml +++ b/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/10/request-anonymous.xml @@ -1,6 +1,6 @@ - http://example.com/someuniquestring + https://example.com/someuniquestring http://www.w3.org/2005/08/addressing/anonymous diff --git a/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/10/request-no-message-id.xml b/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/10/request-no-message-id.xml index 8a74f50f..b72266c7 100644 --- a/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/10/request-no-message-id.xml +++ b/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/10/request-no-message-id.xml @@ -1,8 +1,8 @@ - + - http://example.com/business/client1 + https://example.com/business/client1 mailto:fabrikam@example.com http://example.com/fabrikam/mail/Delete diff --git a/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/10/request-no-reply-to.xml b/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/10/request-no-reply-to.xml index 4daaac54..601074a1 100644 --- a/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/10/request-no-reply-to.xml +++ b/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/10/request-no-reply-to.xml @@ -1,6 +1,6 @@ - http://example.com/someuniquestring + https://example.com/someuniquestring mailto:fabrikam@example.com http://example.com/fabrikam/mail/Delete diff --git a/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/10/request-no-to.xml b/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/10/request-no-to.xml index e7515513..ab0943e5 100644 --- a/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/10/request-no-to.xml +++ b/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/10/request-no-to.xml @@ -1,7 +1,7 @@ http://example.com/fabrikam/mail/Delete - http://example.com/someuniquestring + https://example.com/someuniquestring diff --git a/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/10/request-none.xml b/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/10/request-none.xml index 17c0a7e4..bb8bb772 100644 --- a/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/10/request-none.xml +++ b/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/10/request-none.xml @@ -1,6 +1,6 @@ - http://example.com/someuniquestring + https://example.com/someuniquestring http://www.w3.org/2005/08/addressing/none diff --git a/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/10/response-anonymous.xml b/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/10/response-anonymous.xml index 2ba12041..f0fe8ad3 100644 --- a/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/10/response-anonymous.xml +++ b/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/10/response-anonymous.xml @@ -1,7 +1,7 @@ uid:1234 - http://example.com/someuniquestring + https://example.com/someuniquestring http://www.w3.org/2005/08/addressing/anonymous urn:replyAction diff --git a/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/10/valid.xml b/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/10/valid.xml index e44c1df8..2adaeabe 100644 --- a/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/10/valid.xml +++ b/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/10/valid.xml @@ -1,8 +1,8 @@ - http://example.com/someuniquestring + https://example.com/someuniquestring - http://example.com/business/client1 + https://example.com/business/client1 mailto:fabrikam@example.com http://example.com/fabrikam/mail/Delete diff --git a/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/200408/request-anonymous.xml b/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/200408/request-anonymous.xml index db513298..d061fe2f 100644 --- a/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/200408/request-anonymous.xml +++ b/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/200408/request-anonymous.xml @@ -7,7 +7,7 @@ http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous mailto:joe@fabrikam123.example - http://fabrikam123.example/mail/Delete + https://fabrikam123.example/mail/Delete diff --git a/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/200408/request-fault-to.xml b/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/200408/request-fault-to.xml index 99af804a..4110fc32 100644 --- a/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/200408/request-fault-to.xml +++ b/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/200408/request-fault-to.xml @@ -4,13 +4,13 @@ uuid:aaaabbbb-cccc-dddd-eeee-ffffffffffff - http://example.com/business/client1 + https://example.com/business/client1 http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous mailto:joe@fabrikam123.example - http://fabrikam123.example/mail/Delete + https://fabrikam123.example/mail/Delete diff --git a/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/200408/request-no-message-id.xml b/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/200408/request-no-message-id.xml index 0d105eb3..9f26a93f 100644 --- a/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/200408/request-no-message-id.xml +++ b/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/200408/request-no-message-id.xml @@ -4,10 +4,10 @@ - http://business456.example/client1 + https://business456.example/client1 mailto:joe@fabrikam123.example - http://fabrikam123.example/mail/Delete + https://fabrikam123.example/mail/Delete diff --git a/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/200408/request-no-reply-to.xml b/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/200408/request-no-reply-to.xml index e630193f..6b1d576a 100644 --- a/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/200408/request-no-reply-to.xml +++ b/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/200408/request-no-reply-to.xml @@ -7,7 +7,7 @@ http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous - http://fabrikam123.example/mail/Delete + https://fabrikam123.example/mail/Delete diff --git a/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/200408/valid.xml b/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/200408/valid.xml index fb813b6e..21ee05de 100644 --- a/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/200408/valid.xml +++ b/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/200408/valid.xml @@ -1,9 +1,9 @@ - http://example.com/someuniquestring + https://example.com/someuniquestring - http://example.com/business/client1 + https://example.com/business/client1 mailto:fabrikam@example.com http://example.com/fabrikam/mail/Delete diff --git a/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/server/valid.xml b/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/server/valid.xml index 405b87ef..57a882ee 100644 --- a/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/server/valid.xml +++ b/spring-ws-core/src/test/resources/org/springframework/ws/soap/addressing/server/valid.xml @@ -4,10 +4,10 @@ uuid:aaaabbbb-cccc-dddd-eeee-ffffffffffff - http://example.com/business/client1 + https://example.com/business/client1 mailto:joe@fabrikam123.example - http://fabrikam123.example/mail/Delete + https://fabrikam123.example/mail/Delete diff --git a/spring-ws-core/src/test/resources/org/springframework/ws/transport/http/WEB-INF/sws-servlet.xml b/spring-ws-core/src/test/resources/org/springframework/ws/transport/http/WEB-INF/sws-servlet.xml index 5eef94b8..579414b7 100644 --- a/spring-ws-core/src/test/resources/org/springframework/ws/transport/http/WEB-INF/sws-servlet.xml +++ b/spring-ws-core/src/test/resources/org/springframework/ws/transport/http/WEB-INF/sws-servlet.xml @@ -2,8 +2,8 @@ + xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-3.0.xsd + http://www.springframework.org/schema/web-services https://www.springframework.org/schema/web-services/web-services-2.0.xsd"> diff --git a/spring-ws-security/src/test/resources/org/springframework/ws/soap/security/wss4j/usernameTokenDigest-soap.xml b/spring-ws-security/src/test/resources/org/springframework/ws/soap/security/wss4j/usernameTokenDigest-soap.xml index 98d82b7a..d2d5bfb4 100755 --- a/spring-ws-security/src/test/resources/org/springframework/ws/soap/security/wss4j/usernameTokenDigest-soap.xml +++ b/spring-ws-security/src/test/resources/org/springframework/ws/soap/security/wss4j/usernameTokenDigest-soap.xml @@ -1,6 +1,6 @@ -BertkwNstEaiFOrI7B31j7GuETYvdgk=9mdsYDCrjjYRur0rxzYt2oD72006-06-01T23:48:42Z +BertkwNstEaiFOrI7B31j7GuETYvdgk=9mdsYDCrjjYRur0rxzYt2oD72006-06-01T23:48:42Z QQQ diff --git a/spring-ws-security/src/test/resources/org/springframework/ws/soap/security/wss4j/usernameTokenPlainTextWithHeaders-soap.xml b/spring-ws-security/src/test/resources/org/springframework/ws/soap/security/wss4j/usernameTokenPlainTextWithHeaders-soap.xml index 111a52e9..ae88469b 100755 --- a/spring-ws-security/src/test/resources/org/springframework/ws/soap/security/wss4j/usernameTokenPlainTextWithHeaders-soap.xml +++ b/spring-ws-security/src/test/resources/org/springframework/ws/soap/security/wss4j/usernameTokenPlainTextWithHeaders-soap.xml @@ -1,5 +1,5 @@ - + 1 @@ -12,7 +12,7 @@ Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText" >Ernie - + 2 diff --git a/spring-ws-security/src/test/resources/org/springframework/ws/soap/security/wss4j2/usernameTokenDigest-soap.xml b/spring-ws-security/src/test/resources/org/springframework/ws/soap/security/wss4j2/usernameTokenDigest-soap.xml index 98d82b7a..d2d5bfb4 100644 --- a/spring-ws-security/src/test/resources/org/springframework/ws/soap/security/wss4j2/usernameTokenDigest-soap.xml +++ b/spring-ws-security/src/test/resources/org/springframework/ws/soap/security/wss4j2/usernameTokenDigest-soap.xml @@ -1,6 +1,6 @@ -BertkwNstEaiFOrI7B31j7GuETYvdgk=9mdsYDCrjjYRur0rxzYt2oD72006-06-01T23:48:42Z +BertkwNstEaiFOrI7B31j7GuETYvdgk=9mdsYDCrjjYRur0rxzYt2oD72006-06-01T23:48:42Z QQQ diff --git a/spring-ws-support/src/test/resources/org/springframework/ws/transport/http/httpserver-applicationContext.xml b/spring-ws-support/src/test/resources/org/springframework/ws/transport/http/httpserver-applicationContext.xml index 8238729c..c176c088 100644 --- a/spring-ws-support/src/test/resources/org/springframework/ws/transport/http/httpserver-applicationContext.xml +++ b/spring-ws-support/src/test/resources/org/springframework/ws/transport/http/httpserver-applicationContext.xml @@ -1,6 +1,6 @@ + xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-2.0.xsd"> diff --git a/spring-ws-support/src/test/resources/org/springframework/ws/transport/jms/jms-applicationContext.xml b/spring-ws-support/src/test/resources/org/springframework/ws/transport/jms/jms-applicationContext.xml index a133ed53..96c3a9f9 100644 --- a/spring-ws-support/src/test/resources/org/springframework/ws/transport/jms/jms-applicationContext.xml +++ b/spring-ws-support/src/test/resources/org/springframework/ws/transport/jms/jms-applicationContext.xml @@ -1,6 +1,6 @@ + xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-2.0.xsd"> diff --git a/spring-ws-support/src/test/resources/org/springframework/ws/transport/jms/jms-receiver-applicationContext.xml b/spring-ws-support/src/test/resources/org/springframework/ws/transport/jms/jms-receiver-applicationContext.xml index bacd4ae0..ba4685e9 100644 --- a/spring-ws-support/src/test/resources/org/springframework/ws/transport/jms/jms-receiver-applicationContext.xml +++ b/spring-ws-support/src/test/resources/org/springframework/ws/transport/jms/jms-receiver-applicationContext.xml @@ -1,6 +1,6 @@ + xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-2.0.xsd"> diff --git a/spring-ws-support/src/test/resources/org/springframework/ws/transport/jms/jms-sender-applicationContext.xml b/spring-ws-support/src/test/resources/org/springframework/ws/transport/jms/jms-sender-applicationContext.xml index f9c085c5..1d2a52af 100644 --- a/spring-ws-support/src/test/resources/org/springframework/ws/transport/jms/jms-sender-applicationContext.xml +++ b/spring-ws-support/src/test/resources/org/springframework/ws/transport/jms/jms-sender-applicationContext.xml @@ -1,6 +1,6 @@ + xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-2.0.xsd"> diff --git a/spring-ws-support/src/test/resources/org/springframework/ws/transport/mail/mail-applicationContext.xml b/spring-ws-support/src/test/resources/org/springframework/ws/transport/mail/mail-applicationContext.xml index 538ee3d3..15d382f7 100644 --- a/spring-ws-support/src/test/resources/org/springframework/ws/transport/mail/mail-applicationContext.xml +++ b/spring-ws-support/src/test/resources/org/springframework/ws/transport/mail/mail-applicationContext.xml @@ -1,6 +1,6 @@ + xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-2.0.xsd"> diff --git a/spring-ws-test/src/test/resources/org/springframework/ws/test/client/integration/integration-test.xml b/spring-ws-test/src/test/resources/org/springframework/ws/test/client/integration/integration-test.xml index a24a8d9b..4d309c1f 100644 --- a/spring-ws-test/src/test/resources/org/springframework/ws/test/client/integration/integration-test.xml +++ b/spring-ws-test/src/test/resources/org/springframework/ws/test/client/integration/integration-test.xml @@ -1,7 +1,7 @@ + xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd"> @@ -10,7 +10,7 @@ - + diff --git a/spring-ws-test/src/test/resources/org/springframework/ws/test/server/integration/integration-test.xml b/spring-ws-test/src/test/resources/org/springframework/ws/test/server/integration/integration-test.xml index 5a29e832..704b3723 100644 --- a/spring-ws-test/src/test/resources/org/springframework/ws/test/server/integration/integration-test.xml +++ b/spring-ws-test/src/test/resources/org/springframework/ws/test/server/integration/integration-test.xml @@ -1,7 +1,7 @@ + xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd"> diff --git a/src/main/asciidoctor/images/oxm-exceptions.svg b/src/main/asciidoctor/images/oxm-exceptions.svg index e33c67ae..0970a236 100644 --- a/src/main/asciidoctor/images/oxm-exceptions.svg +++ b/src/main/asciidoctor/images/oxm-exceptions.svg @@ -1,6 +1,6 @@ + "https://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">