Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.
Auszug
hiddentrue

Nuclos web service: WSDL, SOAP, codegenerator, rules, trustStore, keyStore, authentication, certificate.

globe with meridians Language: Deutsch · English

hammer and wrench Web service

Register external SOAP web services in Nuclos – WSDL, generated classes for rules and certificate configuration.

Status
colourPurple
titleHow-to
Status
colourBlue
titleAdministrator
Status
colourGreen
titleUpdated: Jul 2026
Status
colourGrey
titleapplies to Nuclos 4.2026.x

Panel
bgColor#F4F5F7

On this page

Inhalt
maxLevel2
minLevel2

Menu Administration → Web service. A web service enables machine-based communication over a network (HTTP, XML, JSON) to call external services from Nuclos.

Configuration

To use a (SOAP) web service, register it under Administration → Web service. Matching classes are then generated under <NUCLOS-HOME>/data/codegenerator/src-rule/org/nuclos/webservices/<name> which can be called in rules.

FieldMeaning
Namefreely chosen name of the web service
FileWSDL file describing the service (from the provider)
Hostservice endpoint (from the provider)
Encodingcharacter encoding
Authenticationtype of authentication
User / passwordcredentials (if authentication ≠ NONE)

Certificates

To attach a certificate to the request, set the system properties in the executing rule (restart the server if necessary):

Codeblock
languagejava
System.setProperty("javax.net.ssl.trustStore", "pfadunddateiname.jks");
System.setProperty("javax.net.ssl.trustStorePassword", password);
System.setProperty("javax.net.ssl.keyStore", "pfadunddateiname.jks");
System.setProperty("javax.net.ssl.keyStoreType", "JKS");
System.setProperty("javax.net.ssl.keyStorePassword", password);

Related pages

gear Connection


Interfaces.

Open →