RE: Win32::OLE behavior on IMessageFilter::HandleIncomingMessageSERVERCALL_RETRYLATER

2005-04-13 Thread Jan Dubois
On Wed, 13 Apr 2005, Jeff Schultz wrote: The other side of this is that calling my COM server which implements IMessageFilter from an (ATL) COM client seems to work ok. So I am guessing that perhaps ATL provides a default client implementation of IMessageFilter::RetryRejectedCall which

Re: Win32::OLE behavior on IMessageFilter::HandleIncomingMessageSERVERCALL_RETRYLATER

2005-04-13 Thread Jeff Schultz
On 4/13/05, Jan Dubois [EMAIL PROTECTED] wrote: Win32::OLE only implements OLE Automation (access to IDispatch interfaces). If you want transparent retries from scripting languages then you need to implement this in your IDispatch interface implementation yourself. Thanks for the response.