S
SR
Hi
This is because the ASPNet worker process runs in a user
mode who does not have launch permissions for that
component. either make the aspnet worker process user
identity as an administrator( easiest, but the least
recommended) or you can use the identity tag in the
web.config file to specify a user whose identity will be
impersonated for launching this component
In web.config
Try
<identity impersonate="true">
or
<identity impersonate="true" userName="xxx" password="yyy">
where xxx and the yyy are the user name and the password
of a local user respectively
Check out the
http://msdn.microsoft.com/library/default.asp?
url=/library/en-
us/cpguide/html/cpconaspnetimpersonation.asp for more
information
Hope this helps
regards,
sr
regards,
sr
This is because the ASPNet worker process runs in a user
mode who does not have launch permissions for that
component. either make the aspnet worker process user
identity as an administrator( easiest, but the least
recommended) or you can use the identity tag in the
web.config file to specify a user whose identity will be
impersonated for launching this component
In web.config
Try
<identity impersonate="true">
or
<identity impersonate="true" userName="xxx" password="yyy">
where xxx and the yyy are the user name and the password
of a local user respectively
Check out the
http://msdn.microsoft.com/library/default.asp?
url=/library/en-
us/cpguide/html/cpconaspnetimpersonation.asp for more
information
Hope this helps
regards,
sr
regards,
sr