Object COM and 64 bit server - problem

Hi.

I have agent in Lotus Script, running on the server.

My agent use com objects:

Set oApp = CreateObject(“SomeApplication”)

Lotus Domino server is 64 bit.

Object COM application is 32 bit.

In a 64-bit version domino can not create object.

In a 32-bit version everything is working properly.

Any suggestions how to run the code?

Subject: You cannot mix 64-bit core code with 32-bit sub-component code - not at all!

If you don’t have ALL sub-components such as ActiveX objects etc on 64-bit, you can’t use them on Domino 64-bit (or any other 64-bit app for that matter :-))

You should rather have Domino 32-bit installed on 64-bit OS, and then you can use your legacy objects

Subject: Thanks

Thanks :slight_smile: