Difference between revisions of "RPC HELP XWB REMOTE STATUS CHECK Example"

From VistApedia
Jump to: navigation, search
(Created page with " RPC Broker Help Home <h2>XWB REMOTE STATUS CHECK Example</h2> The following is example of the XWB REMOTE STATUS CHECK RPC: brkrRPCBroker1.RemoteProce...")
 
(No difference)

Latest revision as of 23:16, 6 July 2015

RPC Broker Help Home

XWB REMOTE STATUS CHECK Example

The following is example of the XWB REMOTE STATUS CHECK RPC:

   brkrRPCBroker1.RemoteProcedure := 'XWB REMOTE STATUS CHECK';
   brkrRPCBroker1.Param[0].Value :='MYHANDLE';
   brkrRPCBroker1.Param[0].PType := literal;
   try
     brkrRPCBroker1.Call;
   except
     On EBrokerError do
       ShowMessage('Connection to server could not be established!');
   end;
   .; code to handle results of check