
Remote creation of an object
Hi Stefan,
You have to export the package from the server "A" to the
server "B", doing the following:
Open the server "A" Component Services MMC
Right-click on the package you want to run on server "B"
Click on "Export..."
Choose a name and location for the package files.
Now run the .MSI file on server "B".
After install you can use CreateObject
("IQL.clsIQL","serverA") on server "B"
I hope it help.
Carlos.
Quote:
>-----Original Message-----
>Hi,
>I have a server with COM+ - Components installed on it.
>When I use
>set objData = CreateObject("IQL.clsIQL")
>or set objData = CreateObject("IQL.clsIQL","MyServerName")
>on the machine itself, it works fine.
>But: what are the basics to create an Object on a remote
computer? What do I
>have to configure on my machine and how has the call to
look like on the
>second machine?
>Machine A
Machine B
>My Object IQL <------------------- wants to use
the object on server
Quote:
>a
>Do I have to install anything on machine B?
>At the moment, I get the message "ActiveX-Coponent can't
create Object:
>'IQL.clsIQL'
>Thanks in advance,
>Stefan
>.