Tagged Questions
0
votes
1answer
65 views
How to read all requested data using NetworkStream.BeginRead?
There is a code of async server. Client sends Header - size of Data Block + Data Block.
Server reads asynchronously first Header and then Data Block.
I need, after I read Data Block run the ...
1
vote
1answer
276 views
Sending serial byte data over TCP/UDP - Visual Basic
What I'm trying to do is build a windows application through VB 2012 Express in VB language to send serial commands over TCP/UDP to networked television screens on the same network. NEC (the company ...
1
vote
2answers
74 views
Detect an SslStream (client) connection attempt to an insecure Server (NetworkStream)?
I have a server that is listening for clients with a TcpListener.BeginAcceptTcpClient() method. When a client connects, the EndAcceptTcpClient method gives me the TcpClient object and then I call ...
0
votes
0answers
125 views
Getting http chunked response with Tcp
I would like to know how can be read an http response with Transfer-Encoding chunked.
I wrote an example of what I am doing. One problem I came across with this is that clientStream.DataAvailable ...
0
votes
3answers
659 views
How to End NetworkStream.Read() safely ? (in C# or VB.net)
I wrote a class that tries to read byte data sent by a server, and when my app ends, I also want the loop to end, but it appears NetworkStream.Read() just waits if no data is ever available.
using ...
0
votes
0answers
92 views
tcpclient sent packets not arriving at destination
I am trying to send messages using tcpclient to a remote server with a provided port. In my code I see the connection is successful and the message being sent but I am notified by the developer on the ...
0
votes
1answer
133 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 ...
1
vote
2answers
385 views
NetworkStream.DataAvailable vs. TcpClient.Available
In the following scenario;
System.Net.Sockets.TcpClient TC = SomeHowObtained;
System.Net.Sockets.NetworkStream NS = TC.GetStream();
Is there any difference between using NS.DataAvailable and ...
0
votes
1answer
302 views
TcpClient TimeOuts vs. NetworkStream TimeOuts
In the below generic scenario:
System.Net.Sockets.TcpClient TC = SomeHowObtained;
System.Net.Sockets.NetworkStream NS = TC.GetStream();
there are 3 timeouts as far as I see:
NS.ReadTimeout // 1
...
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
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
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 ...
2
votes
1answer
480 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 ...
2
votes
1answer
2k views
TCP client\server - client doesn't always read
Client Code:
TcpClient client = new TcpClient();
NetworkStream ns;
private void Form1_Load(object sender, EventArgs e)
{
try
{
client.Connect("127.0.0.1", 560);
ns = ...
0
votes
0answers
181 views
Client side stops receiving data from NetworkStream
I have a simple client/server desktop apps pair connected via TcpClient/TcpListener on the same PC. The protocol between the two is very simple but there is a lot of data being sent/received.
I am ...
-1
votes
1answer
257 views
C# How to send more than one byte streams using TCPClient?
I'm trying to make Login feature by using TCP Client. I have two forms: Client-side and Server-side.
The Client-side handles user input while Server-side connect to database.
The problem is the ...
0
votes
2answers
501 views
C#: Correctly finishing connection when sending data to WebClient
I need to locally test some code that uses a WebClient object for communicating with an http server. For that purpose, I decided to write an incredibly simplistic mock server that reads some bytes ...
1
vote
1answer
414 views
Socket connection gets closed for no apparent reason
I am trying to implement Facebook X_FACEBOOK_PLATFORM SASL mechanism so I could integrate Facebook Chat to my application over XMPP.
Here is the code:
var ak = "my app id";
var sk = "access ...
1
vote
1answer
233 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 ...
0
votes
1answer
131 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;
...
2
votes
1answer
304 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 ...
0
votes
0answers
158 views
tcpclient networkstream to streaming API cannot connect
I am trying to setup a tcpclient networkstream connection to certain API that will need to remain open while the program consumes (parses) the json data. The problem I am having is that at the point ...
0
votes
1answer
126 views
Difficulty Establishing Connection With a Server in C# using TcpClient and Working with NetworkStreams
I'm working on a simple project for my Data Communications class. I predicted it would take me two hours max but it's my first time writing software that makes a connection to the web and my first ...
0
votes
1answer
2k views
C# Streaming video over NetworkStream / TCPClient
I am sending a video feed from an Xbox Kinect from a client program to a server. I have everything working but the problem is the frame rate. I'm thinking what is happening is it is sending faster ...
0
votes
0answers
1k views
C# Reading From NetworkStream using StreamReader
I'm a Java Developer Trying to build a Simple C# TCP Client. however for the life of me I can't figure out how to get this bloody thing to work. Here is my TCPClient code. BTW, I stole this directly ...
0
votes
2answers
607 views
Disposing TcpClient when having a reference to NetworkStream
Say I have the following code:
public static Client Connect(string hostname, int port, bool useSsl)
{
TcpClient tcpClient = new TcpClient(hostname, port);
if (!useSsl)
{
return ...
4
votes
1answer
569 views
Tuning buffer length for reading small data from NetworkStream
How to fine tune the bufferSize while reading small data from the TcpClient/NetworkStrem?
If the bufferSize is big like 1024, 4096 the Read/BeginRead blocks.
If I set the bufferSize to 16, 32 it works ...
1
vote
0answers
233 views
vb.net ISCP receiving after sending
Hey all i have the following code that i send a command over the network to a Onkyo A/V reciever. I would like to get the feedback from that as well but i can not seem to find a way of doing that. I ...
0
votes
1answer
36 views
Error in server connections
I'm now trying to work with server. I have this code:
I'm starting 'HandleCC' method in thread with 'ParametrizedThreadStart'. I'm trying connection on '127.0.0.1'. I can connect. When I'm ...
0
votes
2answers
2k views
How do I use the .NET NetworkStream and TcpClient to connect to a remote IP and wait for data?
I am struggling a lot with this code I am trying to get to work. I have successfully made a connection with the TcpClient object to two separate remote machines and transmitted data to them. ...
4
votes
4answers
1k views
Does one need to close both NetworkStream and TcpClient, or just TcpClient?
I'm reading this page and noticed this:
Calling this method will eventually result in the close of the associated Socket and will also close the associated NetworkStream that is used to send and ...
3
votes
3answers
954 views
C# client/server Question
I'm incredibly confused as to what is going on here. I've been putting in break points and I just can't seem to understand. Basically, I have a client and a server. I want the client to send two ...
2
votes
4answers
4k views
c# NetworkStream write() and read()
I'm wondering how to stop Networkstream.Read() from blocking thread. I have separate thread where NetworkStream.Read() is waiting for data from server. Assume that user press some button that send ...
4
votes
2answers
3k views
C# - TcpClient - Detecting end of stream?
I am trying to interface an ancient network camera to my computer and I am stuck at a very fundamental problem -- detecting the end of stream.
I am using TcpClient to communicate with the camera and ...
2
votes
1answer
201 views
Having trouble sending three or more packets consecutively
I am trying to implement a Client/Server model using TCpClient, with its Networkstream.Write()/Read() functions sending/receiving a byte array.
It works most the time, except if I try to send three ...
0
votes
1answer
602 views
NetworkStream.BeginRead when client connection is broken
Ive got a TCP client stream that is being read via async call NetworkStream.BeginRead (passing an async call back delegate). The problem is to detect when the connection is down. Currently if the ...
1
vote
2answers
187 views
What is the proper way to implement a line based network worker class
I'm building an IRC client, and want an IRC independant networking class that just sends and receives lines between the client and server. Sending lines is OK, but I'm at a loss for a good way of ...
1
vote
1answer
2k views
How to port TCPClient and NetworkStream to Silverlight?
Why are TCPClient and NetworkStream missing from Silverlight?
Are there any known ports of TCPClient and NetworkStream to Silverlight?
If there aren't, am I allowed to copy the source code from the ...
1
vote
2answers
1k views
Reading from a network stream: packet fragmentation
I got a server that is managing two clients through NetworkStream.Read.
Application protocol is:
ClientMessage [128 Bytes] -> Response from Server [128 Bytes]
Now @ server-side:
Is it possible, ...
1
vote
1answer
2k views
Dont get any data from socket when data should be there, and no exeptions raised, connection is open. Using DataAvailable to wait for data
I have a problem reading data from an RFID-reader. I connect to the reader by tcp and wait for DataAvailable to be true, then reading the data until I got a end of data character. Then I just go back ...
3
votes
5answers
3k views
C# Why doesn't “Flush” force the bytes down the network stream?
I have a project where I'm trying to send a serialized object to the server, then wait for an "OK" or "ERROR" message to come back.
I seem to be having a similar problem to th poster of : TcpClient ...
1
vote
3answers
445 views
Even though client wrote the data on network stream it is not available on server Why
client side coding
TcpClient tcpclnt = new TcpClient("192.157.1.1", 8001);
Stream stm = tcpclnt.GetStream();
byte[] bites = new byte[dataLength];
// assigning values for bites
...
0
votes
2answers
416 views
How to measure the time taken by C# NetworkStream.Read?
I want to measure time taken for client to receive data over tcp using c#.
Im using NetworkStream.Read to read 100 megabits of data that are sent using NetworkStream.Write. I set the buffer to the ...
2
votes
3answers
3k views
C# TcpClient.GetStream().DataAvailable is false when it should not be
So, it would seem that a blocking Read() can return before it is done receiving all of the data being sent to it. In turn we wrap the Read() with a loop that is controlled by the DataAvailable value ...
0
votes
4answers
520 views
Transfering items over NetworkStream causes some data to get clobbered
I am sending a filename(string), filesize(int), and the file(byte[]). What is happening is that in certain cases, depending on how quickly the data gets processed on the server side, the NetworkStream ...
0
votes
3answers
1k views
Transfering a File with a NetworkStream then rebuilding the file fails
I am trying to send a file over a NetworkStream and rebuild it on the client side. I can get the data over correctly (i think) but when I use either a BinaryWriter or a FileStream object to recreate ...
7
votes
2answers
1k views
BeginReceive / BeginRead timeouts
I'm using a NetworkStream & TcpClient to asynchronously receive data using BeginRead. I need to apply a time-out to this operation, such that after a specified amount of time the read will be ...
1
vote
3answers
409 views
When sending data larger than the SendBufferSize, how will the data be received?
I just asked a question on how to send data larger than the SendBufferSize and the answer was that is would be send in a couple of parts.
My second question is how will this data be received? Will it ...
2
votes
2answers
372 views
Can you send a file larger that the SendBufferSize throuh a TcpClient?
I am experimenting with the Tcp connections in .NET and I would like to send some data that is larger than the SendBufferSize proporty of the TcpClient object. Is it possible to send the data by ...
1
vote
1answer
1k views
.NET NetworkStream closed, how to be sure all data is read?
I've an open TCP connection, and reading using NetworkStream.BeginRead(). Once the connection is closed at either end, the callback is called and the stream object is useless - like documentation ...

