Global Resource Properties

Connection Settings

The connection settings of global resource can be configured from the property settings of each adapter or “Global Resource Settings” of the control panel.
Basic settings
Item name Required/Optional Use of variables Description Remarks
Name Required Not available Enter the name of the connection settings.
 
Required settings
Item name Required/Optional Use of variables Description Remarks
URL Required Only environment variables are available Enter the URL to access REST API.
  • Specify a URL starting from “http://” or “https://”.
  • lightbulbThe path of URL will be URL encoded with the encoding selected or entered in [Encoding].
Property actions
Item name Description Remarks
Connection test Connect to the host and port number of the URL entered in [URL].
  • Only the value specified in [Connection timeout] is applied for timeout.
Timeout settings
Item name Required/Optional Use of variables Description Remarks
Connection timeout Optional Only environment variables are available Enter the connection timeout period in milliseconds.
  • When omitted, 0 or an invalid value is entered, timeout will not be performed.
Response timeout Optional Only environment variables are available Enter the response timeout period from connecting to the HTTP server and sending the request to receiving the response, in milliseconds.
  • When omitted, 0 or an invalid value is entered, timeout will not be performed.
Client certificate settings
Item name Required/Optional Use of variables Description Remarks
Use client certificate Optional Not available Select whether or not to use client certificate.
  • [Checked]:
    Use client certificate.
  • [Not checked]: (default)
    Do not use client certificate.
  • When a URL starting from “http://” is specified in [URL], even if it is checked, the client certificate will not be used.
Certificate store file Required Only environment variables are available Enter the file path of a client certificate store file.

You can click [Browse] button to launch file chooser and find the file.
  • Enabled when [Use client certificate] is checked.
  • Specify that as absolute path of the server OS local file system.
Certificate store password Optional Only environment variables are available Enter the password of the client certificate store file.
  • Enabled when [Use client certificate] is checked.
Certificate store format Required Not available Select store format of the client certificate store file.
  • [PKCS #12]: (default)
    The client certificate store file will be handled in PKCS #12 format.
  • [JKS]:
    The client certificate store file will be handled in JKS format.
  • Enabled when [Use client certificate] is checked.
  • lightbulbWhen a key file is different from the certificate file, create the store file using openssl command etc.
    Example: In the case of openssl command
    openssl pkcs12 -export -inkey <key file> -in <certificate file> -out <store file>
Property actions
Item name Description Remarks
View certificate View the contents of the certificate entered in [Certificate store file].  

Component Pool Settings

Component pool is not supported.

Security

The security settings can be configured in “Global Resource Settings” of the control panel.

Specification Limits

Major Exceptions

Exception name Cause Solution
InvalidPropertyConfigurationException
<property name> is not specified.
[<property name>] is not specified. Specify [<property name>].
java.net.ConnectException
Connection refused: connect
Connection has been rejected from the destination. Check the host name and port number specified in [URL].
java.net.ConnectException
connect timed out
Connection has been timed out. Check the setting of [Connection timeout].
java.net.MalformedURLException The URL is in invalid format. Check the setting of [URL].
java.net.java.net.UnknownHostException
<host name>
The host name is invalid. Check the host name specified in [URL].