Hi,
Since a while back PosgreSQL have started to hang making interaction with it impossible. The process still remains in the taskmanager aswell as another process with the same name (which i guess is the service trying to restart but failing).
The process that remains I cannot kill however i try, I get a message 'The operation could not be completed. Access is denied.' from taskmanager even though I'm in administrator mode....
User Profile
Collapse
-
Cannot kill Postgresql 8.3 in Windows Xp Service Pack 3
-
NetworkStream.Write giving "forcibly closed" upon streaming
Hi,
I'm trying to implement streaming over http and got stuck with a problem trying to send chunks of data using the .Net NetworkStream object.
All works fine as long as I send the entire data in one invocation to the NetworkStream, like:
Code:_stream.Write(buffer, 0, buffer.Length)
Code:byte[] buffer = new byte[4196]; int bytesRead = Body.Read(buffer, 0, 4196);
No activity results to display
Show More