
Scripting and objects with multiple interfaces
To the best of my knowledge-and if memory serves-scripting environments like
ASP require you to implement the IUnknown interface-something VB generally
takes care for you.
Ryan
______________
This is Madness!!!
Quote:
> Hi everybody,
> I developed a set of COM objects with a number of interfaces.
> How do I get access to one of the interfaces implemented like in normal
> applications I would do trought QueryInterface?
> It looks like it doesn't work in ASP.
> Now, I added a method that returns an IDispatch defined as
> GetRef(GUIDID : widestring) : IDispatch
> and this is practically identically to the Server.CreateObject method...
> How is it possible that Server.CreateObject works and mine doesn't?
> The objects works fine in a normal exe, it is only in ASP that doesn't.
> Thanks