CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jul 2001
    Posts
    4

    Problem with the DLL

    Hello,

    I am creating VB DLL files which I am calling from ASP files. It worked first time when called from ASP files. But then I have made some modifications in the DLL file & I have recompiled it & now when I am trying to access the component from the ASP file it is giving me the following error:

    Server object error 'ASP 0178 : 80070005'

    Server.CreateObject Access Error

    /App/test.asp, line 9

    The call to Server.CreateObject failed while checking permissions. Access is denied to this object.

    I am facing this problem only when I am executing my ASP scripts on Windows 2000 server, it is working perfectly on Windows NT 4.0. Also if I call the DLL from a VB EXE project it is working fine. I am facing similar problem with another DLL which I have downloaded from the net. It is working fine on Windows NT but giving problem on Windows 2000 server.

    Can anybody tell me what could be the problem?

    Thanks in advance
    Hitesh


  2. #2
    Join Date
    Jun 2000
    Location
    South Africa
    Posts
    18

    Re: Problem with the DLL

    hey, quick suggestion:

    I assume you have checked all your permissions on all your necessary files etc? if not:
    i had a similar problem recently, and if I remember correctly, I had to assign permissions for the IUSR/<MACHINE_NAME> account to the MSVBVM60.DLL (or something) file in winnt\system32 folder. Updates to certain web stuff causes these permissions to be reset, so try that out...

    regards
    baldric

    Real programmers don't comment. If it was difficult to write, it should be difficult to read.

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