You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to wrap my head around how to make the DynamicTcpClientApplication also give back the response data sent with:
@MessagingGateway(defaultRequestChannel = "toTcp.input")
public interface ToTCP {
public void send(String data, @Header("host") String host, @Header("port") int port);
}
Just changing from void to byte[] is not enough. What is needed to make sure a client can get the response from a tcp request back through the interface?
The text was updated successfully, but these errors were encountered:
I'm trying to wrap my head around how to make the DynamicTcpClientApplication also give back the response data sent with:
Just changing from void to byte[] is not enough. What is needed to make sure a client can get the response from a tcp request back through the interface?
The text was updated successfully, but these errors were encountered: