Rys
Rys

Reputation: 5154

How can I solve connections or configuration problems with spring integration?

I have two environments, in one of them I put my application using spring integration and it works perfectly. But in the second enviroment when I try to connect with the server, I get a time out error. I suppose that the error is becouse of a some configuration of the network topology but I not really sure. I did a test application using spring integration using the configuration described here:

How can I set default outgoing port and listening port on spring integration?

The idea of setting outgoing port is just to control where is going the information. But this test application failed to connect and throw the same error as my application. I made a second test, in this case using the usual java classes to create a tcp client, and the test worked fine. So my suspicions are arround the configuration of spring integration and somesomething with the network too. Just to contribute with more information, I´m using spring integration 2.2.6

Thanks in advance again!

Upvotes: 0

Views: 106

Answers (1)

Aaron Digulla
Aaron Digulla

Reputation: 328556

Time out errors usually mean that there is a firewall between you and the server. Get the IP addresses and host names involved and visit your network admin.

Upvotes: 1

Related Questions