Summary Table
Categories |
Total Count |
PII |
0 |
URL |
0 |
DNS |
0 |
EKL |
0 |
IP |
0 |
PORT |
0 |
VsID |
0 |
CF |
0 |
AI |
0 |
VPD |
0 |
PL |
0 |
Other |
0 |
File Content
{ **************************************************************
Package: XWB - Kernel RPCBroker
Date Created: Sept 18, 1997 (Version 1.1)
Site Name: Oakland, OI Field Office, Dept of Veteran Affairs
Developers: Danila Manapsal, Don Craven, Joel Ivey
Description: Registers components and property editors.
Current Release: Version 1.1 Patch 65
*************************************************************** }
{ **************************************************
Changes in v1.1.65 (HGW 03/22/2016) XWB*1.1*65
1. Added new component TXWBSSOiToken. This component is not needed for
TRPCBroker or TCCOWRPCBroker as the attributes are set internally,
but needs to be explicitely exposed as an external interface for
the BAPI32.DLL so that non-RPCbroker applications (Attachmate Reflections)
can call to obtain an STS token.
Changes in v1.1.60 (HGW 03/27/2014) XWB*1.1*60
1. None
Changes in v1.1.50 (JLI 09/01/2011) XWB*1.1*50
1. None
************************************************** }
unit XWBReg;
{$I IISBase.inc}
interface
procedure Register;
implementation
uses
{System}
System.Classes,
{?}
DesignIntf, DesignEditors, DesignMenus,
{VA}
Trpcb, CCOWRPCBroker, XWBSSOi,
RpcbEdtr, XWBRich20,
VergenceContextorLib_TLB;
procedure Register;
begin
RegisterComponents('Kernel',[TRPCBroker, TCCOWRPCBroker, TXWBRichEdit, TContextorControl, TXWBSSOiToken]);
RegisterPropertyEditor(TypeInfo(TRemoteProc),nil,'',TRemoteProcProperty);
RegisterPropertyEditor(TypeInfo(TServer),nil,'',TServerProperty);
RegisterPropertyEditor(TypeInfo(TRpcVersion),nil,'',TRpcVersionProperty);
end;
end.