You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We currently use this library and it works great. But, today SoftLayer turned off SSLv3 on their ObjectStorage network in response to the POODLE vulnerability.
Is there any way to use this library with the CURL adapter and TLSv1?
At present, it doesn't work at all :(
The text was updated successfully, but these errors were encountered:
Wanted to follow up with a solution for anyone else having issues using the CURL adapter. We modified the ObjectStorage/Http/Adapter/Socket.php file and changed the line "ssl://" to "tsl://" so it will force it to use TLS when the socket adapter is used.
Then we added "'adapter' => ObjectStorage_Http_Client::SOCKET, " to the options array when creating the ObjectStorage object.
And now it is working with TLS by using the Socket adapter instead of the CURL adapter.
We currently use this library and it works great. But, today SoftLayer turned off SSLv3 on their ObjectStorage network in response to the POODLE vulnerability.
Is there any way to use this library with the CURL adapter and TLSv1?
At present, it doesn't work at all :(
The text was updated successfully, but these errors were encountered: