A
Abraham Andres Luna
hello everyone,
i am having a hard time launching an executable from an aspx page.
i have already setup impersonation in the web.config file like so:
<?xml version="1.0"?>
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
<system.web>
<authorization>
<allow users="*" />
</authorization>
<identity impersonate="true" userName="DOMAIN/USERNAME"
password="PASSWORD" />
</system.web>
</configuration>
this is the page code:
Process.Start(@"C:\RDK\Software\RDK.Reports\bin\RDK.Reports.exe");
i can see RDK.Reports.exe show up in the process list, but then the JIT
debugger pops up
i also noticed that it doesn't seem to impersonate the user. it launches the
exe as the ASPNET account
thank you for your help,
abraham luna
i am having a hard time launching an executable from an aspx page.
i have already setup impersonation in the web.config file like so:
<?xml version="1.0"?>
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
<system.web>
<authorization>
<allow users="*" />
</authorization>
<identity impersonate="true" userName="DOMAIN/USERNAME"
password="PASSWORD" />
</system.web>
</configuration>
this is the page code:
Process.Start(@"C:\RDK\Software\RDK.Reports\bin\RDK.Reports.exe");
i can see RDK.Reports.exe show up in the process list, but then the JIT
debugger pops up
i also noticed that it doesn't seem to impersonate the user. it launches the
exe as the ASPNET account
thank you for your help,
abraham luna