Hello
I am trying to find a solution to connect to a Documentum server from VBA.
I find a way which is maybe possible to do that but, it uses a method "getLocalClient".
Dim cx As DfClientX
Dim client As IDfClient
Dim session As IDfSession
Dim li As IDfLoginInfo
Set cx = New DfClientX
Set client = cx.getLocalClient
Set li = cx.getLoginInfo
li.setUser ("username")
li.setPassword ("password")
Set session = client.newSession("docbase", li)
However, my documentum server is running on a remote machine. So, anyone knows how can I connect to my remote server using VBA?
Thanks
Regards