I have a DCOM client and server applications which use OLE automation marshaller. They work fine when run on the same PC but when the server is on a different PC not in the
For those who are working in Delphi there is one little note that can save a lot of your time. After you did obj as ISomeInterface
operation, you have to call CoSetProxyBlanket
for the new instance. This could be not very obvious, but all we know that as
operator calls QueryInterface
method, and it can return new instance.