Creates and returns a pointer to the proxy (a client-side interface-specific object) that is used to marshal (transfer) data between the client and server.
The CreateObject method is called to create the proxy
(an interface-specific object on the client-side) that is used
to communicate with the corresponding stub (an interface-specific object on the server-side)
to marshal (transfer) data between the client and server, and vice-versa.
This process also involves instantiation of either the default server program (RDSServer.DataFactory)
or a similar custom server program on the server-side.
After the server program is instantiated, a reference to the server program,
or to the proxy, is returned.
Note that for an in-process component object, a proxy is not required since a network is not required.
There are two mandatory parameters.
Set objDataFactory = objRDS.CreateObject("RDSServer.DataFactory", strConnURL)
...
Dim objRecordset
Set objRecordset = objDataFactory.Query(StrConnection, strQuery)