| egghead 2005-02-10, 5:09 pm |
| Hey John,
Did you ever figure this out? i am having the same problem.
E.
quote: Originally posted by John
Hi,
I'm trying to create a ASP.NET app that does loadbalancing via the internet. I'm basically using the System.Diagnostics.Process class to run "ac.exe".
[code]
// this page is sitting on the cluster i'm trying to loadbalance
Process proc = new Process();
proc.StartInfo.FileName = "ac";
proc.StartInfo.Arguments = @"loadbalance /member:<member> /offline /y /user:<domain/user> /password:<password>
proc.StartInfo.CreateNoWindow = true;
proc.StartInfo.RedirectStandardOutput = true;
proc.StartInfo.UseShellExecute = false;
proc.StartInfo.ErrorDialog = true;
proc.Start();
[/code]
which results in the error:
Access is denied. (0x80070005)
I've tried everything from giving the ASPNET account full access to "ac.exe" to making it a server admin (temporarily for testing purposes). Anyone have any ideas on how I can get this tow work?
Thanks!
--
John
|