See the tcp sample in the intermediate folder...
https://github.com/SpringSource/spri...rver-multiplex
It does request/reply with correlation over adapters; sounds like you don't need that, but it shows the use of adapters in both a client and server environment.
See the TcpClientServerDemoTest test case.
If you don't need replies; simply use a <gateway/> with a method that returns void...
Code:
public interface SendOnlyGateway {
public void sendOnly(String text);
}
Let us know if you need more help.
Gary P. Russell
Spring Integration Team
SpringSource, a division of VMware