Hi,
My desktop application (built in PB 2017 R3) is connecting to Sybase ASE 15.7 database thru OpenSSL with below configuration:
SQLCA.database = ls_ApplDataBaseName
SQLCA.servername = "MyServerName"
SQLCA.logid = ls_ApplLoginID
SQLCA.logpass = ls_ApplLoginPassword
SQLCA.DBMS = "SYC"
SQLCA.autocommit = TRUE
SQLCA.dbParm="EncryptPassword='True'"
sql.ini structure at client:
[MyServerName]
master=TCP,server.xyz.net,10001 ssl
query=TCP,server.xyz.net,10001 ssl
With this configuration, my application is connecting successfully with the database, it is also encrypting the traffic. However, it is connecting with protocol TLS1.0. This protocol is obsolete now. The need is to connect with TLS1.2 protocol. The TLS1.2 is enabled on server. Is there anything to be done in PowerBuilder code so that it will implement TLS1.2 while establishing connection?
Thanks!