Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~160 People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums

2 Posted Topics

Member Avatar for srirambs7

i have a serial communication process (windows service type prgrm), and a server client program. how can the server be integrated inside the windows service type process i.e., whenever i start the serial process the server program should also run. please do leave me with solution,suggestions,advise or the code it …

0
81
Member Avatar for srirambs7

using System; using System.Threading; using System.Net.Sockets; using System.Text; namespace ConsoleApplication1 { class Server { static void Main(string[] args) { TcpListener serverSocket = new TcpListener(8889); TcpClient clientSocket = default(TcpClient); int counter = 0; serverSocket.Start(); Console.WriteLine(" >> " + "Server Started"); counter = 0; while (true) { counter += 1; clientSocket = …

0
79

The End.