how i run a tcplistener in a windows service

  • Thread starter Thread starter byron guerrero
  • Start date Start date
I need to execute a TcpListener in a windows service.
tanks for the help.

Try this:

TcpListener listener = new TcpListener(thePortToListenOn);
listener.Start();

-JG
 
Hi Byron,

What exactly is what you are tryig to do. I can post you some code if you
need it.

Cheers,
 
Back
Top