CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Guest

    Running ActiveX Exe's form ASP.

    How to run an ActiveX Exe - Out of Process component from an ASP Page.
    Suppose, i've made an ActiveX Exe.(NOT AN ACTIVEX DLL) . On including the following code in the ASP Script
    I get an error - 'Cannot use Out Of Process Component - Refer to AspAllowOutOfProcComponent'.

    Please Reply with solution ASAP. at the email address given below.

    Thanks,

    Ashish Jatana
    Email : [email protected]




  2. #2
    Join Date
    May 1999
    Posts
    3,332

    Re: Running ActiveX Exe's form ASP.

    by default you cannot run out of process server components from an ASP.
    There are 2 things you can do:
    1. make it an ActiveX DLL
    2. change the registry entry on the server that is mentioned in your error message.

    Be aware, there is good reason why this is disabled by default: performance!
    An AX DLL is usually faster than an Exe. That's why it's disabled by default.
    So, better make a DLL out of your COM component.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured