Files
spring-integration-samples/basic/http
Gunnar Hillert 9effe2f9bc INTSAMPLES-33 Update to SI RC1 and Spring 3.1
1. Cleanup of pom.xml files
2. Standardizing version numbers
3. Updating dependency versions
4. Cleaning/Standardizing project names
5. Removing Schema versions in XML context files
2011-12-18 00:32:34 -05:00
..
2011-01-13 18:04:05 -05:00

This example demonstrates simple request/reply communication when using a pair of HTTP Inbound/Outbound gateways

It consists of two parts - Client and Server.

To run this sample
   1) deploy project 
   			- If you are using STS and project is imported as Eclipse project in your workspace you can just execute 'Run on Server'
   			- You can also run 'mvn clean install' and generate the WAR file that you can deploy the conventional way
   2) run the simple test client program: org.springframework.integration.samples.http.DemoHttpClient
   
   The gateway initiates a simple request posting "Hello" to the server and server responds by appending "from the other side" 
   to the message payload and returns.
   
   You should see the following output from the server:
   
INFO : org.springframework.integration.samples.http.HttpClientDemo - Replied with: Hello from the other side