diff --git a/getting-started/ws-inbound-gateway/.classpath b/getting-started/ws-inbound-gateway/.classpath index 02d04a45..7d01695d 100644 --- a/getting-started/ws-inbound-gateway/.classpath +++ b/getting-started/ws-inbound-gateway/.classpath @@ -2,6 +2,8 @@ + + diff --git a/getting-started/ws-inbound-gateway/.gitignore b/getting-started/ws-inbound-gateway/.gitignore new file mode 100644 index 00000000..ea8c4bf7 --- /dev/null +++ b/getting-started/ws-inbound-gateway/.gitignore @@ -0,0 +1 @@ +/target diff --git a/getting-started/ws-inbound-gateway/.settings/org.eclipse.wst.common.component b/getting-started/ws-inbound-gateway/.settings/org.eclipse.wst.common.component index 860f1e3b..0e15b521 100644 --- a/getting-started/ws-inbound-gateway/.settings/org.eclipse.wst.common.component +++ b/getting-started/ws-inbound-gateway/.settings/org.eclipse.wst.common.component @@ -3,6 +3,8 @@ + + diff --git a/getting-started/ws-inbound-gateway/pom.xml b/getting-started/ws-inbound-gateway/pom.xml index a885157b..0b8dba86 100644 --- a/getting-started/ws-inbound-gateway/pom.xml +++ b/getting-started/ws-inbound-gateway/pom.xml @@ -2,31 +2,43 @@ 4.0.0 - - org.springframework.integration.samples - spring-integration-samples - 2.0.0.BUILD-SNAPSHOT - + org.springframework.integration.samples ws-inbound-gateway Spring Integration WS Inbound Gateway Sample + 2.0.0 war + + 2.0.0.M7 + 3.0.3.RELEASE + 1.2.15 + 4.7 + org.springframework.integration spring-integration-xml + ${spring.integration.version} org.springframework.integration spring-integration-ws + ${spring.integration.version} + + + org.springframework + spring-test + ${spring.version} + + + log4j + log4j + ${log4j.version} junit junit - - - org.springframework - spring-test + ${junit.version} @@ -37,38 +49,11 @@ 1.5 1.5 - - - - org.apache.maven.plugins - maven-surefire-plugin - - - **/*Tests.java - - - - **/InContainerTests.java - + -Xlint:all + true + false - - - repository.springframework.maven.release - Spring Framework Maven Release Repository - http://maven.springframework.org/release - - - repository.springframework.maven.milestone - Spring Framework Maven Milestone Repository - http://maven.springframework.org/milestone - - - repository.springframework.maven.snapshot - Spring Framework Maven Snapshot Repository - http://maven.springframework.org/snapshot - - diff --git a/getting-started/ws-inbound-gateway/README.txt b/getting-started/ws-inbound-gateway/readme.txt similarity index 100% rename from getting-started/ws-inbound-gateway/README.txt rename to getting-started/ws-inbound-gateway/readme.txt diff --git a/getting-started/ws-inbound-gateway/src/main/java/log4j.dtd b/getting-started/ws-inbound-gateway/src/main/java/log4j.dtd deleted file mode 100644 index d92a6e7b..00000000 --- a/getting-started/ws-inbound-gateway/src/main/java/log4j.dtd +++ /dev/null @@ -1,166 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/getting-started/ws-inbound-gateway/src/main/java/org/springframework/integration/samples/ws/SimpleEchoResponder.java b/getting-started/ws-inbound-gateway/src/main/java/org/springframework/integration/samples/ws/SimpleEchoResponder.java index 13c5bfb9..06851b90 100644 --- a/getting-started/ws-inbound-gateway/src/main/java/org/springframework/integration/samples/ws/SimpleEchoResponder.java +++ b/getting-started/ws-inbound-gateway/src/main/java/org/springframework/integration/samples/ws/SimpleEchoResponder.java @@ -20,7 +20,9 @@ import javax.xml.transform.Source; import javax.xml.transform.dom.DOMSource; import org.springframework.integration.xml.source.DomSourceFactory; - +/** + * @author Chris Beams + */ public class SimpleEchoResponder { public Source issueResponseFor(DOMSource request) { diff --git a/getting-started/ws-inbound-gateway/src/main/java/org/springframework/integration/samples/ws/inbound-gateway-config.xml b/getting-started/ws-inbound-gateway/src/main/resources/META-INF/spring/integration/inbound-gateway-config.xml similarity index 100% rename from getting-started/ws-inbound-gateway/src/main/java/org/springframework/integration/samples/ws/inbound-gateway-config.xml rename to getting-started/ws-inbound-gateway/src/main/resources/META-INF/spring/integration/inbound-gateway-config.xml diff --git a/getting-started/ws-inbound-gateway/src/test/java/org/springframework/integration/samples/ws/InContainerTests.java b/getting-started/ws-inbound-gateway/src/test/java/org/springframework/integration/samples/ws/InContainerTests.java index c01140b8..cd7cc918 100644 --- a/getting-started/ws-inbound-gateway/src/test/java/org/springframework/integration/samples/ws/InContainerTests.java +++ b/getting-started/ws-inbound-gateway/src/test/java/org/springframework/integration/samples/ws/InContainerTests.java @@ -49,7 +49,7 @@ public class InContainerTests { "hello"); template.sendSourceAndReceiveToResult(WS_URI, payload, result); - + System.out.println("RESULT: " + result.toString()); assertThat(result.toString(), equalTo( "" + "hello")); diff --git a/getting-started/ws-inbound-gateway/src/test/java/org/springframework/integration/samples/ws/InboundGatewayTests.java b/getting-started/ws-inbound-gateway/src/test/java/org/springframework/integration/samples/ws/InboundGatewayTests.java index af9915c5..8aba40d8 100644 --- a/getting-started/ws-inbound-gateway/src/test/java/org/springframework/integration/samples/ws/InboundGatewayTests.java +++ b/getting-started/ws-inbound-gateway/src/test/java/org/springframework/integration/samples/ws/InboundGatewayTests.java @@ -49,7 +49,7 @@ import org.springframework.ws.pox.dom.DomPoxMessageFactory; * @author Chris Beams * @author Mark Fisher */ -@ContextConfiguration("inbound-gateway-config.xml") +@ContextConfiguration("/META-INF/spring/integration/inbound-gateway-config.xml") @RunWith(SpringJUnit4ClassRunner.class) public class InboundGatewayTests { diff --git a/getting-started/ws-inbound-gateway/src/main/java/log4j.xml b/getting-started/ws-inbound-gateway/src/test/resources/log4j.xml similarity index 100% rename from getting-started/ws-inbound-gateway/src/main/java/log4j.xml rename to getting-started/ws-inbound-gateway/src/test/resources/log4j.xml diff --git a/getting-started/ws-inbound-gateway/target/classes/log4j.dtd b/getting-started/ws-inbound-gateway/target/classes/log4j.dtd deleted file mode 100644 index d92a6e7b..00000000 --- a/getting-started/ws-inbound-gateway/target/classes/log4j.dtd +++ /dev/null @@ -1,166 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/getting-started/ws-inbound-gateway/target/classes/log4j.xml b/getting-started/ws-inbound-gateway/target/classes/log4j.xml deleted file mode 100644 index cf78c080..00000000 --- a/getting-started/ws-inbound-gateway/target/classes/log4j.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/getting-started/ws-inbound-gateway/target/classes/org/springframework/integration/samples/ws/SimpleEchoResponder.class b/getting-started/ws-inbound-gateway/target/classes/org/springframework/integration/samples/ws/SimpleEchoResponder.class deleted file mode 100644 index a72bd1bd..00000000 Binary files a/getting-started/ws-inbound-gateway/target/classes/org/springframework/integration/samples/ws/SimpleEchoResponder.class and /dev/null differ diff --git a/getting-started/ws-inbound-gateway/target/classes/org/springframework/integration/samples/ws/inbound-gateway-config.xml b/getting-started/ws-inbound-gateway/target/classes/org/springframework/integration/samples/ws/inbound-gateway-config.xml deleted file mode 100644 index 8c0644df..00000000 --- a/getting-started/ws-inbound-gateway/target/classes/org/springframework/integration/samples/ws/inbound-gateway-config.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/getting-started/ws-inbound-gateway/target/maven-archiver/pom.properties b/getting-started/ws-inbound-gateway/target/maven-archiver/pom.properties deleted file mode 100644 index 3f7ba89b..00000000 --- a/getting-started/ws-inbound-gateway/target/maven-archiver/pom.properties +++ /dev/null @@ -1,5 +0,0 @@ -#Generated by Maven -#Sat Sep 04 08:22:36 EDT 2010 -version=2.0.0.BUILD-SNAPSHOT -groupId=org.springframework.integration.samples -artifactId=ws-inbound-gateway diff --git a/getting-started/ws-inbound-gateway/target/surefire-reports/TEST-org.springframework.integration.samples.ws.InboundGatewayTests.xml b/getting-started/ws-inbound-gateway/target/surefire-reports/TEST-org.springframework.integration.samples.ws.InboundGatewayTests.xml deleted file mode 100644 index 51efa7f7..00000000 --- a/getting-started/ws-inbound-gateway/target/surefire-reports/TEST-org.springframework.integration.samples.ws.InboundGatewayTests.xml +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/getting-started/ws-inbound-gateway/target/test-classes/org/springframework/integration/samples/ws/InContainerTests.class b/getting-started/ws-inbound-gateway/target/test-classes/org/springframework/integration/samples/ws/InContainerTests.class deleted file mode 100644 index f0b93459..00000000 Binary files a/getting-started/ws-inbound-gateway/target/test-classes/org/springframework/integration/samples/ws/InContainerTests.class and /dev/null differ diff --git a/getting-started/ws-inbound-gateway/target/test-classes/org/springframework/integration/samples/ws/InboundGatewayTests.class b/getting-started/ws-inbound-gateway/target/test-classes/org/springframework/integration/samples/ws/InboundGatewayTests.class deleted file mode 100644 index c4af3fa4..00000000 Binary files a/getting-started/ws-inbound-gateway/target/test-classes/org/springframework/integration/samples/ws/InboundGatewayTests.class and /dev/null differ diff --git a/getting-started/ws-inbound-gateway/target/war/work/webapp-cache.xml b/getting-started/ws-inbound-gateway/target/war/work/webapp-cache.xml deleted file mode 100644 index 741f33ec..00000000 --- a/getting-started/ws-inbound-gateway/target/war/work/webapp-cache.xml +++ /dev/null @@ -1,86 +0,0 @@ - - - - currentBuild - - - index.html - WEB-INF/spring-ws-config.xml - WEB-INF/web.xml - WEB-INF/classes/log4j.dtd - WEB-INF/classes/log4j.xml - WEB-INF/classes/org/springframework/integration/samples/ws/inbound-gateway-config.xml - WEB-INF/classes/org/springframework/integration/samples/ws/SimpleEchoResponder.class - WEB-INF/lib/spring-integration-xml-2.0.0.BUILD-SNAPSHOT.jar - WEB-INF/lib/spring-context-3.0.3.RELEASE.jar - WEB-INF/lib/spring-aop-3.0.3.RELEASE.jar - WEB-INF/lib/aopalliance-1.0.jar - WEB-INF/lib/spring-asm-3.0.3.RELEASE.jar - WEB-INF/lib/spring-beans-3.0.3.RELEASE.jar - WEB-INF/lib/spring-core-3.0.3.RELEASE.jar - WEB-INF/lib/commons-logging-1.1.1.jar - WEB-INF/lib/spring-expression-3.0.3.RELEASE.jar - WEB-INF/lib/spring-integration-core-2.0.0.BUILD-SNAPSHOT.jar - WEB-INF/lib/spring-tx-3.0.3.RELEASE.jar - WEB-INF/lib/spring-oxm-3.0.3.RELEASE.jar - WEB-INF/lib/spring-xml-1.5.9.jar - WEB-INF/lib/spring-integration-ws-2.0.0.BUILD-SNAPSHOT.jar - WEB-INF/lib/spring-ws-core-1.5.9.jar - WEB-INF/lib/spring-oxm-1.5.9.jar - WEB-INF/lib/spring-web-3.0.3.RELEASE.jar - WEB-INF/lib/spring-webmvc-3.0.3.RELEASE.jar - WEB-INF/lib/spring-context-support-3.0.3.RELEASE.jar - WEB-INF/lib/wsdl4j-1.6.1.jar - - - - - - - - org.springframework.integration - spring-integration-xml - 2.0.0.BUILD-SNAPSHOT - jar - compile - - false - - spring-integration-xml-2.0.0.BUILD-SNAPSHOT.jar - - - - org.springframework.integration - spring-integration-ws - 2.0.0.BUILD-SNAPSHOT - jar - compile - - false - - spring-integration-ws-2.0.0.BUILD-SNAPSHOT.jar - - - - junit - junit - 4.7 - jar - test - - false - - - - - org.springframework - spring-test - 3.0.3.RELEASE - jar - test - - false - - - - \ No newline at end of file diff --git a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT.war b/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT.war deleted file mode 100644 index 1d8106ff..00000000 Binary files a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT.war and /dev/null differ diff --git a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/classes/log4j.dtd b/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/classes/log4j.dtd deleted file mode 100644 index d92a6e7b..00000000 --- a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/classes/log4j.dtd +++ /dev/null @@ -1,166 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/classes/log4j.xml b/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/classes/log4j.xml deleted file mode 100644 index cf78c080..00000000 --- a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/classes/log4j.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/classes/org/springframework/integration/samples/ws/SimpleEchoResponder.class b/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/classes/org/springframework/integration/samples/ws/SimpleEchoResponder.class deleted file mode 100644 index ec7a4997..00000000 Binary files a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/classes/org/springframework/integration/samples/ws/SimpleEchoResponder.class and /dev/null differ diff --git a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/classes/org/springframework/integration/samples/ws/inbound-gateway-config.xml b/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/classes/org/springframework/integration/samples/ws/inbound-gateway-config.xml deleted file mode 100644 index 8c0644df..00000000 --- a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/classes/org/springframework/integration/samples/ws/inbound-gateway-config.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/aopalliance-1.0.jar b/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/aopalliance-1.0.jar deleted file mode 100644 index 578b1a0c..00000000 Binary files a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/aopalliance-1.0.jar and /dev/null differ diff --git a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/commons-logging-1.1.1.jar b/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/commons-logging-1.1.1.jar deleted file mode 100644 index 1deef144..00000000 Binary files a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/commons-logging-1.1.1.jar and /dev/null differ diff --git a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-aop-3.0.3.RELEASE.jar b/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-aop-3.0.3.RELEASE.jar deleted file mode 100644 index 7a78f04b..00000000 Binary files a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-aop-3.0.3.RELEASE.jar and /dev/null differ diff --git a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-asm-3.0.3.RELEASE.jar b/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-asm-3.0.3.RELEASE.jar deleted file mode 100644 index 71a389dc..00000000 Binary files a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-asm-3.0.3.RELEASE.jar and /dev/null differ diff --git a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-beans-3.0.3.RELEASE.jar b/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-beans-3.0.3.RELEASE.jar deleted file mode 100644 index 82cb2bc0..00000000 Binary files a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-beans-3.0.3.RELEASE.jar and /dev/null differ diff --git a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-context-3.0.3.RELEASE.jar b/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-context-3.0.3.RELEASE.jar deleted file mode 100644 index 1f94999a..00000000 Binary files a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-context-3.0.3.RELEASE.jar and /dev/null differ diff --git a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-context-support-3.0.3.RELEASE.jar b/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-context-support-3.0.3.RELEASE.jar deleted file mode 100644 index bcc0e6ab..00000000 Binary files a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-context-support-3.0.3.RELEASE.jar and /dev/null differ diff --git a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-core-3.0.3.RELEASE.jar b/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-core-3.0.3.RELEASE.jar deleted file mode 100644 index 7792a5f9..00000000 Binary files a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-core-3.0.3.RELEASE.jar and /dev/null differ diff --git a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-expression-3.0.3.RELEASE.jar b/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-expression-3.0.3.RELEASE.jar deleted file mode 100644 index 1989503a..00000000 Binary files a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-expression-3.0.3.RELEASE.jar and /dev/null differ diff --git a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-integration-core-2.0.0.BUILD-SNAPSHOT.jar b/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-integration-core-2.0.0.BUILD-SNAPSHOT.jar deleted file mode 100644 index b0505454..00000000 Binary files a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-integration-core-2.0.0.BUILD-SNAPSHOT.jar and /dev/null differ diff --git a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-integration-ws-2.0.0.BUILD-SNAPSHOT.jar b/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-integration-ws-2.0.0.BUILD-SNAPSHOT.jar deleted file mode 100644 index 3fcd8db5..00000000 Binary files a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-integration-ws-2.0.0.BUILD-SNAPSHOT.jar and /dev/null differ diff --git a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-integration-xml-2.0.0.BUILD-SNAPSHOT.jar b/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-integration-xml-2.0.0.BUILD-SNAPSHOT.jar deleted file mode 100644 index 4d09d846..00000000 Binary files a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-integration-xml-2.0.0.BUILD-SNAPSHOT.jar and /dev/null differ diff --git a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-oxm-1.5.9.jar b/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-oxm-1.5.9.jar deleted file mode 100644 index fc474689..00000000 Binary files a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-oxm-1.5.9.jar and /dev/null differ diff --git a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-oxm-3.0.3.RELEASE.jar b/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-oxm-3.0.3.RELEASE.jar deleted file mode 100644 index 5d58154e..00000000 Binary files a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-oxm-3.0.3.RELEASE.jar and /dev/null differ diff --git a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-tx-3.0.3.RELEASE.jar b/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-tx-3.0.3.RELEASE.jar deleted file mode 100644 index 8ef75383..00000000 Binary files a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-tx-3.0.3.RELEASE.jar and /dev/null differ diff --git a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-web-3.0.3.RELEASE.jar b/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-web-3.0.3.RELEASE.jar deleted file mode 100644 index dd25a7d6..00000000 Binary files a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-web-3.0.3.RELEASE.jar and /dev/null differ diff --git a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-webmvc-3.0.3.RELEASE.jar b/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-webmvc-3.0.3.RELEASE.jar deleted file mode 100644 index 65a972f8..00000000 Binary files a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-webmvc-3.0.3.RELEASE.jar and /dev/null differ diff --git a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-ws-core-1.5.9.jar b/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-ws-core-1.5.9.jar deleted file mode 100644 index 9f0496b2..00000000 Binary files a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-ws-core-1.5.9.jar and /dev/null differ diff --git a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-xml-1.5.9.jar b/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-xml-1.5.9.jar deleted file mode 100644 index bff34944..00000000 Binary files a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/spring-xml-1.5.9.jar and /dev/null differ diff --git a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/wsdl4j-1.6.1.jar b/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/wsdl4j-1.6.1.jar deleted file mode 100644 index 67a35fcb..00000000 Binary files a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/lib/wsdl4j-1.6.1.jar and /dev/null differ diff --git a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/spring-ws-config.xml b/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/spring-ws-config.xml deleted file mode 100644 index 05dea196..00000000 --- a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/spring-ws-config.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/web.xml b/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/web.xml deleted file mode 100644 index e7321385..00000000 --- a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/WEB-INF/web.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - ws:inbound-gateway sample - - - spring-ws - org.springframework.ws.transport.http.MessageDispatcherServlet - - contextConfigLocation - WEB-INF/spring-ws-config.xml - - 1 - - - - spring-ws - /echoservice - - - - index.html - - - diff --git a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/index.html b/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/index.html deleted file mode 100644 index 54436ec8..00000000 --- a/getting-started/ws-inbound-gateway/target/ws-inbound-gateway-2.0.0.BUILD-SNAPSHOT/index.html +++ /dev/null @@ -1 +0,0 @@ -The web service has been successfully deployed. You may now issue SOAP requests. See included JUnit tests for examples. \ No newline at end of file