in reply to Using COM Objects from Perl

What version of sametime are you using? I just installed the Sametime 3.1 connect client (after being on 3.0) and I don't see any COM objects.

Replies are listed 'Best First'.
Re: Re: Using COM Objects from Perl
by TheFluffyOne (Beadle) on Nov 21, 2003 at 16:03 UTC

    I'm using Sametime Connect 3.0, but the COM component is part of the Sametime COM Toolkit that can be downloaded from the Lotus Dev website.

    It consists of the files STComTk.dll and STComTk.tlb which are copied to c:\winnt\system32, and the dll is registered with regsvr32.exe.

    Thanks,

    Gordon

      Ah ok. Well I can duplicate your error anyhow. I'm at a loss about what the problem is though. The following LotusScript code also errors out on LoginWithPassword. I didn't install a Win32 LastError function so I couldn't examine that.

      Sub Initialize Set CS = CreateObject( "STComTk.CommunityService" ) Call CS.LoginWithPassword( "Server", "username", "password" ) Messagebox CS.IsLoggedIn CS.Logout End Sub