I have written a com object that several classic ASP sites are using to access our database. We have 1 site that is on its own server that works flawlessly. We have another server that is hosting 2 sites, but on that server 1 of the sites works fine but the other gets an error when creating the com object.
Here is the text from the error message: The call to Server.CreateObject failed while checking permissions. Access is denied to this object.
I immediately assumed this was because the account that the app pool is using doesn't have access to the location where the com object is located, and everything I've found online agrees with that. I made sure that the account does have full access but it did not help. I even tried running the not working site on the same app pool as the site that does work. This still didn't fix the problem.
Thanks