Reputation: 225
I work on a complex win32 application written in delphi (Delphi 2006). This application does not officialy support citrix but some of our customer use it under citrix.
The only issue discovered is a big latency when the form is destroy (more than 3s to free the form).
Unfortunatly i'm not able to have more information at this point. I want to eliminate the Delphi known issue theory before go ahead in my investigations.
So my question is: have anyone already seen latency whith Delphi form free under citrix?
Upvotes: 3
Views: 357
Reputation: 486
We run several delphi programs under Citrix with no problems. The only performance issue is local access, disk access and local devices.
Upvotes: 1
Reputation: 3028
We have a Delphi app that runs under Citrix. You'll hit performance issues whenever you perform local disk access since it has to transfer across the network. Are you saving any configuration information to disk on FormDestroy?
I'd start your search in that area, there's no issues with Delphi and Citrix.
Upvotes: 4