Hi@ll!
I'm having a strange problem on my web app...
This app uses COM developed by other enterprise so I can't have full control on the source code.
The code on the asp page is:
when code reaches the 5th line it generates the error : "Microsoft VBScript runtime error, object required"Code:1 Dim oXMLResponse 2 Dim oAction 3 Dim sResponse 4 Set oAction = Server.CreateObject("MyCOM.Action") 5 sResponse = oAction.Submit()
I made some research on this and find some solutions related with COM installation. Although I tried them all, still doesn't work.
But on the other side using
on another dll works fine...strange isn't it?VB Code:
Set MyCOM = CreateObject("MyCOM.ACTION")
Anyone has an idea on what's happening.
Thanks in advance for your help.
Cheers,
Pedro




Reply With Quote