Reference to an Ax object

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
 
P

Pablo

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.
 

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