Socket Error
-
Hi all, I am transfering a 200mb data from my socket program to the client and i have the following error during execution. I guess it because of the huge data but am not sure in rectifying the issue. I have given the error below "An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full" Thanks Maheshkumar B
-
Hi all, I am transfering a 200mb data from my socket program to the client and i have the following error during execution. I guess it because of the huge data but am not sure in rectifying the issue. I have given the error below "An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full" Thanks Maheshkumar B
Never seen it before but it sounds like buffer overrrun. Are you using streams so that you only work with small parts of the whole data continuously or attempting to do everything at the end?
Regards, Rob Philpott.
-
Hi all, I am transfering a 200mb data from my socket program to the client and i have the following error during execution. I guess it because of the huge data but am not sure in rectifying the issue. I have given the error below "An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full" Thanks Maheshkumar B
Problem is caused by a recent windows patch. If you remove patch KB948609 the client side deserialization will except large datasets again. Or move to WCF as your transport method. Read more at: EggHeadCafe[^] Kind regards,
The only programmers that are better C# programmers, are those who look like this -> :bob:
:)Programm3r My Blog: ^_^
-
Never seen it before but it sounds like buffer overrrun. Are you using streams so that you only work with small parts of the whole data continuously or attempting to do everything at the end?
Regards, Rob Philpott.