.NET Framework class, providing client connections for TCP network services.

learn more… | top users | synonyms

1
vote
1answer
243 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 ...
0
votes
1answer
92 views

TcpClient hostname hang

I'm having a problem with using a TcpClient to send data over a stream written to by a StreamWriter. private void sendMessage(string[] hostlist, string message) { foreach (string ...
-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
1
vote
1answer
139 views

Recive different type of objects on the same TCP socket

so here is the deal: I have a server running that is constantly accepting clients by TCP socket: public ArrayList<Socket> lista_users = new ArrayList<Socket>(); Socket s; s ...
0
votes
0answers
144 views

TCP/IP Connects and Sends But Doesn't Work After Initial Sends

HELP! I'm Going Crazy! I'm using a Visual Basic 6.0 Winsock for the server. I'm able to keep an active connection and I even receive from my Android App to the VB App ...
1
vote
1answer
96 views

Can't get full response from TCP server

I'm trying to connect to the dict.org server with port 2628 and I can't get the full response from the server. Here is what the code looks like: TcpClient client = new TcpClient("216.18.20.172", ...
-6
votes
1answer
229 views

How to check if the client is connected to the server?

I'm working on a remote chat server. When I open the chat(client side) how can I check if it's connected to the server? I don't have any idea of doing that
0
votes
1answer
85 views

Populate TreeView with remote computer folders over TCP Client

I want to make an Explorer to view folders from a remote computer using the TcpClient Dose anyone have any solutions ? The method i apropched is that on the server side i made that when i send the ...
0
votes
3answers
173 views

Do i need multiple streams and TCP clients to make a chat application in c#

i am using the following code on server for communication between the server and client TcpListener server = new TcpListener(IPAddress.Any, 9999); server.Start(); Console.WriteLine("Waiting for ...
0
votes
0answers
270 views

Android (TCP/IP - Localhost or IP 10.0.2.2) works fine but not for IP

So I got my Android application (emulator) connecting to my VB.NET project (TCP/IP) (IP - 10.0.2.2) . I'm able to receive and send through TCP/IP on a localhost. BUT, now I have my Server(VB.NET) on ...
1
vote
2answers
548 views

TcpListener/TcpClient stops processing data under certain circumstances

I have an issue where, depending on the startup order of two network devices, I seem to lose the ability to receive data on one end. The setup is one small server written in C# (.NET 4.0) that ...
1
vote
1answer
135 views

Using StreamSocket on Wpf and WinForms

As you know Microsoft just removed the whole System.Net.Sockets on .Net for Windows store apps and now you should use StreamSocketListener if you want TcpListener, StreamSocket for TcpClient, etc. At ...
0
votes
3answers
428 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 - ...
2
votes
3answers
185 views

Suddenly: java.lang.NullPointerException, worked fine last night

I made a small program that listens and sends lines on a tcp socket and appends the received info to a JTextArea. I use this to chat on a Minecraft server without having the game open. I was working ...
1
vote
1answer
258 views

Sending TCP packets over internet (using Ruby)

I am trying to learn how to send TCP packets across the internet to another computer. So say, computer 1 sends data across the internet to computer 2 (using TCP). Assuming that both computer have ...
0
votes
0answers
22 views

Too much writing on a socket?

I am getting an IOException when I write to a TCP socket. This doesn't happen on lan. Am i writing too much to quickly? Does w which is a BinaryWriter to the TcpClient NetworkStream not block? How do ...
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 ...
1
vote
0answers
30 views

tcpclient C3145

I'm currently using Visual Studio C++ to generate .dll in order to transmit data between two programs: essentially, one program notifies the other when an event occurs. I'm trying to do this via a TcP ...
0
votes
1answer
372 views

Reading message(data) from TCPServer Buffer by using StreamReader.ReadLine() in TCPClient(ReadLine() doesn't return until a disconnection)

I have problem with StreamReader.ReadLine() method.I wrote a C# program, but only TCPclient side. I'm using Hercules program to create a TCPServer. I entered the port number and made a connection. ...
0
votes
1answer
95 views

Monotouch — Changing label text in ViewController from another class?

I have a class that functions as an async TCP Client. In that class, I have a callback function, such as Client_Connected. This fires when my TCP Client has been connected. In my main ...
2
votes
1answer
663 views

TCPClient not receiving data

I want to use StreamReader and StreamWriter to receive and send data over TCPClient.NetworkStream. The code is depicted below: Client code: using (TcpClient client = new TcpClient()) { ...
0
votes
1answer
222 views

Connecting to Teamspeak with Telnet and C#

i want to connect to the local Teamspeak Interface by Telnet and C#. I currently have no Idea how to realize it. I am using a TcpClient but i can only send one Command and i get only one Answer, how ...
0
votes
3answers
2k views

What is the correct way to read from NetworkStream in .NET

I've been struggling with this and can't find a reason why my code is failing to properly read from a TCP server I've also written. I'm using the TcpClient class and its GetStream() method but ...
0
votes
2answers
120 views

Again .NET TcpClient and Threads

I've read much on TcpClient and multithreading at stackoverflow but think I didn't find a clear answer to this. I have an application with 3 identical threads. (calling the same method on each thread ...
1
vote
1answer
127 views

How should I bridge TCP traffic using C#? Need to copy traffic on one port and send it to another

I need to bridge traffic from one port (say port 3000) and send it to a new port (say port 4000) and have full bidirectional TCP support. How should I go about solving this? Should I use the socket ...
-2
votes
1answer
168 views

C++ Socket disconnects intermittently

I'm new to socket programming and we have a running MFC client application over the network whose socket for some reason disconnects intermittently at least once a day. It's not a problem with the ...
1
vote
3answers
366 views

Node.js: client doesn't die when TCP connection closes

I built a simple tcp server and a simple tcp client in Node.js Now, when the client send "exit" to the server, the connection was successfully closed, server delete the socket from his sockets list ...
0
votes
0answers
90 views

Regarding tcpclient timeout

I have tcplistener on port 21 waiting for incoming connections.When tcplistener receives an incoming request,i establish a control connection through instantiating a new Tcpclient,the FTP command and ...
1
vote
0answers
180 views

TCPClient connects to Gmail but does not receive first message

I am using this code to connect to gmail. Every WriteLine() is written. So presumably everything worked correctly? However no message is written to the console. What is wrong? Here is my code: using ...
0
votes
2answers
196 views

Is there an Open source framework based on TCP for multiple client management?

Is there an open source robust framework available based on TCP for multiple client communication and control via TCP server ? My goal is to have a TCP client - server established and the framework ...
2
votes
2answers
1k views

Android TCP connection best practice

I am working on an Android application that requires a TCP connection to a TCP server(Written in Node.js) My Android TCP client is working an can send messages back and forth. My spesific questions ...
1
vote
1answer
153 views

Difference between .net TcpClient and Delphi2010 IdTCPClient

I have the following code written in delphi2010: TCPClient := TidTcpClient.Create; TCPClient.Host := '192.168.12.131'; TCPClient.Port := 1312; TCPClient.Connect; ...
0
votes
2answers
225 views

NetworkStream doesn't always send data unless I Thread.Sleep() before closing the NetworkStream. What am I doing wrong?

I'm having problems sending a very small piece of data (a date) to another TcpClient running on the same computer. In the code below you will see that it sleeps before closing the NetworkStream. If I ...
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 ...
1
vote
1answer
957 views

C++ socket programming Max size of tcp/ip socket Buffer?

I am using C++ tcp/ip sockets. According to my requirements my client has to connect to a server and read the messages sent by it(that's something really new, isn't it) but... in my application i have ...
1
vote
1answer
216 views

Character encoding issues with Socket Connection

I am sending data to a Socket and connection and retrieving some data. The data I am retrieving (which is an XML document) contains umlauts like ä,ü,ö,... but these are not correctly encoded, I only ...
0
votes
1answer
300 views

Android How to read response of TCP client on port 502

I am developing an application to send a request to port 502 and want to read the response from the same port. This is what i tried so far public class Autoamtion extends Activity { Socket ...
0
votes
0answers
234 views

What is a good NetworkStream.Read Buffer Size?

I'm going to use TcpClient for communication with a system which is connected directly (via cross-cable) to my target system. The messages I am going to receive are often very simple, in fact they ...
0
votes
1answer
266 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 ...
0
votes
0answers
215 views

Simultaneous send() and recv() between a server and client program in C?

I'm doing a program where I have a client and server. What the client does is 'ping' the server by sending a msg that contains 'ping'. When the server gets the 'ping' it should send back a 'got_it'. ...
3
votes
1answer
958 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
3answers
122 views

Class Derived from a Disposable Class having Disposable Member

I have some questions regarding the disposable classes. Suppose I have an IDisposable implementing class having some disposable members. I have implemented the Dispose() method, i.e.: class ...
-2
votes
1answer
94 views

Minesweeper On A Network Using TCP Server/Client [closed]

I have this minesweeper game that I already finished a couple of days ago(the code below is not the finished code), Now I want to make this game be playable using two computer/network, I really don't ...
1
vote
2answers
69 views

Disposing a member TcpClient properly

I have a class having a TcpClient member. e.g.: class CustomNetClient { TcpClient tcp; NetworkStream ns; //... } I want to make sure that it is closed properly. So implemented ...
1
vote
2answers
459 views

How to establish a SSL enabled TCP/IP Connection in Ruby

I need to establish a TCP connection with my server which has a SSL enabled port, that I need to access. I need to send a XML file and get the response from the server. Before the SSL was enabled, ...
0
votes
1answer
333 views

How to get an acknowledgement for the client socket from server?

I have a client socket which sends messages to the server.I want to get an acknowledgement on the client side whenever the server receives the message. Is it possible to get that acknowledgement. I ...
1
vote
1answer
385 views

C# TcpClient losing packets

I'm having some issues when I really stress test my networking code. Essentially once the socket is set up it calls this: NetworkStream networkStream = mClient.GetStream(); ...
0
votes
1answer
755 views

send string through TCP (VB.NET)

I connected successfully to onlinenic API using TCP client, but facing an error when trying to login. Below is my code (Username and password are demo as was provided by onlinenic) Imports ...
2
votes
1answer
481 views

Send data using NetworkStream

In my windows service I need to stream data to a tcp server. I declared a global TcpClient and NetworkStream and initiate them when the service starts. Every 30 seconds I go through an array of about ...
0
votes
1answer
163 views

Tcp echo server not responding to external IP addresses [closed]

I've implemented a simple echo server using this tutorial After this, I installed it on a remote computer (aws server, the target port is open in the security group) and tried to connect to it via ...

1 2 3 4 5 15