Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

INFO: RDS Registry/Security Settings for Custom Business Objects


View products that this article applies to.

This article was previously published under Q191741

↑ Back to the top


Summary

This article explains the various settings required to launch custom business objects over HTTP or the Distributed Component Object Model (DCOM) using Remote Data Services (RDS).

RDS is used to transport Active Data Object recordsets from a server to a client computer. The resulting recordset is cached on the client computer and disconnected from the server. RDS contains a server-side business object (ActiveX DLL) called the RDSDataFactory (RDF) that sends SQL statements to a database management system (DBMS), and passes the results back across the Internet or an Intranet. The DataFactory object of RDS enables Web applications to provide live data with little programming.

RDS can also be used to work with custom business objects.

RDS business objects can be launched in the server either over HTTP or DCOM. To launch custom business objects using RDS there are certain registry and security settings required at the server as well as the client.

↑ Back to the top


More information

Settings for Running Business Objects over HTTP

Settings on the Server:
  1. Register the Business Object.
  2. Add required Business Object Registry entry. Add a key with the progID of the Business object as the text under the following:
    HKEY_LOCAL_MACHINE\System\CurrentControlSet\ 
             Services\W3SVC\Parameters\ADCLaunch.
    					
Settings on the Client:

There are no settings required on the client.

Settings for Running Business Object over DCOM

DCOM through RDS does not require Internet Information Server at the server side.

Settings on the Server:
  1. Register the Business Object.
  2. If the Business object is an In-Process COM Server, then a surrogate process needs to be set to host the business object.

    This can be done using the Oleview utility or by adding a LocalServer key for the business object and setting it to the path of the default surrogate process Dllhost.exe. This .exe file is in SYSTEM32 directory. Here are the steps for setting up a surrogate process:
    1. Run the OleView Tool (Oleview.exe) that comes with Visual C++.
    2. Select the object in the left pane treeview for which you want the surrogate process to be set.
    3. Go to the Implementation tab in the right pane and select the Use Surrogate Process check box.
    4. Enter "c:\winnt\system32\dllhost.exe" (this is the default surrogate given with Windows NT) in the "Path to Custom Surrogate" edit box.
  3. Set the launching permission to the launching user. Security can be modified by using the utility "DCOM configuration" (Dcomcnfg.exe) on the Server.
Settings on the Client:
  1. An entry key under HKEY_CLASSES_ROOT must contain a mapping of the ProgID to the ClsID. For example:
    HKEY_CLASSES_ROOT\<BusinessObjectPROGID> = <BusinessObjectCLSID>
    
    					
  2. Under the following key there needs to be proper subkeys to set the business object safe for scripting and initialization as explained in the RDS online documentation:
    HKEY_CLASSES_ROOT\CLSID\<BusinessObject ClassID>\Implemented
            Categories
    
    					
    [HKEY_CLASSES_ROOT\CLSID\<ClassID Of BusinessObject>\Implemented
              Categories\{7DD95801-9882-11CF-9FA9-00AA006C42C4}]
    
    					
    [HKEY_CLASSES_ROOT\CLSID\<ClassID Of BusinessObject>\Implemented
              Categories\{7DD95802-9882-11CF-9FA9-00AA006C42C4}]
    					

Special Considerations when Invoking an Object on the Same Computer

If you use RDS.DataSpace to create an instance of a business object on the same computer as the client by giving the name of the computer, it fails to create the object. For example, if the client and server are on the same computer called "MyServer" using the following fails:
Dim ds as New RDS.DataSpace
   ds.CreateObject("YourBusinessObjectProgID", "MyServer")
				
If the business object is on the same computer as the client, you should invoke the object locally by specifying an empty string for the second argument rather than a server name. For example:
ds.CreateObject("YourBusinessObjectProgID", "")
				

↑ Back to the top


References

For additional information, please see the following article in the Microsoft Knowledge Base:
183315� HOWTO: Write and Validate a Custom Business Object with RDS

↑ Back to the top


Keywords: KB191741, kbinfo

↑ Back to the top

Article Info
Article ID : 191741
Revision : 7
Created on : 3/14/2005
Published on : 3/14/2005
Exists online : False
Views : 478