eBiss 3

Hilfe & Dokumentation

User Tools

Site Tools


en:ueberblick:commandmode

CommandClient

The eBiss.CommandClient.exe allows to start different commands or jobs via command line mode1)2).

eBiss.CommandClient.exe --<parameter>

Possible parameters for the eBiss.CommandClient are

CommandClient Parameter Name Function
ShowHelpstarts and opens the eBiss Help
StopHelpStop the eBiss help
GetServerState
SmoothShutdownShuts down the service to wait for running jobs
RunJob (/r) “Job Name “starts a job
node “Node Oid”A sub node in which the job should be statet (Change Node in Place). The job must be public for doing this
HelpService <Method>specially designed for the help service, see help

Example:

eBiss.CommandClient.exe --SmoothShutdown

eBiss CommandClient - Install Help

The CommandClient should be called as administrator. If you run the help as a service, then the help should not be configured on the local IP (not 127.0.0.1).

eBiss.CommandClient.exe --HelpService <Method>

Possible options for the method:

Method Name Function
Install
Uninstall
StartStart the service
Stop Stops the service

eBiss CommandClient - Application example

In the following you will learn how to use the CommandClient by means of application examples.

Prerequisites

  1. The eBiss.service must be active.
  2. The config file eBiss.CommandClient.exe.config” must exist3)
  3. The jobs of the eBiss workflow must be available and executable.

start job from the command line

  1. Windows Start –> Run –> cmd –> Command dialog opens
  2. Navigate to the eBiss directory and enter the following command to start the named job JobName:
    eBiss.CommandClient.exe /r:JobName

Examples. <code>eBiss.CommandClient.exe /r:Import_Articles</code> <code>eBiss.CommandClient.exe /r: “Get from outside”</code> Run job in a sub node, for this the Job 'Get from outside' must be public: <code>eBiss.CommandClient.exe /r:“Get from outside” /node:ff407aac-4174-44bb-aa21-9c59a1a802bf</code> Please note, if there are spaces in the job name, quotation marks (”)** must be used.

administer eBiss help from the command line

Installs the eBiss Help Service on your system

eBiss.CommandClient.exe --HelpService Install 

Stops the currently running eBiss Help Service

eBiss.CommandClient.exe --HelpService Stop

Uninstalls the eBiss Help Service

eBiss.CommandClient.exe --HelpService Uninstall

Configuration sample file

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <appSettings>
    <add key="eBiss.ConnectionString" value="server=.;database=Pranke;Integrated Security = True; " />
    <add key="eBiss.ServerURL" value="tcp://127.0.0.1:9999/eBiss.ApiServer" />
    <add key="eBiss.Client.AutoUser" value="Admin" />
    <add key="eBiss.Client.AutoPass" value="Password" />
    <add key="eBiss.Client.AutoLogin" value="yes" />
    <add key="eBiss.Client.AlwaysShowLogin" value="no" />
  </appSettings>
</configuration>
1)
Command Line, DOS prompt
2)
Important: Running the CommandClient as administrator
3)
and must contain at least the following parameters for a successful login to the eBiss Service:
<add key="eBiss.Client.AutoUser" value="Admin" />
<add key="eBiss.Client.AutoPass" value="Password" />
<add key="eBiss.Client.AutoLogin" value="yes" />
<add key="eBiss.Client.AlwaysShowLogin" value="yes" />
en/ueberblick/commandmode.txt · Last modified: 2024/02/20 08:15 by 127.0.0.1