tcplistener
TCP Event Monitor in .NET
I have a SysTray application that needs to know when a browser runs into an Internet TImeout/Connecti开发者_如何学运维on Not Found/etc... error.At the port level, this could be anything from network i[详细]
2023-02-03 23:09 分类:问答Help with Exception with TCPListener
I keep getting the following exception when a client connects to the TCPListener. Exception: System.ObjectDisposedException: Cannot access a disposed object.[详细]
2023-01-30 12:52 分类:问答Connecting to a TcpListener on a different thread, same process
I\'m trying to unit test some comm. code over TCP in C#.I\'ve created a quick thread that stands up a TcpListener.Each time the TcpClient tries to connect I get an \"Only one usage of each socket addr[详细]
2023-01-28 18:39 分类:问答Https with Tcplistener
I am building an application that can receive requests from a website to perform functionality not available in a browser. I accomplished this using a Tcplistener and then call in to it by performing[详细]
2023-01-27 03:40 分类:问答trigger event from an AsyncCallback in c#
My question involves events and where I am triggering the events in my class. This class wraps my TCP functionality and I am using TcpListener to achieve this. I realize some TCP stuff may be missing[详细]
2023-01-25 11:35 分类:问答C# send image over HTTP
I have a small HTTP-Server here written in C# and until now I only needed to send raw text back to the sender. But now I have to send a JPG-Image and I dont unterstand how.[详细]
2023-01-24 19:35 分类:问答How to create a receiver application in .NET that would accept messages or requests from ASP.NET page?
First of all thanks for taking the time to read开发者_JAVA百科 my question. Here is what I am trying to accomplish followed by what I have so far on this.[详细]
2023-01-23 03:11 分类:问答C# passing objects TCPListener
I am new to network programming in C#. I have found the TCPListener class very useful for sending text between computers, b开发者_StackOverflow社区ut I was wondering if it is possible to directly send[详细]
2023-01-19 13:15 分类:问答TcpClient vs MSMQ
I\'m developing an application that will need to communicate with itself running on different machines located in different locations. I was going to use TcpListener and TcpClient to send information[详细]
2023-01-19 04:33 分类:问答Can a WCF Service replace the functionality of TCPListener?
I have a TCPListener based server application which listens for clients on a single specific port. The clients connect, send some xml, get some xml back as a response and then disconnect.[详细]
2023-01-15 17:44 分类:问答