tags:

views:

61

answers:

1

I am trying to make a Soap connection to SugarCRM. My URL links to a WSDL file, bu the following code:

<?php

$soapClient = new SoapClient("http://mysite.sugarondemand.com/soap.php?wsdl"); 
var_dump($soapClient);

?>

produces the following result: object(SoapClient)#1 (2) { ["_soap_version"]=> int(1) ["sdl"]=> resource(1) of type (Unknown) }

Does anyone know what could be going on?

A: 

Everything is fine here. This is how soapClient object looks after connection. If you want for example see functions list, use:

$functions = $soapClient->__getFunctions ();
var_dump ($functions);
Piotr Pankowski