On the client side
Code: Select all
$user='abc';
$pass='123';
$cust="12345";
$lookup=123456789;
$client = new SoapClient("http://myserver.com/mywsdl.wsdl",array('trace'=>true));
$result = $client->getStatus($user,$pass,$cust,$lookup); [text] (abc,123,12345,123456789)[/text]
All seems very well. Now if I make a simple change to use https instead of http, this is what my dump looks like
[text](,,abc,123)[/text]
Is there something that is https does that would cause this? Note in this change, nothing anywhere else is modified so I'm not sure where I should be looking.