cancel
Showing results for 
Search instead for 
Did you mean: 

SERVICE LAYER SAP BO TLS 1.0

0 Kudos
595

Currently we have SAP Business One 9.3 in my company, we want to make an integration of SAP with a web application developed in angular, however to make some requests to the url of Service Layer https://1.1xx.x.x:50000/b1s/v1/Login/

I get the error: ERR_SSL_VERSION_OR_CIPHER_MISMATCH

I understand that this happens because I have TLS Version 1.0, is it possible to update to TLS 1.2 in SAP BUSINESS ONE 9.3?

Accepted Solutions (0)

Answers (1)

Answers (1)

blastter
Newcomer
0 Kudos

what I did was configure an apache2 reverse proxy ignoring the certificate validation, now I want to try with nginx. Here is my configuration.

<VirtualHost *:<LocalServerPortForServiceLayers>>
ProxyPass / https://<SAPServerIP>:<ServiceLayersPort>/ connectiontimeout=60 timeout=60 Keepalive=On
ProxyPassReverse / https://<SAPServerIP>:<ServiceLayersPort>/
SSLEngine on
SSLProxyEngine on
SSLProxyVerify none
SSLProxyCheckPeerCN off
SSLProxyCheckPeerName off
SSLProxyCheckPeerExpire off
# ProxyErrorOverride On
SSLCipherSuite AES256+EECDH:AES256+EDH
SSLProtocol All -SSLv2 -SSLv3 -TLSv1 -TLSv1.1
SSLCertificateFile /etc/apache2/certs/<LocalServerCertificateForHTTPS>.crt
SSLCertificateKeyFile /etc/apache2/certs/<LocalServerCertificateForHTTPS>.key
</VirtualHost>