I have an SSL certificate on my site. It was installed by my hosting provider and I have tested that it was installed properly. I'm trying to consume a SOAP web service from mindbodyonline.com/api and I'm getting this message in the response
This method must be accessed via SSL (HTTPS).
I'm using Zend Framework's Soap Client and it has been working for most of the services but this particular one contains credit card information and that's probably why it needs the secure connection. I have been unable to find any information on how to send my SOAP request securely. I am creating the client using the code below.
$client = new Zend_Soap_Client('https://api.mindbodyonline.com/0_5/ClientService.asmx?WSDL', array("soap_version"=>SOAP_1_1));
anybody able to help?