Difference between revisions of "RPC HELP XWB XWB GET VARIABLE VALUE RPC Example"

From VistApedia
Jump to: navigation, search
(Created page with " RPC Broker Help Home Mh2>XWB GET VARIABLE VALUE Example</h2> The following is example of the XWB GET VARIABLE VALUE RPC: brkrRPCBroker1.RemoteProced...")
 
 
Line 1: Line 1:
 
[[RPC_Broker_Help| RPC Broker Help Home]]
 
[[RPC_Broker_Help| RPC Broker Help Home]]
Mh2>XWB GET VARIABLE VALUE Example</h2>
+
<h2>XWB GET VARIABLE VALUE Example</h2>
  
 
The following is example of the XWB GET VARIABLE VALUE RPC:
 
The following is example of the XWB GET VARIABLE VALUE RPC:

Latest revision as of 16:50, 6 July 2015

RPC Broker Help Home

XWB GET VARIABLE VALUE Example

The following is example of the XWB GET VARIABLE VALUE RPC:

   brkrRPCBroker1.RemoteProcedure := 'XWB GET VARIABLE VALUE';
   brkrRPCBroker1.Param[0].Value :='DUZ';
   brkrRPCBroker1.Param[0].PType := reference;
   try
     brkrRPCBroker1.Call;
   except
     On EBrokerError do
       ShowMessage('Connection to server could not be established!');
   end;
   ShowMessage('DUZ is '+brkrRPCBroker1.Results[0]);