hi, I am a fairly new developer and still on the learning phase. I recently discovered your framework from the stackoverflow site and tried using it for weeks now. The problem is that there are some sort of errors piling up and I can’t do debugging because some errors forwards me to your source code and moves on an infinite loop through CommsThreadPool.cs.
To further explain things, here’s what I did:
I have this login function. First it makes a login to the database. Then after a successful login, the program will process some additional data on another thread. After the data is processed, the program will send a networkcomms SendObject command as represented by S.SS.Send() function.
The S.SS.Send() function:
Then, The Receiver (Socket Server)
Basically, what the function above does is that it takes data from the client ( a delimited string that contains a userId and a userRights ). Then it adds the user into a List. After that, it send datas to all clients that the server recognized as admins.
Back to the client side, the client receives the data, and it should run the code below but for some reason, it returns an error when it enters into a breakpoint. Pressing F10 on visual studio returns an error and points me towards NetworkComms.cs. Then pressing F10 until such time it forwards itself to CommsThreadPool.cs for an infinite loop. The codes inside of the deepest if function won’t get executed.
Please help.