Reputation: 981
I am trying to send a secure soap message and I get this error: SoapFault exception: [HTTP] SSL support is not available in this build
I can do https requests to my server without a problem. Also I have made sure that:
When I look at my phpinfo SSL is showing as enabled every where except in PHAR (I doubt it matters there, but correct me if I'm mistaken).
I am using XAMPP on Windows if that helps.
Thanks!
Upvotes: 2
Views: 5207
Reputation: 455
For Unix-
Add this line / uncomment this line.
extension=openssl.so
For Windows-
Add this line / uncomment this line.
extension=php_openssl.dll
Upvotes: 8