JIT Debugging Error

S

Stephen

Hi,

I found code snippet for running an app (.exe, .bat) from a web app(using
Process class). its pretty interesting but along with the other posts (that
i cant run a windows app) i found another problem and would like some
advice...
I created a sample console app to out put data and used the web app to run
it......., runs perfectly.
I created another console app that reads a file, parses it and writes a new
file........., and this app fails.

this is the error:
Jit Debugging Failed with the following error: access is denied
JIt Debugging was initiated by the user account '(Workstation)\ASPNET'
check the documentation index for 'Just-in-time debugging, error' for more
information

This app works fine when run by itself, but when i create a new process and
access it, it fails.

Can you please tell me what security feature i need to enable,

(all folders have write permissions)

Thanks,
Stephen
 
B

Bruce Barker

when you start a process, it runs under the security id of the creating
process, the asp.net worker process in the case of asp.net. the jit error is
the app throwing an uncaught error.

-- bruce (sqlwork.com)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top