I have a Datasnap application(Delphi 7) which uses TSocketConnectiom to connect to application server. If my application stays idle for a long time after opening a clientdataset, most of the times when i want to refresh the clientdataset the application freezes without raising any exceptions.It seems that the connection is dropped and the Socketconnection is not aware of that.I am experiencing this problem very often and I am not sure where can I find the solution. Could it be a bug in TSocketconnection?
Best Regards
netstat(aDOSutility) to see if your app still has a connection to the server? You can usenetstaton the client machine and on the server machine to see if both sides still show anESTABLISHEDconnection. You can also use a packet sniffer like Ethereal to capture the traffic if the server is running on a different machine than the client. This has helped me in the past to troubleshoot communication issues -- to narrow down just where the issue occurs... – James L. Aug 1 '12 at 20:34netstatjust after the initial connection is made, you should see the local port on the client machine that is used. On the server side, you should see a connection has been established from the source port that was used on the client machine. Then after you wait long enough for the issue to happen, runnetstatagain (w/o refreshing the client) on both the client and server side to see if the OS still sees the original connection asESTABLISHED. If other clients connect, they will have different source ports and different IP addresses... – James L. Aug 1 '12 at 21:53netstatand theTSocketConnectiondon't agree (only one shows connected), then you can start troubleshooting from there... BTW - I have left an idle client connected to a DataSnap server for 24+ hours and it maintained the connection so that I could use it again without any problems. I'm using XE2 though -- there may be some significant changes between Delphi 7 and XE2. – James L. Aug 1 '12 at 21:59