Tagged Questions
0
votes
1answer
18 views
Check connection time out, preferable check using long elapsedTicks or DateTime elapsedTime?
TCP server send data to buffer and MainForm receive data from buffer and do some processing
I have a parameter to check the time on lastDataReceive (from TCP) on the buffer.
I also have a paramter ...
0
votes
1answer
110 views
Send tcp commands through a new form
I am able to open a TcpClient connection in C#, open a network stream, and send commands successfully. I was able to login with a username and password. Then sent some commands to control the system ...
0
votes
1answer
473 views
How to read a jpeg image streamed from a server
I have a server that is constantly transmitting jpeg images like a time lapse video feed. I need to display these images in a C# WinForm TCP Client and am having issues with the streaming.
I have ...
0
votes
2answers
259 views
Storing connected clients?
I am currently learning and working on a Client/Server, and I am having some difficult on how I should store the connections.
Here is some sample code:
while (_isRunning)
{
if ...
0
votes
2answers
929 views
client/server chat program in C#/winforms IP address issue
I am trying to make a winforms client/server chat application. I already have a client and a server, both are working fine, i can log in, send messages, etc .. The problem is that it only works if i ...
0
votes
1answer
777 views
C# WinForms (TcpClient) - Unable to read/write data from/to the transport connection: An existing connection was forcibly closed by the remote host
I realise there are plenty of articles on this but am struggling to find an explanation for this specific problem.
The server is an Asterisk PBX server which constantly writes call data to the ...
1
vote
1answer
2k views
Send data from server back to the client
I have a TcpClient application that send a message from client to the server.
Code below:
clsServer.cs
public void server_start()
{
this.tcpListener = new TcpListener(new IPAddress(new ...
0
votes
1answer
164 views
Instead of scanning multiple ports I'm scanning only one and when port is closed my app closes
I'm trying to scan multiple ports at once using asynchronymous scanning. The problem is that I can only display the first working port and then waiting like 20 seconds my app is closing with out ...
1
vote
2answers
1k views
Port Scanning: how to make scanning faster?
I'm creating a small tool which let me to check status of ports of given IP and port number like this:
private void ScanPort(IPAddress address, int port)
{
using (TcpClient client = new ...
3
votes
1answer
360 views
Timeout or try-catch for connecting to a server? (C# WinForms)
Which code is preferable to handling failed connections to a server?
Something like this:
Or this kind of code at the beginning of the async callback for TcpClient.BeginConnect:
try
{
...
1
vote
1answer
194 views
Should I still use TCPClient to write servers or has something better emerged?
Years ago when writing a server for a simple pong game I was making I used a TCPClient and referenced some .NET Framework 101 code sample page that included an example of a server and client program ...
1
vote
1answer
6k views
NetworkStream BeginRead / EndRead
I'm really new to C# programming and I'm developing an application based on a TcpClient.
I would like to know how to use BeginRead & EndRead, I've already read MSN documentation but doesn't help.
...
0
votes
2answers
5k views
No connection could be made because the target machine actively refused it 172.16.8.200:8000
Many people have this same problem, but everyone's implementation is different.
I need help with my implementation of it.
void sendUsingTcp() {
try {
Socket sock = new ...
1
vote
2answers
4k views
Tcp Client two way communication help
I want to communicate between two applications or winforms in C# using clients and server
its like i want a server continiously listening to incoming messages from a client or clients and when the ...
0
votes
3answers
2k views
how to send objects or dataset in tcpclient connection using C#?
i want to transfer an object or a data set from one computer and other i am sending strings using streamwriter and reader now i want send an object via this client connection so how do i send this ...
