Hi, I have registered a 32-bit dll in Windows server 2008 R2 64-bit and it registers correctly, I can even create the object, but the time to use a defined method in the dll always comes to me:
ADODB.Connection error '800a0e78'
La operación no está permitida si el objeto está cerrado.
I am using classic ASP and the dll contains a function that connects to oracle 12c by odbc I have already reviewed the connection string and it is correct, in the 32 bit server it works correctly with classic asp and oracle 10g.
I'm calling the dll as follows
dim objBdaPais
set objBdaPais = Server.CreateObject("nombredll.nombrecls")
sPais = objBdaPais.nombreMetodo()
I hope you can help me.
Greetings.