Hi,
The reason why it works with postman is that either the TLS certificate verification option is disabled or your chrome browser contains the correct CA in it's trust store. A better test is using curl. There you can specify with or without '--insecure' . Without this option your api call will fail also.
The error "PKIX path building..." occurs when the trust store doesn't contain the correct CA or the correct certificate chain. Check you certificate in the details for the complete chain.

From this example you can best put in the trust store certificate 1 and 2 . This will allow all TLS connection with a server certificate signed by these 2 CA certs.
To easily create a trust store I use a tool like keystore explorer.
Important:
- create a JKS
- upload the certificate chain at least root (1) and intermediate(2) certificate
Configure you server.conf.yaml file.

and set the setdbparms or vault to set the password of the trust store
mqsisetdbparms -w IS_LOCAL -n setdbparms::truststore --user Dummy --password password1234
Start you integration server and it should work.
mvg
Kim
------------------------------
Kim Meynendonckx
------------------------------
Original Message:
Sent: Sun November 30, 2025 01:52 AM
From: Abdelazim Elkhole
Subject: Disable SSL Certificate validation
Hi Lars,
I tried your solution, changed the configuration, and restarted the server, but it still returned the same error
------------------------------
Abdelazim Elkhole
Integration Developer
Envnt
Riyad
0508866204
Original Message:
Sent: Fri November 28, 2025 04:06 AM
From: Lars Dehli
Subject: Disable SSL Certificate validation
Hi!
You can try to set this line to true in your server.conf.yaml:
As you can see it was line 500 for my file at least. Also, as it says in the file - do use this with caution!
Thanks,
Lars
------------------------------
Lars Dehli
Original Message:
Sent: Thu November 27, 2025 08:04 AM
From: Abdelazim Elkhole
Subject: Disable SSL Certificate validation
I try to call the https API without any certificate using the HTTPRequest Node, but it returns the following error
BIP2230E: Error detected whilst processing a message in node 'gen.SubmitBeneficiaryObject.submitbeneficiary (Implementation).Call Beneficiary API'. \nBIP3162S: An HTTP error occurred. The HTTP Request-Line was: 'POST /InsertMODBeneficiary HTTP/1.1
\nBIP3152S: Socket error detected whilst invoking Web service located at host 66.9.136.35, port 443, path /InsertMODBeneficiary. \nBIP3165S: An error occurred whilst performing an SSL socket operation. Operation: connect. Error Text: javax.net.ssl.SSLHandshakeException: com.ibm.jsse2.util.j: PKIX path building failed: com.ibm.security.cert.IBMCertPathBuilderException: unable to find valid certification path to requested target.
I need to disable the validation for the certificate.
------------------------------
Abdelazim Elkhole
Integration Developer
Envnt
Riyad
0508866204
------------------------------