G
Guest
Hi
I am trying to migrate my existing code (c++ - MFC) that works fine in VS6 to VS7
In my code i have a client server mechanism using the MFC CSocket and Carchive to serialize objects between sides
This works fine under VS6, but when compiled and run in VS7 the actual serialization process (the storing\reading to\from the archive object) takes much much longer, and after a while it simply get stuck
when i break in to the the code on the send side i see it is stuck in CSocket::SendChunk and every time it tries to send it gets the WSAEWOULDBLOCK.
(All of the transferred objects are CObject derived ( DECLARE_SERIAL, IMPLEMENT_SERIAL and Serialize overloaded) and contains only MFC CObject derived or CStrings composite object
Any known issues or ideas?
I am trying to migrate my existing code (c++ - MFC) that works fine in VS6 to VS7
In my code i have a client server mechanism using the MFC CSocket and Carchive to serialize objects between sides
This works fine under VS6, but when compiled and run in VS7 the actual serialization process (the storing\reading to\from the archive object) takes much much longer, and after a while it simply get stuck
when i break in to the the code on the send side i see it is stuck in CSocket::SendChunk and every time it tries to send it gets the WSAEWOULDBLOCK.
(All of the transferred objects are CObject derived ( DECLARE_SERIAL, IMPLEMENT_SERIAL and Serialize overloaded) and contains only MFC CObject derived or CStrings composite object
Any known issues or ideas?