Я хочу запустить EXE после завершения установки, поэтому я написал пользовательское условие запуска, как показано ниже:
[RunInstaller(true)]
public class InstallerClass : System.Configuration.Install.Installer
{
public InstallerClass() : base()
{
this.AfterInstall += new InstallEventHandler(InstallerClass_AfterInstall);
}
void InstallerClass_AfterInstall(object sender, InstallEventArgs e)
{
Directory.SetCurrentDirectory(
Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location));
ProcessStartInfo psi = new ProcessStartInfo(
Path.GetDirectoryName(
Assembly.GetExecutingAssembly().Location) + "\\MyApp.exe");
psi.WorkingDirectory = Path.GetDirectoryName(
Assembly.GetExecutingAssembly().Location);
psi.Verb = "runas";
Process p = new Process();
p.StartInfo = psi;
p.Start();
}
.
.
. }
Проблема: MyApp.exe создает http-запрос для получения данных с сервера. Я получаю исключение тайм-аута каждый раз, когда MyApp.exe запускается здесь Если я запускаю MyApp.exe отдельно, он успешно создает http-запрос без тайм-аута. Ниже приведен код для http запроса:
HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(uri);
request.Timeout = TimeOut;
request.Credentials = CredentialCache.DefaultCredentials;
request.Proxy = WebRequest.DefaultWebProxy;
request.UseDefaultCredentials = true;
request.AllowAutoRedirect = true;
request.KeepAlive = false;
request.Method = "HEAD";
request.SendChunked = true;
using (HttpWebResponse response = (HttpWebResponse)request.GetResponse())
{
returnValue = response.StatusCode;
}
Почему я получаю исключение тайм-аута? Где я делаю не так?