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