Hello, I am running ISPC API. It runs quite well. It's amazing, allowing repeatability in configuration ! I would like to be sure, I set up appropriate params. I connect as follow : Code: $context = stream_context_create([ 'ssl' => [ // set some SSL/TLS specific options 'verify_host' => true, 'verify_peer' => true, 'verify_peer_name' => true, 'allow_self_signed' => false ] ]); $client = new SoapClient(null, array('location' => 'myremoteSoapLocation', 'uri' => 'myremoteSoapUri', 'trace' => 1, 'exceptions' => 1, 'stream_context' => $context)); My question is may be stupid, but, regarding impact I prefer to ask : is $context set up as appropriate to ensure 'ssl' and encrypt connexion ?
See https://www.php.net/manual/en/context.ssl.php but that looks pretty good. If you want to be more strict, you could set peer_name (though it probably gets that right), verify_depth and maybe security_level.
Thanks a lot ! I need to dig a little bit SSL... But for the moment, my conf is good, that's what I want.