windows socket
-
Hi all ,,, a have an exception message when i try to create a TcpClient in win socket says : lack of memory or queue is full . iI am using winXP Pro , C#, port no > 1024 ( is it OK ?) , and on toshiba laptop. what is the solution please . Thanks to you all
-
Hi all ,,, a have an exception message when i try to create a TcpClient in win socket says : lack of memory or queue is full . iI am using winXP Pro , C#, port no > 1024 ( is it OK ?) , and on toshiba laptop. what is the solution please . Thanks to you all
From the information you have given us we can't help you much. Well I guess you "ran out of memory or your queue is full". This is mostly like a debugging task you'll have to do on your own... check all your code. Also, please dont post same thing twice. This posting is provided "AS IS" with no warranties, and confers no rights. Alex Korchemniy
-
Hi all ,,, a have an exception message when i try to create a TcpClient in win socket says : lack of memory or queue is full . iI am using winXP Pro , C#, port no > 1024 ( is it OK ?) , and on toshiba laptop. what is the solution please . Thanks to you all
Getting the inner exceptions can help understand the problem sometimes. Could you post the inner exception messages? try { // ... do whatever .... } catch (Exception ex) { Console.WriteLine (ex.Message); Exception innerEx = ex.InnerException; while (innerEx != null) { Console.WriteLine (ex.Message); innerEx = innerEx.InnerException; } }