import processing.net.*; Client myClient; int dataIn;
void setup() { size(200, 200); // Connect to the local machine at port 5204. // This example will not run if you haven't // previously started a server on this port myClient = new Client(this, "172.18.104.27", 5204); }
when i run both the applications in the IDE it works fine but when i export the server app and run it nothing happens i.e. the client is unable to see the data from he server