Creates the proxy for the target business object and returns a pointer to it. The proxy packages and marshals data to the server-side stub for communications with the business object to send requests and data over the Internet. For in-process component objects, no proxies are used, so just a pointer to the object is provided.
Syntax
Advanced Data Connector supports the following protocols: HTTP, HTTPS (HTTP over Secure Socket Layer ), DCOM, and in-process.
| Protocol | Syntax |
| HTTP | Set object = AdvancedDataSpace.CreateObject("ProgId", "http://awebsrvr") |
| HTTPS | Set object = AdvancedDataSpace.CreateObject("ProgId", "https://awebsrvr") |
| DCOM | Set object = AdvancedDataSpace.CreateObject("ProgId", "machinename") |
| In-process | Set object = AdvancedDataSpace.CreateObject("ProgId", "") |
| Part | Description |
| object | An object variable that evaluates to an object that is the type specified in ProgID. |
| AdvancedDataSpace | An object variable that represents an AdvancedDataSpace object used to instantiate the new object. |
| ProgID | A String that is the programmatic ID that identifies a server-side business object that implements your application's business rules. |
| awebsrvr or machinename | A String that represents a URL identifying the Internet Information Server (IIS) Web server where an instance of the server business object is created. |
Applies To
See Also
Getting a Recordset to the Client, Detailed Control Flow, Transport Protocols, Business Object Proxies, Business Object Proxies and the AdvancedDataSpace Object
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.