deprecatedpersistent class %Net.Remote.ObjectGateway
extends %Persistent
This class is maintained for backward compatibility only and it is deprecated. All users should convert their use
of this class to the $system.external interface as soon as possible.
Object Gateway Server definitions.
property AllowedIPAddresses
as %String [ InitialExpression = "127.0.0.1" ];
property ClassPath
as %String(MAXLEN=32000);
property ConnectionTimeout
as %Integer(MAXVAL=300,MINVAL=2) [ InitialExpression = 5 ];
property DotNetCorePath
as %String(MAXLEN=1023);
property DotNetVersion
as %String(DISPLAYLIST=",F4.6.2,F3.5,N5.0,N6.0,N7.0",VALUELIST=",4.6.2,3.5,Net5.0,Net6.0,Net7.0") [ InitialExpression = "Net6.0" ];
property Exec32
as %Boolean [ InitialExpression = 1 ];
property FilePath
as %String(MAXLEN=1023);
property HeartbeatFailureAction
as %String(DISPLAYLIST=",None,Restart,Alert,Restart and Alert",VALUELIST=",N,R,A,RA") [ InitialExpression = "R" ];
property HeartbeatFailureRetry
as %Integer(MAXVAL=86400,MINVAL=0) [ InitialExpression = 300 ];
property HeartbeatFailureTimeout
as %Integer(MAXVAL=86400,MINVAL=0) [ InitialExpression = 30 ];
property HeartbeatInterval
as %Integer(MAXVAL=3600,MINVAL=0) [ InitialExpression = 10 ];
property InitializationTimeout
as %Integer(MAXVAL=300,MINVAL=2) [ InitialExpression = 5 ];
property JVMArgs
as %String(MAXLEN=32000);
property JavaHome
as %String(MAXLEN=1023);
property LogFile
as %String(MAXLEN=1023);
property MainClassName
as %String [ InitialExpression = $$$javaGatewayClass ];
property Name
as %String [ Required ];
property Port
as %Integer(MAXVAL=65535,MINVAL=1) [ Required ];
property PyOptions
as %String(MAXLEN=32000);
property PythonPath
as %String(MAXLEN=1023);
property PythonSDKVersion
as %String(MAXLEN=64);
property Resource
as %String(MAXLEN=64,MINLEN=0);
The Resource name that controls access to this gateway.
If no resource is defined, then it is a public gateway which
anyone can use.
property Server
as %String [ InitialExpression = "127.0.0.1",Required ];
property Type
as %String(DISPLAYLIST=",Java,.NET,Python",VALUELIST=",1,2,3") [ Required ];
property UsePassphrase
as %Boolean [ InitialExpression = 1 ];
property passphraseList
as %String [ Transient ];
query ByGateway()
Selects
Name, Type, Server, Port, State, StateExt
Lookup all Gateways; include current state.
query ByName(name As %String = "")
Selects
ID, Name, Type, Server, Port, Interface
Lookup by Gateway name.
index (ID on Name) [IdKey];