Reference to an Ax object

  • Thread starter Thread starter SR
  • Start date Start date
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
 
Of course it helps, thanks a lot for your time and your
interest.
I wonder if by impersonating i can invoke any DLL made
with any language, locating the file in the same
directory as the aspx file.

Thanks again
Pablo.
 
Back
Top