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:
Code:
      1  Dim oXMLResponse
      2  Dim oAction
      3	Dim sResponse
	
      4	Set oAction = Server.CreateObject("MyCOM.Action")

      5	sResponse = oAction.Submit()
when code reaches the 5th line it generates the error : "Microsoft VBScript runtime error, object required"

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
VB Code:
  1. Set MyCOM = CreateObject("MyCOM.ACTION")
on another dll works fine...strange isn't it?

Anyone has an idea on what's happening.

Thanks in advance for your help.

Cheers,
Pedro