What are the basics one needs to know when porting an application to Citrix? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T05:39:42Zhttp://stackoverflow.com/feeds/question/219411http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/219411/what-are-the-basics-one-needs-to-know-when-porting-an-application-to-citrix1What are the basics one needs to know when porting an application to Citrix?Douglas Anderson2008-10-20T18:36:05Z2008-10-20T18:58:55Z
<p>I've developed an application (C#) that currently sits on a a number of workstations. Each workstation accesses the same database (MS-SQL). I've been asked to port this to Citrix. Can anyone offer insight into documentation or suggestion of where someone would start with this? Is the application installed on the Citrix server and then simply made available to users or do I need to do further development to make it ready for this type of deployment?</p>
<p>Can anyone offer insight into Citrix application development?</p>
http://stackoverflow.com/questions/219411/what-are-the-basics-one-needs-to-know-when-porting-an-application-to-citrix/219466#2194661Answer by John Dyer for What are the basics one needs to know when porting an application to Citrix?John Dyer2008-10-20T18:52:43Z2008-10-20T18:52:43Z<p>For fairly straight forward app things just run. </p>
<p>Does you app need use localization configuration? i.e. time / date or currency formatting? There are Citrix settings that can do many things in this area. The users computer settings can be "projected" into Citrix or they could be overridden in Citrix.</p>
<p>Also do you use the machine name for anything? That will be the server name and not the users local machine name.</p>
<p>You can get a bit of a simulation in a Windows Server environment by getting a couple of remote desktop sessions running your app.</p>
http://stackoverflow.com/questions/219411/what-are-the-basics-one-needs-to-know-when-porting-an-application-to-citrix/219496#2194960Answer by MusiGenesis for What are the basics one needs to know when porting an application to Citrix?MusiGenesis2008-10-20T18:58:55Z2008-10-20T18:58:55Z<p>I wrote a C# application for a client once, and they ran it off a Citrix server without ever informing me of this, so if you're lucky you won't need to worry about Citrix at all. The only problem I ever ran into was due to my use of ActiveReports, which released a hotfix that broke on 64-bit processors (like the one my clients used to run Citrix). If you do run into any problems, you'll have an easier time debugging them if you actually have access to the Citrix server.</p>