A command-line client that invokes any (well, most of) BioMoby
service. Details are in "docs/Moses.html". Here just a list of
possible options and arguments.

Usage:
   run-service -h[elp]
   run-service [<options>] <filename>
or
   set CLASSPATH and
   java org.biomoby.client.BaseCmdLineClient -h[elp]
   java org.biomoby.client.BaseCmdLineClient [<options>] -h[elp]
   
where <options> are:
  -noexit   ... do not exit on exit
  -nostack  ... do not print stack trace on error

 What service to call:
  -service <service-name>   !!! (almost)mandatory
  -loop
  -class <local-class-name>
  -e <service-endpoint>
  -mobye <registry-endpoint>
  -mobyuri <registry-namespace>
  -auth <service-authority>

 Creating (collecting) an input:
  -jobs <number>    ... how many jobs/queries
  -cols <number     ... how many elements in an input collection
  -has <number>     ... how many elements in a HAS relationship
  -xml <input-file> ... take this as the whole input
  -name <article-name-of-the-top-level-object>
  -obj <data-type-name>
  -id <id>[,<id>...]              ... IDs to use
  -ns <ns>[,<ns>...]              ... namespaces to use
  -value[s] <value>[,<value>...]  ... values to use
  -str <str>[,<str>...]           ... strings to be used
  -int <int>[,<int>...]           ... integers to be used
  -float <floats>[,<float>...]    ... floats to be used
  <name>=<value>[,<value>...]     ... article names to be set
  sec:<name>=<value>[,<value>...] ... secondary parameters to be set
  -div <divider>   ... a separator used in -id, -ns,
                       -value, -str, -float, name=value
                       (default is a comma)

 What to do with the collected input: 
  -show     ... show input as a string
  -showxml  ... show input as an XML
  -asbytes  ... input to service will be of type byte[] array

 What to do with the result:
  -noout    ... do not show any results
  -outstr   ... show results as a string
  -outxml   ... show results as XML
  -o <output-file>

[Note: You can also use -argsfile <filename> to read arguments from a
file. See details in src/Clients/help/argsfile.example.]
