startAppMethodWithString
startAppMethodWithString(schemaName: String; appName: String; methodName: String; methodParam: String; checkSecurity: Boolean): Process;
The startAppMethodWithString method of the Application class enables your logic to initiate another application on the same node as the initiating application, passing a string as a parameter for the specified method to be invoked on the new application.
The parameters for the startAppMethodWithString method are listed in the following table.
Parameter | Description |
---|---|
schemaName | Specifies the name of the schema in which the application is located. |
appName | Specifies the name of the application to start. |
methodName | Specifies the method that is to be invoked on the application. |
methodParam |
Parameter string that is passed to the method that is invoked. |
checkSecurity | If set to true, invokes the getAndValidateUser method to validate user codes and passwords. If set to false, inherits the security profile from the invoking application. (If set to false and the invoking application terminates before the start up of the called application has completed, a Jade exception is raised.) |
The method specified in the methodName parameter must have a signature that contains only the methodParam parameter; that is:
method-name(methodParam: String);
This method starts only applications of type ApplicationType_Non_GUI_Web, ApplicationType_Non_GUI_Rest, or ApplicationType_Non_GUI if this method is invoked from a server method or server application. (An exception is raised if this method is invoked from a server method or a server application to start an application of a type other than a non-GUI application.)
On a client node, this method starts all types of application. For details about running non-GUI applications in standard (or fat client) mode, see the Application class applicationType property.
You can use the MaxWaitAppStart parameter in the [
The string that is specified in the methodParam parameter of the startAppMethodWithString method is passed to the method specified in the methodName parameter.
When multiple applications are initiated, they run independently of each other. The Jade application program switches the context between applications, based on the form or control that is causing an event. If one application is terminated (when all forms of that application are closed), the database remains open, as each application uses the same open instance of that database.
This method returns the process of the application that was started. The application that calls the method continues executing after Jade has successfully created a new process. If the application is not initiated (for example, because of
If the allowZeroForms method was called before the startAppMethodWithString method completes, the process continues afterwards, even if a form was not created, so you will need to code a
The types of application that you can start by using the startAppMethodWithString method on client nodes or server nodes are listed in the following table, which also lists their termination behavior.
Start-up Location | GUI | Non_GUI and Non_GUI_Web | GUI_No_Forms |
---|---|---|---|
Client nodes | Stays while application has forms | Does not stay running | Stays while application has forms |
No execution of finalize method | No execution of finalize method | No execution of finalize method | |
Server nodes | Not available | Does not stay running | Not available |
No execution of finalize method |
In this table, "Stays while application has forms" indicates that the application is terminated automatically when it has no remaining forms or there is explicit programmatic termination.
2020.0.01 and higher