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
0answers
30 views
TLS Support in .Net SslStream
I am a beginner in networking with VB2010 and .Net4. To get things working, I am trying to write my own TCP Client, inherited from the one given by the .Net BCL, and extending it with some routines ...
3
votes
1answer
100 views
Asynchronous TcpClient not reading all the data in time
The code below works if there's not a lot of data from the server, or if there's a lot data and I uncomment the Thread.Sleep(500) line. I however don't want to use the Thread.Sleep line, but if I ...
0
votes
1answer
68 views
Waiting for multiple TcpClients to have data available - WaitHandle or Thread.Sleep?
I am writing a server application that will receive data from multiple TCP connections. We would like to be able to scale to ~200 connections. The first algorithm I wrote for this is as follows:
...
1
vote
1answer
64 views
C# configuring TCPClient client's port
I have coded TCPClient() in C# to communicate with another device on LAN. I only have to specify the target IP and port number.
Now I am coding something quite similar to it. However, it specifies ...
0
votes
0answers
83 views
TcpListener with threads?
I have this very simple code of multithreaded (blocking) TcpListener "
public class Server
{
public void Serve(IPAddress address, int port)
{
TcpListener listener = new ...
1
vote
1answer
74 views
How do I open a TCPClient with a given source port? [duplicate]
First off, I don't want to do this in production! I need to test whether someone else's implementation of a protocol on top of TCP is causing issues.
I want to use a certain outbound port over and ...
-2
votes
1answer
180 views
How to solve cross Thread Operation not valid in windows form? [duplicate]
I have been stuck here .....I am creating a chat server windows application,which will host and all client will register
let me explain my scenario,when i start a chat server.....I have used ...
1
vote
1answer
71 views
.NET TCPClient Connection State
Background
I am communicating with a server (that I can't touch, of course) over a TCP connection. The application I am connecting to requires two connections. One as an "I ...
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 ...
0
votes
2answers
75 views
Sending an Array of Strings over the Network
I'm trying to retrieve usernames in a listview which is in string format. What I want to do is retrieve those usernames and store them in an array of strings and send them over the network, so that ...
0
votes
1answer
244 views
TCP Socket Based File Transfer: Receiving And Saving A File Properly
I'm trying to create a file sharing program. So far, the connection and the file transfer part is taken care of. But I'm currently having problems on how to receive and save the file properly.
I can ...
0
votes
1answer
128 views
Cannot Write Over TCP Network Stream
I'm encountering a problem when I try to write over a network stream.
When I press this button here, I can successfully write to the tcp stream and the other part of the program successfully receives ...
0
votes
0answers
79 views
Can anyone give an example on how to make connection with a server or remote machine with RemObjects (TCPclient and TCPserver) control?
I am using RemObjects TCPClient and TCPserver control to make TCP Connection between two computers. However, it is not working as expected, although remote machine is showing that client machine try ...
0
votes
0answers
58 views
How to access a stream in multiple threads?
I am developing a .NET application to communicate with a PLC device over TCP/IP. The PLC device requires to send a sendAlive packet in 10 seconds periodically , otherwise the device terminates the ...
0
votes
1answer
186 views
TcpClient connection broken after timeout
I am setting timeout for a TcpClient using TcpClient.ReceiveTimeout property. When the TcpClient.Read() method throws an exception ("connected party did not properly respond after a period of time") ...
1
vote
1answer
355 views
Check if socket is connected in compact framework
I have a server software running on windows desktop and developed in .net that is always listening for incoming connection on sockets through TCP/IP.
Then I have a client software running on CE 6.0 ...
1
vote
1answer
95 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", ...
1
vote
2answers
539 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 ...
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
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 ...
1
vote
1answer
150 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
1answer
89 views
Telnet with TcpClient, ignoring options
I am connecting to an old device using TcpClient. Initially I am ignoring every IAC sent by the server. What happens then? Does the server (i.e. the device) assumes its options are accepted or falls ...
1
vote
1answer
187 views
.NET Threading issue, TcpClient
My service's thread count is going bonkers.
I create new tcpclient every time a connection is needed. that is handled by taskfactory, with longrunning task flag.
I use 2 concurrent bags and ...
1
vote
0answers
163 views
TaskFactory TcpClient [closed]
I have a piece of code that connects to a third party system through TCP.
The application is in fact a windows service.
I use class TCPClient to perform the operation, however, whenever the ...
0
votes
1answer
327 views
How to gather received buffers in socket programming (TCP/IP) in .net?
I am using the server-client model for communicating with a hardware board using socket programing.
I receive data from board using "read()" method of "NetworkStream" class which reads a buffer with ...
0
votes
0answers
54 views
TCP connection deadlocks? ignores/dies?
I cant reproduce this quickly but i know how to reproduce this.
When my client connects to the server and my client idles for a long time (it waits for the server to give it a msg as its subscribed ...
2
votes
1answer
208 views
How do i check if TcpClient is connected?
When my client app closes the socket or even terminates my server still thinks its alive. I even check TcpClient.Connected then i see this. I bolded the important part
true if the Client socket ...
0
votes
1answer
120 views
Communicating between WP 7 Application deployed on a emulator and a desktop application
Currently I have a server which uses the TcpListener class to communicate with clients.
I have to test the communication between the Windows Phone client app and the server.
The problem is while ...
0
votes
4answers
467 views
NetworkStream doesn't support seek operations
I'm creating simple proxy server but I faced a strange situation, I've following code :
var clientRequestStream = _tcpClient.GetStream();
var requestHeader = clientRequestStream.GetUtf8String();
...
-4
votes
1answer
84 views
How to do C# networking ? is there any books related to it? [closed]
HI guys i want try some of my programs in the internet so i need a help right here, is there any kind of book that can help me in this regard. If anyone know please write the name of the book along ...
3
votes
3answers
176 views
Writing to TcpClient and NetworkStream
I am a little confused as to how i should use tcp streams in .net.
Right now when i want to write lets say 40bytes i write it to a memorystream then call ToArray() and write the memorystream to ...
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
2answers
1k views
Converting std::string or string^ to byte array in c++/cli
I know this is a frequently asked question and I havent got a clear answer for converting a std::string or String^ to a byte array for writing in to a stream for tcp communication.
This is what I ...
1
vote
1answer
691 views
TCP client in ASP.net
i'm trying to connect from asp web application to tcp server. I did this using application in C#, and now i'd like to see if it will be working from web browser.
My code is:
using System;
using ...
1
vote
1answer
231 views
.NET TcpClient/NetworkStream implementation that supports async operations and respects timeouts
Based on the number of questions, forum posts, etc, it appears that the TcpClient/NetworkStream implementation in the BCL lacks decent support for cancelling IO operations. With the addition of Async ...
1
vote
0answers
535 views
How to properly use TcpClient ReadTimeout
After spending way more time than seems reasonable to find an answer to this simple question, I thought I would leave my results here so others don't have to jump through all the hoops and wrong paths ...
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
130 views
How to stream data structure or record through NetworkStream?
I have the following data structure or record, which I need to stream to and from another machine through NetworkStream.
TRemoteRecord = record
command:TRemoteCommand;
status:TRemoteStatus;
...
0
votes
1answer
1k views
Get remote port of a connected TcpClient
For the purposes of constructing a rate limiter I need to be able to distinguish different users being routed through the same gateway. So if I have 100 clients with the same IP address I would like ...
0
votes
1answer
1k views
How to implement TCP KeepAlive in VB.NET on a TCP Client(socket)
I want to implement the TCP KeepAlive in order to check dropped connections by running a timer.
In my case, I have a TCP Client (using socket class) and a third party server (i have no control on ...
2
votes
1answer
2k views
How to check the connection state of a TCP Server (Socket) with TCP Client in VB.NET
For almost a week I am reading and trying to find a solution for checking connection state using a TCP Client (using socket class)
In my scenario I have a TCP Client that is connected to a server (it ...
0
votes
1answer
146 views
Delay when reading from TCPClient
I have the following code, which reads data of unknown size into a memory stream.
Dim cl As New Net.Sockets.TcpClient()
cl.Connect(host, port)
Dim st As IO.Stream = cl.GetStream()
Dim bytes(50000) As ...
0
votes
2answers
670 views
Redirecting TCP NetworkStream traffic in a .NET socket server
I need to build a load balancer in C#.NET. I'll need to route requests based upon some criteria to an array of back end .NET Tcp socket servers.
What ways does .NET expose to redirect traffic? Is ...
2
votes
1answer
378 views
Develop TCP client under .net 4 with sync & async features that listens also server initiated notifications
I have developed a TCP server by async pattern under .net4 in c# that handles hundreds of TCP connections simultaneously. It has been working without any problems for months, so, I have experiences ...
2
votes
2answers
637 views
.Net Socket doesn't respond to remote disconnect?
I'm writing a small (C#) client application that sends data using a TCP/IP connection to a remote server. I'm using the standard .Net TcpClient object and want to leave the connection open from the ...
0
votes
1answer
864 views
TCPClient. How do I receive big messages?
I have the following code:
private string Connect()
{
string responseData;
try
{
TcpClient client = new TcpClient(ServerIp, Port);
client.ReceiveBufferSize = ...
0
votes
0answers
169 views
Transferring data of connection with WCF app.config in the source code
WCF! Here is my app.config:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
<bindings>
<netTcpBinding>
...
0
votes
0answers
127 views
Getting HTTP 404 when trying to use TcpClient in a DLL
I have a "web service" in a third-party hardware device we work with. We cannot change the code in the boxes. I am calling this web service to get JSON data from the box. In order to get it working, I ...
0
votes
1answer
277 views
JAVA server and .Net client programming
I am doing communication with Java server.
One application which is developed in java and it runs on some ip,port.
e.g. 192.168.1.1 port 9090
No wi want to communicate to that server using my ASp .NET ...

