Deployment for calling a command line exe

  • Thread starter Thread starter dover
  • Start date Start date
D

dover

Does anyone have a pointer to a good overview on deploying an ASP.NET
application that calls out to a command line exe? The application is
working fine in local test but when we deploy it we are getting:

Configuration system failed to initialize at
System.Configuration.ClientConfigurationSystem.EnsureInit

I'm assuming that there is a security setup gap that is preventing the
exe from reading its config file.

The web.config is setup with:

<identity impersonate="true" />
and
<authentication mode="Windows"/>

Thanks in advance,

Ben
 
Hello (e-mail address removed),

how do u call command line exe?

I reckon u need to set the full trust to your assemblies to allow this call


---
WBR,
Michael Nemtsev [.NET/C# MVP] :: blog: http://spaces.live.com/laflour

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo
 
Back
Top