Consider the following scenario, a servlet has been written in Java and once you connect to the servlet, it starts writing to the OutputStream, let's say 10 million bytes, 1 byte at a time.
You have a client program which reads the servlet's response stream and reads say 100 bytes and calls close. Now if your client program is in Java, the streams close immediately and the server stops sending the content, but if the client program is in C#, the close call takes a long time to finish because it apparently waits for server to finish writing all the 10 million bytes.
So, I have two questions on this,
- Why does C# behave differently?
- What can I do to ensure the Close call on the C# stream closes the stream immediately and does not allow the server to keep sending the data?
Any pointers will be greatly appreciated :-)
Close(); since it is the client that is callingClose()this is different) – Marc Gravell♦ Jun 29 '11 at 7:30Why does the “Close” call on a stream behave differently in C# and in Java?Because they're two completely independent systems and frameworks, and no one ever claimed that they would work the same way. But to answer your question, you'll need to show us some code. – Bobby Jun 29 '11 at 8:34