I have a Java application that needs to connect to IP 10.2.200.12 , port 3002. In this application i send some data to this host and receive its answer, then i close the connection. The problem is I connect to this address but some seconds after my connection is falling. I try connecting using Hercules, and in the log appeared this messagges
Connecting to 10.2.200.12... Connected to 10.2.200.12 And some seconds later... Connection Closed
In my application (client) i connect using this
String ip="10.2.200.12"
int port=3002
Socket s=new Socket(ip,port)
Some ideas?? I need to establish connection so i can send data and receive it... Thankss