I have an old application that I am migrating to new web hosting. I had full access to the old web server, so for that particular site I had to register a DLL on the actual windows 2003 server. The DLL has to do with the FDF toolkit from Adobe ( http://www.adobe.com/devnet/acrobat/fdftoolkit.html ).
The new webhost, which I do not have full access to ( I am using rackspace cloud now ), does not allow me to register DLL's directly on the server.. which makes complete sense. I was told I could throw the DLL's into a bin folder in my application root. I dont believe that this is working. Also, here is a link which describes how your supposed to register the DLL's, http://www.15seconds.com/issue/990902.htm
*Edit: this guy has my exact question without answer :( http://objectmix.com/adobe-acrobat/215497-asp-net-2-0-fdf-toolkit-dll-registration.html
Here is the error I am getting:
Server object error 'ASP 0177 : 800401f3'
Server.CreateObject Failed
/pdfinterface/viewPDF.asp, line 26
800401f3
And here is line 26 and 27:
Set FdfAcx = Server.CreateObject("FdfApp.FdfApp")
Set myFdf = FdfAcx.FDFCreate
Am I basically screwed? I dont think this DLL was designed to be loaded by IIS..