Link to home
Start Free TrialLog in
Avatar of James Murphy
James MurphyFlag for Australia

asked on

Help with Soapclient 1.2

Hi,

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;

Open in new window


your help is very much appreciated!

cheers
ASKER CERTIFIED SOLUTION
Avatar of gr8gonzo
gr8gonzo
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
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.
Avatar of James Murphy

ASKER

Thank you! Your help is very much appreciated!!