EssLoadApplication

Description

EssLoadApplication() starts an application on the server.

Syntax
ESS_FUNC_M EssLoadApplication (hCtx, AppName);
ESS_HCTX_ThCtx
ESS_STR_TAppName

Parameters

hCtxEssbase API context handle.
AppNameName of application to load.

Return Value

None.

Notes

Access

This function requires the caller to have Application Load/Unload privilege (ESS_PRIV_APPLOAD) for the specified application.

Example

ESS_FUNC_M
ESS_LoadApp (ESS_HCTX_T  hCtx)
{
   ESS_FUNC_M     sts = ESS_STS_NOERR;
   ESS_STR_T     AppName;
   AppName = "Sample";
   sts = EssLoadApplication (hCtx, AppName);
   return (sts);
}

See Also

EssLoadDatabase()
EssUnloadApplication()