Tagged Questions
0
votes
1answer
10 views
TcpClient connection error
I used TcpClient and TcpListner classes for a chat application. It worked perfect on LAN. But I use same approach on internet it didn't work and gives me following error
A connection attempt ...
1
vote
2answers
41 views
TcpListener won't acknowledge connections
So I am writing a simple client-server application. It should send a packet, then wait to receive a packet, than send one etc... The problem is, it recieves the first packet, but when I start the ...
-1
votes
1answer
36 views
TcpClient / TcpListener filename
I'm implementing a simple file sending method based on the example I found here, however I'm having trouble finding any reference on how to go about sending the filename and/or type before sending the ...
0
votes
2answers
37 views
TcpClient distribution over ports [closed]
Is there any difference between listening 1 port for 3000 TcpClients and listening 100 ports for 30 TcpClients.
0
votes
0answers
15 views
strange stream.dataavailable behavior
As you can see I send the text "Hello Server" and "I am a client", when I run my program multiple times I successfully receive both strings, sometimes my while get's hit 2 times and it's concatenated. ...
0
votes
0answers
103 views
TCP buffer size advantages & disadvantages
I have an application, and I need to send a huge amount of data (some mb's).
My program is programmed so that when I send data it's always the length of the buffer so I never need to wait for data.
...
0
votes
0answers
270 views
Non-blocking TCP server with .NET 4.5
I need to implement a Windows service with a tcp listener to listen indefinitely and process the data feed coming from a tcp port and I'm looking for any samples using .NET 4.5 async features.
The ...
-1
votes
1answer
279 views
C# Gameserver architecture
I am wondering how to write a "good" gameserver. I had a few ideas but I never made a server and I don't want to end up in writing brainfuck code.
I know how to handle TCP-Connections and so on but ...
0
votes
1answer
116 views
TCP Client reads first message but not the rest
I am trying to send a request to an existing server solution and write out the results. The server is sending a total of 4 messages with my particular request but the number of messsages back can ...
2
votes
1answer
223 views
disconnect/close a client
I have a simple client-server application which works like this: the server is always listening (in a separate thread) for a client connection (which sends the name of process that it wants the server ...
0
votes
1answer
180 views
I can't get TcpClient to connect to a TcpListener on another host
I have a simple client and server application that talk to each other over TCP/IP using TcpClient and TcpListener. If I run both the server and the client on the same computer with an IP address of ...
-2
votes
1answer
148 views
Socket that constantly listens [closed]
so i've searched for about 2 weeks for this , and i can't find any legit answer.
I have two projects , one is a server and the other one is a client.
I've only managed to make a client console ...
4
votes
1answer
1k views
How to use TCP client/listener in multithreaded c#?
I have written this code for my server:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Net;
...
0
votes
2answers
851 views
Tcpclient multiple clients connect to server
A client need to build several tcp connections to server simultaneously.
My Server's code is below.
while (_running)
{
if (!_listener.Pending())
{
Thread.Sleep(100);
continue;
...
0
votes
1answer
523 views
TcpClient: The operation is not allowed on non-connected sockets.
public Server()
{
this.tcpListener = new TcpListener(IPAddress.Any, 8000);
this.listenThread = new Thread(new ThreadStart(ListenForClients));
this.listenThread.Start();
...
0
votes
0answers
72 views
TCP can't connect, sometimes
I have the following Sub, which makes a TCP connection.
Private Sub Send(ByVal Command As String)
Try
Dim client As New System.Net.Sockets.TcpClient
client.Connect(TextBox1.Text, ...
0
votes
1answer
210 views
How can I make my TCP Socket Server Async?
I currently have made an all in one peer to peer 'chat' program. It currently uses a timer to receive messages, and a client to send them to other people running the program. I would really like to ...
0
votes
1answer
267 views
Basic Qt tcp-server application only show selected clients messages
I am developing a simple tcp server with qt. There is no problem with that. But the problem is, i have listed every connected client in a listbox and i want to see the incoming data only from the ...
1
vote
1answer
233 views
Communication Server -> Client not happening
I have two applications running on different computers, one of them is a client and the other one is a server, the communication on Client -> Server works perfectly, although it doesn't on the ...
-1
votes
1answer
56 views
Manualy accept tcp clients
Is there a way in which I can chose the clients that my TcpListener accepts? Or to set my TcpListener to accept connction only from a specific IP?
C#, .NET 4.0
0
votes
3answers
421 views
C# TcpListener external IP
I'm creating a TcpListener, and I want clients from other computers to be able to join my listener.
I've read and understood that I have to do Port Forwarding, but it doesn't make any sense to me - ...
0
votes
0answers
72 views
how can I make client to get message from server without opening port and with using udpclient
With TCPListener and TCPclient I am able to setup a 2way connection using networkstream
But with UDPclient I cannot use networkstream and I want to have this;
client will connect to UDPServer and ...
0
votes
1answer
255 views
Error in recieving data from TCP Client
I've written an application which listens to a port and receives some packets,according to my customized protocol, the packets are either 49 byte to 1500 byte, which i can tell from data length in the ...
3
votes
1answer
938 views
send multiple messages from TCP server to Client(C sharp to Android)
I am developing an app, in which c sharp server communicates with android client.
Server needs to send multiple message to the Android tcpClient. As to send message I have to close the tcpClient ...
1
vote
1answer
386 views
TcpClient/TcpListener communication problems when not on localhost (multithreaded)
I'm working on a project where I communicate serialized commands over TCP/IP. I have it working when I'm on local host but when I run my listener on a different server, it fails randomly when trying ...
0
votes
2answers
256 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
1answer
1k views
How to open port 80 on Mac?
I want to send application logs from mobile device via tcp-socket. I put listener with nc -l -k 80 command in Mac's terminal. But port 80 is closed on Mac. How can I open port 80?
And other question ...
1
vote
1answer
1k views
Sending Binary File TcpClient - File Is Larger Than Source
To put my toe in the water of Network programming, I wrote a little Console App to send a png file to a server (another console app). The file being written by the server is slightly bigger than the ...
0
votes
0answers
162 views
In C# making a chat program how would you create an ftp feature
I have created a chat program and a created GUI for my FTP.I have coded what I think would work for the FTP, but when I run the solution it keeps giving me different results. That is, it creates the ...
0
votes
1answer
975 views
Socket Connection Over WiFi using Java and Dynamic C
Okay so I have had a few small problems while sending data over WiFi. I have a Rabbit RCM5400W WiFi board and I need to send data to it. I have created a few client/server socket examples in Java that ...
2
votes
2answers
679 views
TCP server/client connection issue C#
so I am currently programming a simple server/client to play some basic games i did in the past.
The problem is that I can only connect while I'm on the same computer, and not via LAN (as I would ...
0
votes
1answer
3k views
c# how to connect multiple clients to a TcpListener
I am implementing a game in a wpf application. I need to connect at least 10 players to a server. I have always worked with only one TcpClient and one TcpListener. Is there any way to connect a lot of ...
0
votes
1answer
492 views
Check if TcpListener has any connected clients
I am currently working on a c# program where I am opening a connection on a socket and listening for clients.
How can I check if the TcpListener has any clients currently connected. I want to do ...
0
votes
2answers
746 views
TCP read write issue .net
I am using the below code which sends the message from a specific server
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
send("Hello ...
0
votes
1answer
372 views
C# TCP Client error processing async message
I am having some trouble with a TCP Client , the service connects to the server and listens for messages, which are received and processed 90% of the time. After a bit of debugging I found that on ...
0
votes
2answers
518 views
Sending Array of Bytes from Client to server?
I have an application based on TCP Connection between Client and Server and i can send / receive strings, but i don't know how to send array of bytes instead : The function i'm using to Send a string ...
2
votes
1answer
300 views
c# TcpListener async BinaryFormatter.Deserialize
I have really simple TcpListener + TcpClient slient-server application. I accept incomming connections async. Then I read data from network stream.
I run this code in new thread. but I have to run ...
5
votes
2answers
231 views
Sending a file to a Dynamic port by a TCP Protocol
I am working with an application that receives a file by a TCP protocol, the application processes the file and then sends it by the same protocol, i am receiving the file without problems, my problem ...
-1
votes
1answer
205 views
Server refuses to accept requests from clients
This is a program to search for strings from a file. The string required by the client is given from the client side, in my case, using telnet. The program I have written is a server side one. It ...
0
votes
0answers
161 views
TCP connection not working on service
I have a really wierd problem... I had a windows form application that I used as a server, worked like a charm, but then I switched to a Service. Same code, but here it does not work when Im trying to ...
0
votes
0answers
629 views
Send and receive multiple files simultaneously using TcpClient and Tcplistner
I'm trying to build a Server\Client program which allows me to transfer multiple files simultaneously between my laptop and home computer.
My program works just fine when send a single file; however, ...
3
votes
1answer
894 views
NetworkStream is reading data that should not be there
I have a problem with the NetworkStream reading data from the socket buffer that should not be there. I am sending very big buffers by the way. Right now I have just been testing on the localhost.
...
1
vote
2answers
302 views
tcp message end best practices
whats the best practice to end a tcp message? I now have my own custom string of characters, but I am paranoid that in a case of blind luck, its possible to transmit something on the wire that can ...
-1
votes
1answer
2k views
C# Mutlti-threading file transfer using TCP
I am designing TCP server for receiving the file from client. Its working for one client. But Server need to respond multiple clients. I don't know how receive multiple files from clients at a same ...
0
votes
2answers
467 views
Connection issue in win7 using vb.net socket programming
I am using socket programming in vb.net to create a server client remoting application. The problem occurs when I use both the client and server in a win 7 box. It works fine for win xp or ...
0
votes
1answer
328 views
Weird Timeout on 4th HttpWebRequest in Multi-Threaded Application
I have a multi-threaded console application acting as a server. The server spawns a new thread every time a new client connects to the TcpListener:
//code copied from ...
0
votes
1answer
474 views
Developing IP messenger in VB.Net
I want to develop a Ip messenger app in VB.Net for all the user connected in LAN.
I am able to send message to user according to IP Address.
I want a functionality to list all the user which are ...
2
votes
1answer
710 views
Need a more graceful pattern for shutting down TcpListener
I have a TcpListener that when shutting down causes all in-progress clients to throw the below exception when they try and call EndAcceptTcpClient. Is there a more graceful pattern I can use to allow ...
2
votes
4answers
2k views
Serializing object ready to send over TCPClient Stream
I've got a server and client set up using TcpListener and TcpClient.
I want to send an object to my server application for processing.
I've discovered the using System.Runtime.Serialization and the ...
1
vote
1answer
200 views
Can I get TCP/IP packet before it was sent?
There is a client and a server applications running on the same machine.
They use asynchronous communication with TcpClient and TcpListener.
Server application do some data processing in a background ...
