Interface IRuntimeExecutionCommandOptions


public interface IRuntimeExecutionCommandOptions
1C:Enterprise runtime process execution command options. All parameters may be appended to 1C:Enterprise runtime launch command with / prefix or as is to web client URL.
Restriction:
This interface is not intended to be extended by clients.
Restriction:
This interface is not intended to be implemented by clients.
  • Field Details

    • DEBUG_MODE

      static final String DEBUG_MODE
      Enable debug option.

      Parameters -http, -tcp or -attach are expected to be added after option, -http is default value.

      Value is DEBUG.

      See Also:
    • DEBUG_SERVER_URL

      static final String DEBUG_SERVER_URL
      Debug web server URL option. URL specifies as option parameter.

      Value is DEBUGGERURL.

      See Also:
    • OUTPUT_LOG

      static final String OUTPUT_LOG
      Output log option.

      Parameter -NoTruncate can be appended after log option to specify not to clear log file before startup.

      Value is Out.

      See Also:
    • TEST_MANAGER

      static final String TEST_MANAGER
      Test manager option.

      Value is "TESTMANAGER".

      See Also:
    • TEST_CLIENT

      static final String TEST_CLIENT
      Test client option.

      Parameter -TPort and -TestClientID can be appended after test client option to specify port or client id.

      Value is "TESTCLIENT".

      See Also:
    • USER_NAME

      static final String USER_NAME
      Infobase user name option.

      Value is N.

      See Also:
    • USER_PASSWORD

      static final String USER_PASSWORD
      Infobase user password option.

      Value is N.

      See Also:
    • INTERFACE_LANGUAGE

      static final String INTERFACE_LANGUAGE
      Platform interface language option.

      Value is L.

      See Also:
    • SESSION_LOCALE

      static final String SESSION_LOCALE
      Session locale code option. The code of the locale used to determine how Number and Date data types are displayed.

      Value is VL.

      See Also:
    • CREATE_INFOBASE

      static final String CREATE_INFOBASE
      Create infobase option.

      Value is AddInList.

      See Also:
    • USE_TEMPLATE

      static final String USE_TEMPLATE
      Create infobase using provided template option. An infobase will be created using a template specified in option parameter. Configuration files (*.cf, *.cfu) or infobase dump files (*.dt) can serve as templates. If a template is not specified, the parameter is ignored.

      Value is UseTemplate.

      See Also:
    • DUMP_CONFIGURATION_TO_XML

      static final String DUMP_CONFIGURATION_TO_XML
      Dump configuration to XML files option. The following paraneters are available:
      • <dump directory> - Directory for dumping the configuration.
      • Extension <extension name> - Dump the extension with the specified name. If the extension is successfully processed, return 0. Otherwise (if the extension with the specified name is not available or any errors occur) return 1.
      • AllExtensions - Dump extensions only (all of them). For each extension, create a directory with a matching name.
      • Format - The dump file structure format (the default option is Hierarchical):

      Value is DumpConfigToFiles.

      See Also:
    • DUMP_CONFIGURATION_TO_MOBILE_XML

      static final String DUMP_CONFIGURATION_TO_MOBILE_XML
      Dump configuration to mobile XML option.

      Value is MAWriteFile.

      See Also:
    • LOAD_CONFIGURATION_FROM_XML

      static final String LOAD_CONFIGURATION_FROM_XML
      Load configuration from XML files option. The following paraneters are available:
      • <dump directory> - Directory that stores XML configuration files.
      • Extension <extension name> - Process the extension with the specified name. If the extension is successfully processed, return 0. Otherwise (if the extension with the specified name is not available or any errors occur) return 1.
      • AllExtensions - Load extensions only (all of them). If an extension is not found, create it. For each subdirectory of the specified directory, attempt to create an extension. If an attempt to load an extension to the main configuration (or vice versa) is made, display an error.
      • files - List of files to be loaded, comma-separated. This parameter is ignored if the -listfile parameter is specified.
      • listfile - File that stores the list of files to be loaded.
      • format - Use this parameter to partially load the configuration.

      Value is LoadConfigFromFiles.

      See Also:
    • CHECK_CAN_APPLY_CONFIGURATION_EXTENSIONS

      static final String CHECK_CAN_APPLY_CONFIGURATION_EXTENSIONS
      Check an ability of configuration to apply extensions. The following paraneters are available:
      • Extension <extension name> - Check ability to apply an extension with the given name, with respect to all previously loaded extensions.
      • AllZones - Check ability to apply all extensions.
      • Z - Set data separators during check.

      Value is CheckCanApplyConfigurationExtensions.

      See Also:
    • LIST_CONFIGURATION_EXTENSIONS

      static final String LIST_CONFIGURATION_EXTENSIONS
      Displays configuration extensions. When the command is run without parameters, it returns an error. The following parameters are available:
      • Extension <extension name> - Display the configuration extension name. If the extension is not available, display an error.
      • AllExtensions - Display all extension names.

      Value is DumpDBCfgList.

      See Also:
    • DELETE_CONFIGURATION_EXTENSIONS

      static final String DELETE_CONFIGURATION_EXTENSIONS
      Deletes configuration extensions. When the command is run without parameters, it returns an error. The following parameters are available:
      • Extension <extension name> - Delete the extension with the specified name. If the extension is successfully processed, return 0. Otherwise (if the extension with the specified name is not available or any errors occur) return 1.
      • AllExtensions - Delete all configuration extensions.

      Value is DeleteCfg.

      See Also:
    • UPDATE_INFOBASE

      static final String UPDATE_INFOBASE
      Update infobase option.

      Value is UpdateDBCfg.

      See Also:
    • DUMP_INFOBASE

      static final String DUMP_INFOBASE
      Dump infobase to *.dt file.

      Value is DumpIB.

      See Also:
    • RESTORE_INFOBASE

      static final String RESTORE_INFOBASE
      Restore infobase from *.dt file.

      Value is RestoreIB.

      See Also:
    • DUMP_CONFIGURATION_TO_CF

      static final String DUMP_CONFIGURATION_TO_CF
      Dump configuration to *.cf file.

      Value is DumpCfg.

      See Also:
    • LOAD_CONFIGURATION_FROM_CF

      static final String LOAD_CONFIGURATION_FROM_CF
      Load configuration from *.cf file.

      Value is LoadCfg.

      See Also:
    • DUMP_EXTERNAL_DATA_PROCESSOR_OR_REPORT_TO_FILES

      static final String DUMP_EXTERNAL_DATA_PROCESSOR_OR_REPORT_TO_FILES
      Dumps an external report or data processor to a set of files. The following parameters are available:
      • <root dump file> - Root file of the XML file structure for storing the external report or data processor dump.
      • <external report or data processor file> - External data processor file (.epf) or external report file (.erf).
      • Format - The dump format, Hierarchical or Plain. The default value is Hierarchical.

      Value is DumpExternalDataProcessorOrReportToFiles.

      See Also:
    • LOAD_EXTERNAL_DATA_PROCESSOR_OR_REPORT_FROM_FILES

      static final String LOAD_EXTERNAL_DATA_PROCESSOR_OR_REPORT_FROM_FILES
      Loads an external report or data processor from a set of files. All parameters are mandatory.
      • <root dump file> - Root file of the XML file structure that stores the external report or data processor dump.
      • <external report or data processor file> - Resulting external data processor file or external report file. The file extension is assigned according to the dump content: .epf for data processors and .erf for reports. If the specified file extension is incorrect, it is replaced with the correct one.

      Value is LoadExternalDataProcessorOrReportFromFiles.

      See Also:
    • EXECUTE

      static final String EXECUTE
      Start an external data processor in 1C:Enterprise mode immediately after startup. Value is Execute.
      See Also:
    • RUN_MANAGED_CLIENT

      static final String RUN_MANAGED_CLIENT
      Run 1C:Enterprise as managed application mode option.

      Value is RunModeManagedApplication.

      See Also:
    • AUTO_CHECK_VERSION

      static final String AUTO_CHECK_VERSION
      Run 1C:Enterprise with auto version selection.

      Value is AppAutoCheckVersion.

      See Also:
    • USE_HARDWARE_LICENSES

      static final String USE_HARDWARE_LICENSES
      Use hardware licenses flag option. Value of flag must be appended after option and can be + indicating true or - indicating false.

      Value is UseHwLicenses.

      See Also:
    • ENABLE_CHECK_EXTENSIONS_AND_ADD_INS_SYNC_CALLS

      static final String ENABLE_CHECK_EXTENSIONS_AND_ADD_INS_SYNC_CALLS
      Enable the strict check of file extensions, cryptography extensions and add-ins synchronous calls (thin and web clients only).

      Value is "EnableCheckExtensionsAndAddInsSyncCalls".

      See Also:
    • ENABLE_CHECK_MODAL

      static final String ENABLE_CHECK_MODAL
      Enables the strict check of modal methods calls. If a modal method is called in the configuration with modality usage set to "Do not use" an error will be displayed. If a modal method is called in the configuration with modality usage set to "Use with warnings" a warning will be displayed.

      Value is "EnableCheckModal".

      See Also:
    • DISABLE_STARTUP_DIALOGS

      static final String DISABLE_STARTUP_DIALOGS
      Disable startup dialogs and force target infobase usage instead of possibility to ask user for infobase selection.

      Value is DisableStartupDialogs.

      See Also:
    • DISABLE_STARTUP_MESSAGES

      static final String DISABLE_STARTUP_MESSAGES
      Disable startup warning messages option.

      Value is DisableStartupMessages.

      See Also:
    • DISPLAY_PERFORMANCE

      static final String DISPLAY_PERFORMANCE
      Display performance option. Performance indicators window contains the number of server calls and the volume of data sent to the server and received from it in the thin and managed clients.

      Value is DisplayPerformance.

      See Also:
    • DISPLAY_ALL_FUNCTIONS

      static final String DISPLAY_ALL_FUNCTIONS
      Display all functions option. If used, the All functions section is added to the menu. It includes a variety of commands, such as opening a catalog, document, report, data processor, and so on.

      Value is DisplayAllFunctions.

      See Also:
    • TECHNICAL_SPECIALIST_MODE

      static final String TECHNICAL_SPECIALIST_MODE
      Enables "Fuctions for technician" command in "Service" and settings menu.

      Value is TechnicalSpecialistMode.

      See Also:
    • CLIENT_CONNECTION_SPEED

      static final String CLIENT_CONNECTION_SPEED
      Client connection speed option.

      Value is O.

      See Also:
    • DATA_SEPARATION

      static final String DATA_SEPARATION
      Data separation option. Parameter of option is a string that specifies separators. A shared attribute that separates data consists of a usage flag ("+" (default value) or "-") and a value. If a separator is not used, the value should be preceded by "-". If the first character in the separator value is "+" or "-", it should be doubled. Separators are comma-separated. If a separator value includes a comma, it should be doubled.

      Parameter of this option is a string that specifies separators.

      Value is Z.

      See Also:
    • STARTUP_OPTION

      static final String STARTUP_OPTION
      Client startup option. Content can be lately obtained from BSL code.

      Value is C.

      See Also:
    • OS_AUTHENTICATION

      static final String OS_AUTHENTICATION
      Operation system authentication attempt option. Value of option must be appended after option and can be + indicating true or - indicating false.

      Value is WA.

      See Also:
    • EMULATE_DELAY

      static final String EMULATE_DELAY
      Emulate delay on server call. The delay parameters specify delays for calls and for sending or receiving data to or from the server. Parameters can be specified in next format:
       [-CallXXXXX] [-SendYYYYY] [-ReceiveZZZZZ]
       
      Maximum timeout is 10 seconds.

      Value is SimulateServerCallDelay.

      See Also:
    • MANAGE_CONFIGURATION_SUPPORT

      static final String MANAGE_CONFIGURATION_SUPPORT
      Specifies configuration support settings. The following parameters are available:
      • <disableSupport> - Disable configuration support. If this parameter is not specified, add an error message to the log file.
      • <force> - Disable configuration support even if changing the configuration is not allowed.If this parameter is not specified and changing the configuration is not allowed, do not disable support and add an error message to the log file.

      Value is "ManageCfgSupport".

      See Also:
    • PROGRESSIVE_WEB_APP_NAME

      static final String PROGRESSIVE_WEB_APP_NAME
      Progressive Web Application Name option.

      Value is ProgressiveWebApplicationName.

      See Also:
    • AGENT_MODE

      static final String AGENT_MODE
      Start Designer in agent mode option.

      Value is AgentMode.

      See Also:
    • AGENT_PORT

      static final String AGENT_PORT
      SSH server port number in the agent mode option. Default value is 1543.

      Value is AgentPort.

      See Also:
    • AGENT_LISTEN_ADDRESS

      static final String AGENT_LISTEN_ADDRESS
      Listening address in the agent mode option. Default value is 127.0.0.1.

      Value is AgentListenAddress.

      See Also:
    • AGENT_SSH_HOST_KEY

      static final String AGENT_SSH_HOST_KEY
      A path to the private SSH host key option.

      Value is AgentSSHHostKey.

      See Also:
    • AGENT_SSH_HOST_KEY_AUTO

      static final String AGENT_SSH_HOST_KEY_AUTO
      Option to look for the private SSH host key in the following directory:
      • On Windows: %LOCALAPPDATA%\1C\1Cv8\<infobase ID>\sftp.
      • On Linux: ~/.1cv8/1C/1cv8/<infobase ID>/sftp.

      If the file is not found, create a 2048-bit private RSA key.

      Value is AgentSSHHostKeyAuto.

      See Also:
    • AGENT_BASE_DIRECTORY

      static final String AGENT_BASE_DIRECTORY
      Option for a base directory for the SFTP server and for the dump and restore configuration commands. If it is not specified, the sftp subdirectory of the infobase working directory is used instead:
      • On Windows: %LOCALAPPDATA%\1C\1Cv82\<infobase ID>\sftp.
      • On Linux: ~/.1cv8/1C/1cv8/<infobase ID>/sftp.

      Value is AgentBaseDir.

      See Also:
    • URL_FRAGMENT

      static final String URL_FRAGMENT
      e1cib transfering URL fragment option. URL fragment specifies as option parameter.

      Value is URL.

      See Also:
    • DISABLE_HOME_PAGE_FORMS

      static final String DISABLE_HOME_PAGE_FORMS
      Whether need to force 1C:Enterprise client to show home page forms in disabled state.

      Value is DisableHomePageForms.

      See Also:
    • MAIN_WINDOW_MODE

      static final String MAIN_WINDOW_MODE
      Option to set main window client mode.

      Value is MainWindowMode.

      See Also: