Dear all,
I have a client application named client.exe that accept TCP/IP and port no as input to be invoked and communicate with master or server application exe.
1.First thing i need to do is invoke the application when it is offline by sending TCP/IP and Port no to the application.
2.I Need to use the function described in the client application and receieve message from client application.
3.Send message to client application after invoking client.
Can anyone please help me to achieve this target.
That how can i invoke the offline client and send message after invoking the clent.
basically I need to design a master or server application.
Thank you!
Singh
Loading
Sam HobbsPosted Oct 15, 2010, 4:21 PM
Daniel KrainasPosted Oct 15, 2010, 1:30 PM
http://articles.techrepublic.com.com/5100-10878_11-6170794.html
In the event the server is down and you must start it, just use:
Process.Start(@"c:\mypath\myServer.exe");
In a client/server environment, the client should never need to turn the server on in the manner you are talking about though. You should maybe look at combining the client and server into one application. It just sounds like an over-complication.