Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Installation of CLI based components

Installation of gSOAP 2.

...

8

In order to install CLI components you need to install and configure gSOAP 2.7 8 library. Please follow instructions here, and make sure gSOAP library is available in your system:                          gsoap_2.78.1370.zip

It's a good idea to provide separate module for gSOAP library that sets some basic locations

Code Block
module-whatis    gsoap <http://http://gsoap2.sourceforge.net/>
setenv           GSOAP put_the_location_of_gsoap_here               # e.g. /some_dir/libs/gsoap/2.78
prepend-path     PATH put_location_of_bin_dir_here                  # e.g. /some_dir/libs/gsoap/2.78/bin
prepend-path     PKG_CONFIG_PATH put_location_of_pkg_config_here    # e.g. /some_dir/libs/gsoap/2.78/lib/pkgconfig

It's good to create gsoap.pc file - it can be used later, during compilation of the codes

Code Block
prefix=/some_dir/libs/gsoap/2.7
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
includedir=${prefix}/include

Name: GSoap
Description: SOAP C Web Services
Version: 2.7


Libs: -L${libdir} -lgsoap
Cflags: -DWITH_DOM -I${includedir}

Installation of IMAS UAL

Current version of Catalog QT requires at least imas/3.20.0/ual/3.8.3. Make sure to have IMAS properly installed and configured at your target host.

...