You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this tool is amazing. I like it very much, congratulations.
I have an issue when I try to view the default interface of an in a COM Service (.exe): the methods are not shown (so I can't invoke them of course).
It works great with another interface in the same object.
None of the interfaces/methods have a "special" attribute.
All the interfaces I'm talking implement IDispatch.
Here is an example of how the object and its interfaces are declared (in case it can be useful):
public CComObjectRootEx<CComMultiThreadModel>,
public CComCoClass<CMyServerTools, &CLSID_MyServerToolsX>,
public ISupportErrorInfo,
public IDispatchImpl<IMyServerTools2, &IID_IMyServerTools, &LIBID_MYSERVERLib>,
{
...
BEGIN_COM_MAP(CMyServerTools)
COM_INTERFACE_ENTRY(IMyServerTools)
COM_INTERFACE_ENTRY(IMyServerTools2)
COM_INTERFACE_ENTRY2(IDispatch, IMyServerTools)
COM_INTERFACE_ENTRY(ISupportErrorInfo)
END_COM_MAP()
...
};
For this object, I have the "problem" with IMyServerTools; The IMyServerTools2 methods are properly displayed and I can test (invoke) them.
I got the same behavior with several some (actually all) other objects within this COM Service and also with other COM Services (these COM services were all built using the MS ATL library).
Do you think it might be fixed someday please ?
Thank you,
Olivier gg.
The text was updated successfully, but these errors were encountered:
Hello,
this tool is amazing. I like it very much, congratulations.
I have an issue when I try to view the default interface of an in a COM Service (.exe): the methods are not shown (so I can't invoke them of course).
It works great with another interface in the same object.
None of the interfaces/methods have a "special" attribute.
All the interfaces I'm talking implement IDispatch.
Here is an example of how the object and its interfaces are declared (in case it can be useful):
For this object, I have the "problem" with IMyServerTools; The IMyServerTools2 methods are properly displayed and I can test (invoke) them.
I got the same behavior with several some (actually all) other objects within this COM Service and also with other COM Services (these COM services were all built using the MS ATL library).
Do you think it might be fixed someday please ?
Thank you,
Olivier gg.
The text was updated successfully, but these errors were encountered: