Microsoft Chat Server Development Guide

Register your component with the Chat Administrator

Chat extensions must implement the "Chat Server Extension" category in order to be enumerated by the Chat Service Administrator.

  1. Add a category implementation registry entry for your component by adding it to your objects RGS file.
    For example (note the quotes):
    ForceRemove {B4EF354F-809E-11D1-98C6-00C04FB90B72} = s 'SessionMonitor Class'
    {
       ProgID = s 'SessionMonitor.SessionMonitor.1'
       VersionIndependentProgID = s 'SessionMonitor.SessionMonitor'
    
       InprocServer32 = s '%MODULE%'
       {
          val ThreadingModel = s 'Apartment'
       }
    
       'Implemented Categories' 
       {
          {26ED0606-44D2-11D1-9045-00C04FB6E8E9}
       }
    }
    
  2. These additional registry strings will be written to the registry when you build the component.

© 1998 Microsoft Corporation. All rights reserved.