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.
|
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.
When 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>
|
|
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]. |