In C# how could I listen to a COM (Serial) Port that is already open? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T19:42:44Z http://stackoverflow.com/feeds/question/358037 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/358037/in-c-how-could-i-listen-to-a-com-serial-port-that-is-already-open 2 In C# how could I listen to a COM (Serial) Port that is already open? Phobis 2008-12-10T23:51:09Z 2008-12-11T07:38:43Z <p>I am using a program that talks to my COMM port, but I have made another program that I want to "sniff" the comm port messages and perform it's own actions against those messages in addition. Is this possible in .NET c#?</p> http://stackoverflow.com/questions/358037/in-c-how-could-i-listen-to-a-com-serial-port-that-is-already-open/358045#358045 0 Answer by Eric for In C# how could I listen to a COM (Serial) Port that is already open? Eric 2008-12-10T23:56:49Z 2008-12-10T23:56:49Z <p>It is possible to sniff traffic from the serial port</p> <p>However there doesnt seem to be a "COMPortSniffer" Control</p> <p>A valid technique used by sysinternals is presented <a href="http://technet.microsoft.com/en-us/sysinternals/bb896644.aspx" rel="nofollow">there</a> </p> <p>It seems to rely on Win32 programming however, I dont think such a thing is possible directly with C#</p> http://stackoverflow.com/questions/358037/in-c-how-could-i-listen-to-a-com-serial-port-that-is-already-open/358175#358175 2 Answer by tim for In C# how could I listen to a COM (Serial) Port that is already open? tim 2008-12-11T01:08:54Z 2008-12-11T01:08:54Z <p>There are third party libraries/tools/products that expose the traffic f you are interested.</p> <p>Here is one I used for serial port emulation - but I think it provides something you can use: <a href="http://com0com.sourceforge.net/" rel="nofollow">http://com0com.sourceforge.net/</a></p> http://stackoverflow.com/questions/358037/in-c-how-could-i-listen-to-a-com-serial-port-that-is-already-open/358634#358634 0 Answer by faulty for In C# how could I listen to a COM (Serial) Port that is already open? faulty 2008-12-11T07:38:43Z 2008-12-11T07:38:43Z <p>If you have control over the first program that talks to you COMM port, why not change the program to pass data received from the port to the 2nd program of yours via remoting or any other type of IPC. Better still if you can write a proxy program that connected to the COMM port, and have 2 of the other program talk to this proxy to get the communication done.</p> <p>Another idea is, if you need to sniff only incoming data, you can get a Y-cable (splitter) and connect to 2 COMM port, each program connects to each COMM port. But you need to make sure the 2nd program is not trying to transmit. In some cases you might need a splitter which only connects the RX pin for the 2nd output. Let me know if you need the diagram.</p> <p>If you don't have 2 COMM, you can easily get a USB-Serial Converter for less than USD10.</p>