My application run on a citrix server and the port 80 is close.
In the application, the first time i try to read a setting or a resources, two HTTP request start, since the port is close, it take 30 seconds before the application continue. After that i can read setting without any request.
These are the two request akamai-112.120.cache.videotron.ca and akamai-144.120.cache.videotron.ca
Exemple code:
System.IO.StreamWriter file = new System.IO.StreamWriter("c:\\test.txt");
file.WriteLine("Before Properties: " + DateTime.Now.ToString());
var chemin = Properties.Settings.Default.workingdirectory;
file.WriteLine("After Properties: " + dateTime.Now.ToString());
file.Close();
In test.txt, there's 30 secondes between BEFORE and AFTER. I have no idea what cause that.
Anybody have a clue?
Thanks!