Error - Txpi 310: TxpiSSLConfig Syntax error Element nb: 1 Section = <SSL_OPTION> Parameter = <INITIATE_SIDE>
search cancel

Error - Txpi 310: TxpiSSLConfig Syntax error Element nb: 1 Section = <SSL_OPTION> Parameter = <INITIATE_SIDE>

book

Article ID: 260220

calendar_today

Updated On:

Products

XCOM Data Transport XCOM Data Transport - Linux PC XCOM Data Transport - Windows

Issue/Introduction

We are configuring SSL for XCOM on port 8045 but we receive a syntax error for the SSL_OPTION configuration when a transfer is initiated. The message is:

       Txpi  310: TxpiSSLConfig Syntax error Element nb: 1 Section = <SSL_OPTION> Parameter = <INITIATE_SIDE> 

At this moment the current configuration in the configssl.cnf is:

# Mandatory, note that CA-XCOM uses the v3 protocol
[SSL_OPTION]
INITIATE_SIDE = ALL
RECEIVE_SIDE = ALL

# Mandatory
[VERIFY_DEPTH]
INITIATE_SIDE = 4
RECEIVE_SIDE = 4

# Mandatory, note that CA-XCOM uses the v3 protocol
[SSL_METHOD]
INITIATE_SIDE = TLSV1.2
RECEIVE_SIDE = TLSV1.2

 

Environment

Release : 11.0

Component: XCOM Data Transport for iSeries(AS/400)

Cause

The value for the SSL_OPTION section in the configssl.cnf is invalid

Resolution

The value of "ALL" for the SSL_OPTION section is not valid. The proper value for this instance would be "SSL_OP_ALL". In other words, you would code it as follows:

[SSL_OPTION]              
INITIATE_SIDE = SSL_OP_ALL
RECEIVE_SIDE  = SSL_OP_ALL