Tagged Questions
The networkstream tag has no wiki summary.
10
votes
3answers
840 views
How to moq a NetworkStream in a unit test?
I'm using Moq & NUnit as a unit test framework.
I've written a method that is given a NetworkStream object as a parameter:
public static void ReadDataIntoBuffer(NetworkStream networkStream, ...
7
votes
3answers
1k views
C#: Implementing NetworkStream.Peek?
Currently, there isn't a NetworkStream.Peek method in C#. What is the best way of implementing such a method which functions just like NetworkStream.ReadByte except that the returned byte is not ...
6
votes
4answers
2k views
Difference between NetworkStream.Read() and NetworkStream.BeginRead()?
I need to read from NetworkStream which would send data randomly and the size of data packets also keep varying. I am implementing a multi-threaded application where each thread would have its own ...
6
votes
1answer
498 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 ...
5
votes
5answers
432 views
Where can I find high resolution financial data
I'm writing some Machine Learning software for equity and would like to find some tick data or at least 3 or 5 minute data.
I would like to have a year or two for testing.
I don't really care about ...
5
votes
3answers
488 views
C# - To close a NetworkStream, call stream.Close or socket.Shutdown?
I was wondering if anyone knew the best way to dispose of a class that uses a Socket object and NetworkStream object? The class in question has an instance of NetworkStream and an instance of Socket ...
5
votes
3answers
4k views
How to check if TcpClient Connection is closed?
I'm playing around with the TcpClient and I'm trying to figure out how to make the Connected property say false when a connection is dropped.
I tried doing
NetworkStream ns = client.GetStream();
...
4
votes
1answer
112 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 ...
4
votes
3answers
116 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 ...
4
votes
3answers
153 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 ...
4
votes
1answer
237 views
Networkstream.Write() Blocking Problem
I'm currently testing a managed c# network library I've written and I've come up against an occasional problem. This problem manifests as a very consistent (always within 30ms) 5000ms block on ...
4
votes
2answers
172 views
How to set a time-out for File.Create method on network drive?
I have a requirement in my application where I need to create the file in a network drive,
but when file creation in progess if network disconnected application hangs for a while and throws an ...
4
votes
2answers
2k views
TPL TaskFactory.FromAsync vs Tasks with blocking methods
I was wondering if there were any performance implications between using TPL TaskFactory.FromAsync and using TaskFactory.StartNew on blocking versions of the methods. I'm writing a TCP server that ...
4
votes
5answers
2k views
C# NetworkStream.Read oddity
Can anyone point out the flaw in this code? I'm retrieving some HTML with TcpClient. NetworkStream.Read() never seems to finish when talking to an IIS server. If I go use the Fiddler proxy instead, it ...
4
votes
1answer
2k views
C#: Alternative to NetworkStream.Read that indicates remote host has closed the connection?
With regards to handling a TCP/IP connection using the TcpClient class, is there an alternative for checking whether the remote host has closed the connection other than waiting for the ...
4
votes
3answers
2k views
What is the correct way to close a TCP connection
I have a TcpClient object which sends some data to server, using its underlying NetworkStream.Write().
Therefor, I have:
TcpClient server = new TcpClient(serverName, 50001);
/* ... */
NetworkStream ...
4
votes
2answers
2k views
NetworkStream, is there something similar to DataReceived for a SerialPort? (C#)
Ok, so I'm a little confused as to why I can't find this anywhere, or if it doesn't exist then why have Microsoft not implemented it?
So here's my scenario, I have a NetworkStream, which has a lovely ...
3
votes
2answers
94 views
Reading NetworkStream doesn't advance stream
I have a client-server application where the server transmits a 4-byte integer specifying how large the next transmission is going to be. When I read the 4-byte integer on the client side (specifying ...
3
votes
1answer
2k views
Sound keeps playing after external swf was unloaded
I have a flash application, some kind of a play-list that loads external SWF video player (I don't have code access to that external file), so users can watch the video or skip to another one. When ...
3
votes
3answers
642 views
Reading on a NetworkStream = 100% CPU usage
I am reading from a NetworkStream that is in a while loop. The issue is I am seeing 100% CPU usage. Is there any way to stop this from happening?
Here is what I have so far:
while (client != ...
3
votes
2answers
333 views
protobuf-csharp-port
I'm using Jon Skeet's (excellent) port of Google's Protocol Buffers to C#/.Net.
For practice, I have written a dummy Instant Messenger app that sends some messages down a socket. I have a message ...
3
votes
2answers
172 views
Do I have to store a TcpClient even though I only care about its stream?
A new instance of a TcpClient connects to a remote host. Its NetworkStream is retrieved and stored. Do I have to store the TcpClient itself as well to make sure it is not garbage collected?
In case ...
3
votes
2answers
10k views
C# Read Line from Byte Array (Not Convert Byte Array to String)
I have a byte array that I am reading in from a NetworkStream. The first two bytes tell the length of the packet that follows and then the packet is read into a byte array of that length. The data in ...
2
votes
4answers
53 views
C# Networking Issue
I'm trying creating a program that allows users to upload JAR Files for some third-party code they've written to an online server and then receive a String message back in response.
The online ...
2
votes
2answers
80 views
NetworkStream on port 21 (FTP) stops reading when it receives a byte with the value 10 (new line character)
I have a program that sends 88 bytes of raw data (not a string) using NetworkStream.Read and NetworkStream.Write.
Byte number 58 happens to have the value 10 (new line). The receiving program ...
2
votes
2answers
104 views
StreamReader.ReadLine not working over TCP when using \r as line terminator
When I use only \r as a line terminator, the StreamReader.ReadLine() method doesn't work. It works if I use Environment.NewLine, \r\n or \ra ("a" being any character). Is this a bug? The same problem ...
2
votes
1answer
79 views
C# - NetworkStream Error - “The operation is not allowed on non-stream oriented sockets.”
I am trying to connect to a socket and then Read a NetworkStream.
My code is below:
NetworkStream myNetworkStream;
Socket socket;
socket = new Socket(AddressFamily.InterNetwork, SocketType.Raw, ...
2
votes
2answers
215 views
Implementing a timeout with NetworkStream.BeginRead and NetworkStream.EndRead
I've written the following function to implement a timeout feature using NetworkStream's asynchronous read functions (BeginRead and EndRead). It works fine until I comment out the line ...
2
votes
3answers
212 views
What are some reasons NetworkStream.Read would hang/block?
MSDN documentation seems to suggest that NetworkStream.Read will always return immediately. If no data is found it returns 0. However, I have some code that is currently deployed, that only in some ...
2
votes
1answer
81 views
When to use different ports for client-server application?
When will I normally need different ports for client-server communication?
(This question is for C# and general socket programming).
I have implemented and been using a simple C# client-server ...
2
votes
1answer
65 views
How to unit test a class derived from NetworkStream?
As part of a project I have a class which derives from NetworkStream. In this case it provides wrapped implementations of methods such as Read and ReadByte to provide some context specific safety (it ...
2
votes
2answers
351 views
NetworkStream.Write vs. Socket.Send
I have a c# application that I use a custom FTP library for. Right now Im using Socket.Send to send the data but I was wondering if it would be better to initiate a NetworkStream with the socket and ...
2
votes
2answers
370 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
0answers
243 views
delay of receiving data from a gprs connection
I am writing a parser in C#. It receives and sends a packet with max length = 100. However, the time between (receiving and sending) after each packet is more than 2 seconds. I dont know whether it is ...
2
votes
1answer
86 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 ...
2
votes
2answers
171 views
Until when does NetworkStream.Write block?
I can think of these possible answers:
Until the data is written to some internal buffer in the IP stack.
Until the data is sent over the wire.
Until a confirmation of reception is received from the ...
2
votes
4answers
1k 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 ...
2
votes
1answer
433 views
Invoke The stream does not support reading
I have a c# network application where alot of anonymous users connect to (game service).
Now I check the logs and occasionally I see this exception:
[10:30:18.21352] System.Int32 Read(Byte[], Int32, ...
2
votes
1answer
318 views
How to estimate the size of byte array/buffer to read from NetworkStream?
int bufferSize = 8192;
Byte[] buffer = new Byte[bufferSize];
I need to read from a NetworkStream which would have a continuous flow of incoming data at a high rate. I wanted to know
What should ...
2
votes
2answers
199 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 ...
2
votes
1answer
297 views
How long will NetworkStream Read wait, before dying?
I have a call to Read on NetworkStream objeck, which uses Socket.Receive internally.
Say that no data is comming in. How long before the Read Method exits?
ReceiveTimeout is set to 0 (infinite ...
2
votes
2answers
2k views
How do you wait for a Network Stream to have data to read?
I have a worker thread in my application that is responsible for three different things. Requests for two of the jobs turn up in Queues that I have written, the other job is activated when a request ...
2
votes
3answers
4k views
C# NetworkStream.Read()
I'd like to empty read buffer of the socket so I wrote follow code...
byte[] tempBuffer = new byte[1024];
int readCount = 0;
while ((readCount = tcpSocket.GetStream().Read(tempBuffer, 0, ...
2
votes
5answers
482 views
Counterpart of .NETs NetworkStream / SslStream in Delphi 7
I have written a secure TCP server in .NET. This was basically as simple as creating a TcpListener instance and wrapping the connected client's NetworkStreams with SslStreams.
Now I need to access ...
2
votes
2answers
2k views
Does NetworkStream.DataAvailable see buffered data?
Does NetworkStream.DataAvialable know whether the sender's send buffer is empty? Or does it simply indicate whether the receiver's read buffer has data? My assumption is the latter...
Specifically, ...
2
votes
4answers
851 views
How do I determine when there is no more data to read in a NetworkStream?
I have a web app which connects to a server using a TCP connection and reads a binary document which it then writes to its response object. In other words it's transferring a file from a backend ...
1
vote
1answer
54 views
Read a Network Stream from a socket
I am trying to read a Network Stream from a socket. I know that the Address Family of the socket is InterNetwork, the Socket Type is Stream and the Protocol Type is IP.
I have an IPEndPoint which ...
1
vote
1answer
68 views
issue with multiple clients and getting a specific stream
I have a simple multithreaded C# server and client. When just one client is connected I can interact with it fine, but when two or more are connected, it seems I am using the last NetworkStream. What ...
1
vote
3answers
102 views
memorystream copyto network stream issues
I'm having a problem with this code here.
using (MemoryStream ms = new MemoryStream())
{
BinaryFormatter bf = new BinaryFormatter();
bf.Serialize(ms,SerializableClassOfDoom);
ms.Position ...
1
vote
1answer
54 views
Can we establish a connection-less or connection-oriented nature of a connection between 2 computers connected via bluetooth?
This sounds a silly question, but I'm trying to create a network between 3 computers over bluetooth, can we try to establish a connection-less or connection-oriented connection between each node, just ...