handle the messages brought
back. The service now works exactly as I had hoped it would.
Ken
-Original Message-
From: Jan Dubois [mailto:[EMAIL PROTECTED]
Sent: Tuesday, November 29, 2005 2:15 PM
To: 'Steven Manross'; LeFevre, Ken; [EMAIL PROTECTED]
Subject: RE: OLE problem wi
PROTECTED]
Subject: RE: OLE problem with Outlook
Shouldn't your
Win32::OLE->Initialize(Win32::OLE::COINIT_OLEINITIALIZE);
Be after the use Win32::OLE qw (.);
As well, threading probably doesn't work all that well considering the
single-threaded apartment model required for Outl
Win32::OLE doesn't really mix with using multiple threads inside Perl.
I think you *might* get it to work if you only ever use it inside a
single thread, and then also make sure you don't "use" Win32::OLE
at all, but just "require" it in the thread that uses it. The
Initialize() call would have to
Shouldn't your
Win32::OLE->Initialize(Win32::OLE::COINIT_OLEINITIALIZE);
Be after the use Win32::OLE qw (.);
As well, threading probably doesn't work all that well considering the
single-threaded apartment model required for Outlook connections in
Perl. But maybe someone can correct me if