active questions tagged citrix - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T14:47:18Zhttp://stackoverflow.com/feeds/tag/citrixhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/228992/is-an-ssh-tunnel-through-citrix-client-possible0Is an SSH tunnel through Citrix Client possible?Mauli2008-10-23T08:47:40Z2009-11-27T03:41:05Z
<p>I know it is not strictly a programmer question, on the other hand, I would really like to be able to do a simple <code>svn up</code> on the production servers, which would save us a lot of hassle.</p>
<p>Or production servers are within a corporate network, and access is only allowed through a gateway server. From that we can access the actual servers via Remote Desktop. Because of this maintenance unfriendly setup we use a sftp server to get our files to the production server (where the ftp server alwys resets last modified date), so it is complicated to determine which files have changed.</p>
<p>So if it would be possible to setup a ssh tunnel from the actual server through the citrix connection, it would ease the whole update process.</p>
<p>(On further option which I consider is to use bazaar to push our updates to the sftp server and then pull the updates from there, but unfortunately there is no working svn plugin for bazaar available [on windows])</p>
http://stackoverflow.com/questions/1078567/access-2003-via-citrix-error-loading-dll-with-currentproject-connection0Access 2003 via Citrix: 'Error Loading DLL' with CurrentProject.ConnectionSam2009-07-03T09:28:58Z2009-11-25T18:53:26Z
<p>Set up an Access Project to be opened via Citrix. However, there is some VBA code that prevents it from working:</p>
<pre><code>Dim rs As ADODB.Recordset
Set rs = CurrentProject.Connection.Execute("Query")
</code></pre>
<p>The <code>.Connection</code> bit is highlighted. This works when it is not opened via Citrix though (i.e. just on users desktop).</p>
http://stackoverflow.com/questions/1404360/system-diagnostics-process-start-issue1System.Diagnostics.Process.Start Issuerob2009-09-10T09:53:07Z2009-11-23T14:46:09Z
<p>Hi,</p>
<p>I seem to have a weird issue with the System.Diagnostics.Process.Start method. I have a C# Desktop application using 3.5 SP1 .NET Framework. A user clicks on a label which passes a folder path stored in it's tag as a string to the function. Windows Explorer launches with the correct folder. When this tool is installed on Citrix and is run through a published application, Windows Explorer will still launch but a .NET exception message is also displayed "The System cannot find the file specified".</p>
<pre><code>System.ComponentModel.Win32Exception: The system cannot find the file specified
at System.Diagnostics.Process.StartWithShellExecuteEx(ProcessStartInfo startInfo)
at System.Diagnostics.Process.Start()
at System.Diagnostics.Process.Start(ProcessStartInfo startInfo)
at System.Diagnostics.Process.Start(String fileName)
</code></pre>
<p>The file path exists as it's just launched it ok and the code works with no errors when logged locally onto the server, it just errors as a published application, my code is below</p>
<pre><code>Label label = (Label)sender;
if (label.ForeColor == Color.Blue) {
if (System.IO.Directory.Exists(label.Tag.ToString()) == false)
{
MessageBox.Show("The specified folder does not exist:" +
Environment.NewLine + Environment.NewLine + label.Tag.ToString(), "",
MessageBoxButtons.OK, MessageBoxIcon.Information);
return;
}
System.Diagnostics.Process.Start(label.Tag.ToString());
}
</code></pre>
<p>I found this page <a href="http://forums.citrix.com/thread.jspa?messageID=1382638" rel="nofollow">http://forums.citrix.com/thread.jspa?messageID=1382638</a> but we don't have IIS on the server anyway.</p>
<p>Can any one help?</p>
<p>Thanks,
Rob</p>
http://stackoverflow.com/questions/1753969/is-application-virtualization-only-for-standalone-applications0Is application virtualization only for standalone applications?vicky212009-11-18T06:07:03Z2009-11-18T06:07:03Z
<p>Does application virtualization mean virtualizing only stand-alone desktop applications and executables? Or does it also cover virtualizing webapps and web servers? Can Citrix's XenApp and VMware's ThinApp virtualize web applications and web servers? </p>
http://stackoverflow.com/questions/1743451/does-citrix-xenapp-working-on-windows-7-64-bit0Does Citrix XenApp working on Windows 7 64 Bit?Tariq Ahmed2009-11-16T16:59:37Z2009-11-16T23:45:23Z
<p>I've been trying to get the Citrix XenApp client going - but as soon as it connects it crashes on Windows 7 64bit. Citrix support has 0 information on Windows 7, so I'm curious if others have gotten it to work, of it's just me.</p>
<p>thx.</p>
<p>CDViewer has stopped working</p>
<p>Description:
Stopped working</p>
<p>Problem signature:
Problem Event Name: CLR20r3
Problem Signature 01: cdviewer.exe
Problem Signature 02: 11.2.0.31560
Problem Signature 03: 4aac18be
Problem Signature 04: DesktopViewer
Problem Signature 05: 11.2.0.31560
Problem Signature 06: 4aac18ba
Problem Signature 07: 105
Problem Signature 08: 80
Problem Signature 09: System.IO.InvalidDataException
OS Version: 6.1.7600.2.0.0.256.48
Locale ID: 1033</p>
<p>Read our privacy statement online:
<a href="http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409" rel="nofollow">http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409</a></p>
<p>If the online privacy statement is not available, please read our privacy statement offline:
C:\Windows\system32\en-US\erofflps.txt</p>
http://stackoverflow.com/questions/1741471/detect-citrix-ica-protocol0detect Citrix ICA protocolAizaz2009-11-16T11:00:01Z2009-11-16T11:11:08Z
<p>Hello,
I want to detect weather Citrix ICA protocol is running on my network or not. I don't want to hit on port because it is not a good solution.</p>
<p>What flags (bytes) to send to server and read its response, like detecting VNC i send some bytes to server and in response it returns me Protocol Version, so I know that VNC is running on that IP, I want such a solution...</p>
http://stackoverflow.com/questions/1707544/printing-on-citrix-server1Printing on citrix serverdelphigirl2009-11-10T12:19:08Z2009-11-11T11:10:33Z
<p>We are using Delphi 7 to develop database apps with advantage as a backend. Our system is usually installed on the windows server with the pcs acting as terminals. All the settings and database are on the server.<br>
we are having problems running our software on Citrix servers. In particular printing seems to be an issue. Both in selecting the right printer and in the formatting of the report.
We use Rbuilder version 10 to produce our reports and they are sent to a zebra label printer so not a standard windows printer driver. The reports are also of a non-standard size.
things we are seeing are stretching and shifting of the report on the page.<br>
Has anybody seen similar behavior or has any idea of what might be causing this.<br>
we don't have a test Citrix system so it is hard to test. We can't replicate it in a normal windows environment.</p>
http://stackoverflow.com/questions/798359/memory-handling-by-a-64bit-citrix-server-running-instances-of-a-32bit-app-using-w0Memory handling by a 64bit Citrix server running instances of a 32bit app using WoW64mikeironside2009-04-28T14:48:39Z2009-11-10T22:07:11Z
<p>Can a 64bit Citrix server running a 32bit app through WoW64 handle just as many instances/users as the 32bit Citrix server equivalent?</p>
<p>And if so if I up the memory in the 64bit server will the number of instances/users scale too?</p>
<p>Or are there some strange memory considerations with a 64bit server running a 32bit app?</p>
http://stackoverflow.com/questions/1629464/problem-with-asp-net-webforms-ajax-citrix0Problem with asp.net webforms ajax & citrixQuBaR2009-10-27T08:42:26Z2009-10-27T08:42:26Z
<p>We have developed a webapplication that uses asp.net webforms with ajax extenders/controllers.</p>
<p>Everything works fine when users use it internal on the internal company net, but when users acces the webbaplication from outside the company net via a citrix weblogin/proxy the application crashes and alot of errors occurs. </p>
<p>Seems likes the problem that occurs is linked to the citrix weblogin/proxy? Anyone had experience or knowledge of this kind of problems when using citrix weblogin/proxy together with a webaplication that uses ajax/jquery functionality?</p>
<p>Some of the errors is as seen below:</p>
<blockquote>
<p>Sys.WebForms.PageRequestManagerParserErrorException:
The message received from the server
could not be parsed. Common causes for
this error are when the response is
modified by calls to Response.Write(),
response filters, HttpModules, or
server trace is enabled.</p>
<p><code>https://a01ag.frontedge.net/CitrixWebProxy/aHR0cDovL3NlYTAxMjBzd2I1/LiveTime/ScriptResource.axd?d=kcEwZkTaFlROkIcJjoRYGOQayggH1-xLg-JClTafmdmQkfNg10b-fSvHAFoLrqqYfrDcgXsIbSYlPYXXT_zFfVlZf8iEWvNrJNy5U0PEtG41&t=3ee19eb2</code></p>
</blockquote>
http://stackoverflow.com/questions/1542740/wpf-application-on-citrix0WPF application on CitrixJostein2009-10-09T09:15:12Z2009-10-09T09:23:20Z
<p>I'm trying to use a WPF application on our Citrix server, and made a really simple window with a button and a textbox. When running the application, noting but the application name on top of the window is shown. Is it not possible to use WPF on Citrix, or is our Citrix server too old?</p>
http://stackoverflow.com/questions/1532001/forcing-a-user-to-use-a-specific-citrix-server0Forcing a user to use a specific Citrix Server [closed]depictureboy2009-10-07T14:32:18Z2009-10-08T02:45:01Z
<p>Is there any way to force a particular Login or AD group to use a specific Citrix Server in a Citrix Farm? We have a Citrix server that is having issue and we would like certain high use accounts to use only the server that is acting appropriately until we can get the second server fixed. I have not really found anything helpful on the web about this...</p>
http://stackoverflow.com/questions/927636/no-system-tray-toolbarwindow32-window-handle-when-running-in-64bit-citrix1No system tray ToolbarWindow32 window handle when running in (64bit) citrixMichael2009-05-29T19:09:32Z2009-09-25T00:44:01Z
<p>We have written a C# command line app that gets run as the first step in a script that is executed when users launch our CRM system on citrix (it is a published app). The purpose of the command line is to find the outlook icon on the system tray and hide it. We do this via PInvoke calls to various WIN32 methods and it works great when testing in a non citrix environment.</p>
<p>When we roll this out to our Citrix test server and run via the published app script, our code is not finding windows for the SysPager and (more importantly) ToolbarWindow32 windows that we expect to see in the system tray. Anyone know why? </p>
<p>Sample Code:</p>
<pre><code>IntPtr shellTrayHwnd = Win32.FindWindow("Shell_TrayWnd", null);
IntPtr sysPagerHwnd = Win32.FindWindowEx(shellTrayHwnd, IntPtr.Zero, "SysPager", null); //returns 0
IntPtr toolbarNotifyHwnd = Win32.FindWindowEx(shellTrayHwnd, IntPtr.Zero, "ToolbarWindow32", null); //returns 0
</code></pre>
<p>As I said, this code works great when running in a non-citrix session, but once we run in citrix we seem to lose the ability to get these handles.</p>
<p>FYI: The ultimate goal here is to hide the outlook icon that gets sent to the client's system tray when our CRM software, which relies on outlook running in the background, is run. If we don't supress the icon, we get two outlook icons in the end-user's tray. One from their local outlook and one from the outlook that is running on citrix in the background for the CRM software to work (the CRM software does not use outlook in embedded mode because we need to be able to run VSTO plugins - which don't get loaded in embedded mode). If someone knows of an easier way, I'm all ears.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1444830/does-anyone-know-about-issues-between-citrix-and-delphi-2007-applications-and-p1Does anyone know about issues between Citrix and Delphi 2007 applications? (And perhaps other development languages?)Workshop Alex2009-09-18T14:15:35Z2009-09-20T19:12:36Z
<p>The situation is simple. I've created a complex Delphi application which uses several different techniques. The main application is a WIN32 module but a few parts are developed as .NET assemblies. It also communicates with a web service or retrieves data from a specific website. It keeps most of it's user-data inside an MS Access database with some additional settings inside the Registry. In-memory, all data is converted inside an XML document, which is occasionally saved to disk as backup in case the system crashes. (Thus allowing the user to recover his data.) There's also some data in XML files for read-only purposes. The application also executes other applications and wants for those to finish. All in al, it's a pretty complex application.</p>
<p>We don't support Citrix with this application, although a few users do use this application on a Citrix server. (Basically, it allows those users to be more mobile.) But even though we keep telling them that we don't support Citrix, those customers are trying to push us to help them with some occasional problems that they tend to have.</p>
<p>The main problem seems to be an occasional random exception that seems to pop up on Citrix systems. Never at the same location and often it looks related to some memory problems. We've p[lenty of error reports already and there are just too many different errors. So I know solving all those will be complex.</p>
<p>So I would like to go a bit more generic and just want to know about the possible issues a Delphi (2007) can have when it's run on a Citrix system. Especially when this application is not designed to be Citrix-aware in any way. We don't want to support Citrix officially but it would be nice if we can help those customers. Not that they're going to pay us more, but still...</p>
<p>So does anyone know some common issues a Delphi application can have on a Citrix system?
Does anyone know about common issues with Citrix in general?
Is there some Silver Bullet or Golden Hammer solution somewhere for Citrix problems?</p>
<p>Btw. My knowledge about Citrix is limited to <a href="http://en.wikipedia.org/wiki/Citrix%5FSystems" rel="nofollow">this Wikipedia</a> entry and <a href="http://www.citrix.com/" rel="nofollow">this website</a>... And a bit I've <a href="http://www.google.com/search?q=Citrix" rel="nofollow">Googled</a>...</p>
http://stackoverflow.com/questions/1030145/acquiring-accessing-citrix-environment-for-qa-purposes6Acquiring / accessing Citrix environment for QA purposesRichard Dunlap2009-06-23T01:00:53Z2009-09-18T14:28:14Z
<p>We have a Windows Forms, .NET 2.0 application delivered via ClickOnce and driven by web services, that our customers occasionally wish to deploy into a Citrix environment. In some cases, the customer elects to allow our application to be deployed locally to user machines and bypass the Citrix server, in one case we've provided a static installer for a customer to use with the proviso that updates would not be pushed automatically, and in some cases, our customer IT departments have had the technical savvy to make the ClickOnce deployment work in their Citrix environment.</p>
<p>My question is not about the ClickOnce vs. Citrix issues themselves -- we've learned a fair amount from online research and talking to customers -- but about the most cost effective approach for us to look at the issues first hand. Particularly for those of you who are Citrix customers or vendors, what is the most effective way for us to set up a Citrix QA environment (specifially, Citrix for desktop virtualization), given that we have no real use for a Citrix server otherwise?</p>
http://stackoverflow.com/questions/1032157/is-there-online-citrix-testing-available1is there online citrix testing available?Tom2009-06-23T12:07:37Z2009-09-18T14:26:48Z
<p>Is there any way to access CITRIX remotely for doing some simple QE testing, our customer has a compatibility issue with our product and we dont have CITRIX in house</p>
<p>PS: Also VMWARE image would be an option</p>
http://stackoverflow.com/questions/1032246/citrix-and-keybdevent-problem0citrix and keybd_event problemTom2009-06-23T12:29:15Z2009-07-09T12:05:45Z
<p>Is citrix supporting keybd_event, I have a problem that it ignores events ?</p>
http://stackoverflow.com/questions/1032287/is-there-a-method-to-trigger-paste-ctrlv-event-to-any-application0is there a method to trigger paste (ctrl+v) event to any application?Tom2009-06-23T12:37:02Z2009-06-23T18:17:45Z
<p>I have a code that triggers PASTING to any 3rd party application by sending ctrl+v (see below), but this does not seem to work with CITRIX. is there any other method to trigger ctrl+v than keyb simulation?</p>
<pre><code>keybd_event(VK_CONTROL, Lo(MapVirtualKey(VK_CONTROL,0)), 0,0);
keybd_event(86, Lo(MapVirtualKey(86,0)), 0,0);
keybd_event(86, Lo(MapVirtualKey(86,0)), KEYEVENTF_KEYUP,0);
</code></pre>
http://stackoverflow.com/questions/363027/setting-volume-in-citrix0setting volume in CitrixPhilip2008-12-12T15:08:43Z2009-06-08T08:33:06Z
<p>Hi,</p>
<p>I am trying to use the Windows API call 'waveOutSetVolume' from my application to change the windows volume. When ran on locally on a machine it works great. However, when ran on through a Citrix client, it does nothing. What am I missing?</p>
http://stackoverflow.com/questions/897081/application-can-not-log-in-ms-sql-error0Application can not log in: MS SQL errorJaison2009-05-22T09:35:35Z2009-05-22T10:40:52Z
<p>I am unable to log in to a vb application which is configured in Citrix which connect to ms sql database to check the application is working. </p>
<p>After 3 attempts this will login successfully..</p>
<p>how to check the ms sql db which is causing the problem ? </p>
http://stackoverflow.com/questions/304836/detect-citrix-application-mode3Detect citrix "application mode"?Lasse V. Karlsen2008-11-20T10:06:13Z2009-04-13T19:06:13Z
<p>Forgive me for probably using the wrong term for this "application mode".</p>
<p>Our application has a problem during start in that it doesn't show a task bar icon until the main window is up, even though there are loading progress windows, logon-windows, etc. on screen before that.</p>
<p>We change the code to fix this, but unfortunately this fix, when running the app through citrix, now shows two icons, one with just the icon and no text.</p>
<p>Is there a way for me to detect that the application is running through citrix? I don't know the right term for this, but only the app window is brought to the users desktop, not the whole remote desktop.</p>
<p>If it matters, the app is written in Delphi.</p>
http://stackoverflow.com/questions/603682/how-do-i-code-citrix-web-sites-to-use-a-secure-gateway-csg1How do I code Citrix web sites to use a Secure Gateway (CSG)?RAVolt2009-03-02T19:41:37Z2009-04-09T16:19:36Z
<p>I'm using Citrix's sample code as a base and trying to get it to generate ICA files that direct the client to use their Secure Gateway (CSG) provider. My configuration is that the ICA file's server address is replaced with a CSG ticket and traffic is forced to go to the CSG.</p>
<p>The challenge is that both the Citrix App Server (that's providing the ICA session on 1494) and the CSG have to coordinate through a Secure Ticket Authority (STA). That means that my code needs to talk to the STA as it creates the ICA file because STA holds a ticket that the CSG needs embedded into the ICA file. Confusing? Sure! But it's much more secure.</p>
<p>The pre-CSG code looks like this:</p>
<pre><code>AppLaunchInfo launchInfo = (AppLaunchInfo)userContext.launchApp(appID, new AppLaunchParams(ClientType.ICA_30));
ICAFile icaFile = userContext.convertToICAFile(launchInfo, null, null);
</code></pre>
<p>I tried to the SSLEnabled information to the ICA generation, but it was not enough. here's that code:</p>
<pre><code>launchInfo.setSSLEnabled(true);
launchInfo.setSSLAddress(new ServiceAddress("CSG URL", 443));
</code></pre>
<p>Now, it looks like I need to register the STA when I configure my farm:</p>
<pre><code>ConnectionRoutingPolicy policy = config.getDMZRoutingPolicy();
policy.getRules().clear();
//Set the Secure Ticketing Authorities (STAs).
STAGroup STAgr = new STAGroup();
STAgr.addSTAURL(@"http://CitrixAppServerURL/scripts/ctxsta.dll");
//creat Secure Gateway conenction
SGConnectionRoute SGRoute = new SGConnectionRoute(@"https://CSGURL");
SGRoute.setUseSessionReliability(false);
SGRoute.setGatewayPort(80);
SGRoute.setTicketAuthorities(STAgr);
// add the SGRoute to the policy
policy.setDefault(SGRoute);
</code></pre>
<p>This is based on code I found on the <a href="http://forums.citrix.com/thread.jspa?forumID=48&threadID=71650&messageID=429494&" rel="nofollow">Citrix Forums</a>; however, it breaks my ability to connect with the Farm and get my application list!</p>
<p>Can someone point me to an example of code that works? Or a reference document?</p>
http://stackoverflow.com/questions/449536/system-recommendation-for-running-citrix-server-for-100-ms-office-users0System Recommendation for Running Citrix Server for 100 MS Office usersunknown (google)2009-01-16T04:49:09Z2009-04-02T14:34:04Z
<p>Hi</p>
<p>I need to find out what would be a recommended Citrix Server setup (memory, cpu and network hardware) for up to 100 users (both LAN and WAN) concurrently.</p>
<p>They will be using the server mainly for the following purposes:</p>
<ul>
<li>running MS Office (mainly 10-15 MB Excel files)</li>
<li>exporting/importing data to/from a SQL database on another server</li>
<li>running a Windows application that uses Reporting Services to report on the data in the database.</li>
</ul>
<p>It may be on one server, or spread across multiple servers.</p>
<p>Any suggestions on what hardware would be required or anything else to consider?</p>
http://stackoverflow.com/questions/662499/crystal-sub-reports-on-citrix0Crystal Sub-reports on CitrixChris L2009-03-19T14:50:30Z2009-03-19T16:43:49Z
<p>We've got a Crystal Report (v8.5 - yes I know it's old!), with contained sub-reports, that gives problems when attempting to run on Citrix (by one of our customers). This appears to be because the sub-reports retain a hard-coded reference to the location of the original Access database at design time. The latter is, for example, located at C:\xyz\abc. Unfortunately we can't fool it by simply copying a dummy Access file to this location, as the Citrix user effectively does not "see" a C: drive! (At least this is my understanding - it has proven very difficult to find out basic operating principles of the Citrix environment.
Has anyone encountered this problem and found a solution?
(Or found any sites giving basic guidance to Citrix environment?)</p>
<p>Thanks<br />
Chris L</p>
http://stackoverflow.com/questions/631988/ui-automation-in-citrix0UI Automation in Citrixaceinthehole2009-03-10T19:51:19Z2009-03-11T19:58:47Z
<p>I would like to be able to use a tool like WatiN to automate somethings that needs to interact with a Web App that is access by using an instance of IE running on Citrix. So far it seems impossible to interact with the window at even a rudimentary level using SendKeys as the internal UI components seemingly do not have a handle. </p>
<p>Has anyone been able to do this or anything similar?</p>
http://stackoverflow.com/questions/475858/why-would-cint1-fail2Why would Cint("1") fail?ChrisA2009-01-24T11:03:11Z2009-01-24T14:14:15Z
<p>I'm attempting to deploy a WinForms app in a Citrix environment. It's been working reliably for some time on other physical and virtual machines, but it's failing, only when running the application on a Citrix desktop.</p>
<p>The failures are typically where we have mixed-type data as strings in a general-purpose settings table in the (SQL Server 2005) database, and then convert them to the appropriate type at run time.</p>
<p>So for example, there's a '1' on the database in a varchar(50) column, it's read in, and then something like</p>
<pre><code>dim myNumericVariable as integer = Cint(dr.Item(columnName))
</code></pre>
<p>(where dr is the DataRow coming out of ADO.NET).</p>
<p>The message in the thrown exception says:</p>
<pre><code>Conversion from string "1" to type 'integer' is not valid
</code></pre>
<p>This kind of failure is happening all over the application, but only in the Citrix environment. In all our other environments it runs fine, but I have no idea whether the fact that it's Citrix is just a fluke and there's some other underlying reason.</p>
<p>It's a VB.NET app, .NET 2.0, with Strict and Explicit both on, compiled for x86. It works perfectly on XP SP3, also Windows 2003 Server x64.</p>
<p>I'm at my wits end with this - I've looked all over and found no hint as to why I'm seeing this behaviour. I'd be very grateful for suggestions. If you need more information about the environments, or the way the app is built, I'll happily edit the question. Thanks in advance..</p>
http://stackoverflow.com/questions/474709/programmatic-data-input-output-to-citrix-application0Programmatic data input/output to citrix applicationStout2009-01-23T21:44:27Z2009-01-23T21:44:27Z
<p>I have written a script which is a pretty brutal hack using a language called AutoIt. Essentially it screen scrapes and sends keys to mimic a user moving throughout the citrix app (it's a 25+ year old dos app). It works relatively well, however it does need a lot of babysitting.</p>
<p>I am planning on re-writting it in C#, however I'm hoping there may be a more elegant solution out there that I am unaware of. Unfortunately I have zero control over the citrix app, so things like virtual channels are out of the question.</p>
<p>I need to be able to navigate and read data quickly and stabley. Any ideas?</p>
http://stackoverflow.com/questions/286383/windows-ce-5-00Windows CE 5.0Rajesh2008-11-13T06:39:32Z2008-11-13T06:39:32Z
<p>How do I diploy ICA support while creating image with platform builder ?</p>
http://stackoverflow.com/questions/126228/problem-net-code-runs-from-one-directory-but-not-another-on-same-disk3Problem: .NET code runs from one directory, but not another, on same diskLasse V. Karlsen2008-09-24T09:37:33Z2008-10-29T13:38:29Z
<p>Our application is a hybrid Win32 unmanaged application and a .NET 2.0 managed application. The Win32 part is the main executable, which at some point loads and hosts the .NET 2.0 runtime and loads some managed modules to open new winforms windows.</p>
<p>We've had our share of CASPOL-type problems, but today we have a very odd problem and I'm hoping someone can give me some pointers or ideas, or basically just anything really, that would trigger a spark of something that would help us resolve this.</p>
<p>On a server, accessed through citrix, if the application files are located in a directory located on the desktop of the currently logged on user, which is a server/domain administrator, the program runs fine. The .NET windows open as expected.</p>
<p>However, if we move the directory to the root of the same disk, which is a physical disk in the server (so no SAN mapping or anything that would trigger a CASPOL command <em>to my knowledge</em>) <em>and keep everything else the same, same user, same configuration, etc.</em>, the application silently crashes when we try to invoke the .NET windows. It crashes by way of just disappearing, which suggests it might be something like a stack overflow. We're looking into adding logging to some parts of the app to perhaps be able to figure out what happens, and where, but I'm posting this question here as well.</p>
<p>So far we've verified that there are no oddities in the CASPOL access list, nothing odd in the NGEN cache (I was thinking perhaps there was corrupted images from before, if the server owner had played with it), and no oddities in the GAC (we don't use GAC for the assemblies).</p>
<p>Summarized:</p>
<ul>
<li>If the program is run from U:\Documents and Settings\USERNAME\Desktop\directory, it works</li>
<li>If it is run from U:\directory, it doesn't</li>
<li>U: is a physical disk in the server</li>
<li>No apparent oddities in NGEN or GAC caches</li>
<li>The right .NET runtime is installed, the right files for our application has been installed (and indeed work fine if run from the desktop location)</li>
</ul>
<p>Anyone with anything that might help?</p>
<p><strong>Edit:</strong> Problem <a href="http://stackoverflow.com/questions/239622/application-crashing-when-talking-to-oracle-unless-executable-path-contains-spa">re-asked here</a> with different/other information, and "solved".</p>
http://stackoverflow.com/questions/48505/citrix-server-sort-of-app-on-a-mac2Citrix Server sort of app - on a Mac?ceejayoz2008-09-07T15:07:31Z2008-10-28T03:27:55Z
<p>Does anyone know of a similar product to Citrix Server that'll run on the Mac OS?</p>
<p>Essentially, I'm looking to allow multiple remote users to log in to the same OSX Server at the same time (with full visual desktop, not SSH).</p>
http://stackoverflow.com/questions/159910/determine-if-a-program-is-running-on-a-remote-desktop7Determine if a program is running on a Remote DesktopKluge2008-10-01T21:49:14Z2008-10-27T19:46:01Z
<p>Is there a way my program can determine when it's running on a Remote Desktop (Terminal Services)?</p>
<p>I'd like to enable an "inactivity timeout" on the program when it's running on a Remote Desktop session. Since users are notorious for leaving Remote Desktop sessions open, I want my program to terminate after a specified period of inactivity. But, I don't want the inactivity timeout enabled for non-RD users.</p>