Given the below soapclient - how can I a) check the version of tls that it is using, and b set it to 1.2 if it is not using that already? I had assumed the browser I was using would control that side of things, but just want to double check!
$url = "https://www.SOMEURL/interface/api/report.asmx?wsdl";//Create the client$client = new SoapClient($url);$datetimestamp = date("YmdHis");$reportname = "report".$datetimestamp;
Oh, and to answer the other part of your question, there's not a very easy way to check which version is actually being used. Whenever I'm testing the SSL protocol being used, I install Wireshark on the client or server (whatever machine is initiating the connection), and then capture the connection attempt. The headers in the TCP packet will tell you the protocol being used.