View Single Post
  #3 (permalink)  
Old 12-28-2006, 10:44 AM  Protocol Driver error

EkilErif EkilErif is offline

Member

 
Join Date: Jul 2006
Location: London
Posts: 38

Send a message via MSN to EkilErif

Submit Article To > Submit to Digg Submit to Reddit Submit to Furl Submit to Del.icio.us Submit to Jeqq Submit to Spurl

Is this resolved? I was experienced a similar thing launching a published application via CAG.

Here is what I did to resolve the problem:
- Log on to my AAC Server with Administrative rights.
- Increase the ticket timeout value in the web.config file on the Advanced Access Control server. The path to the file is:
C:IntepubwwwrootCitrixAuthServiceWeb.config
- Find lines 104-106 in the web.config file. The default setting for the CGP ticket time is 15 seconds:

<add key="TicketProfile_SGC_HTTP" value="MULTIUSE,15,1200,true,true" />

<add key="TicketProfile_ICA_CGP" value="REVOLVING,15,600,true,true" />

<add key="TicketProfile_ICA_CGP" value="REVOLVING,15,600,true,true" />

- Increase the expiration time from 15 to 85 or to something a bit more suitable for your particular environment. For example:

<add key="TicketProfile_SGC_HTTP" value="MULTIUSE,85,1200,true,true" />

<add key="TicketProfile_ICA_CGP" value="REVOLVING,85,600,true,true" />

<add key="TicketProfile_ICA_CGP" value="REVOLVING,85,600,true,true" />

- Save the web.config file and restart the Advanced Access
Reply With Quote