fletchsod
Programmer
- Dec 16, 2002
- 181
Hi! I'm trying to call the CallFire webservice using PHP SOAP and it is not working. It's my first time calling the webservice in PHP. Sample script below...
That doesn't work as I got this error...
--snip--
PHP Fatal error: SOAP-ERROR: Parsing WSDL: Couldn't load from " failed to load external entity " in /home/callfire/CampaignCreate.php on line 85
--snip--
After reading the documentation, I tried this one...
But I have a problem. What are the example of location's value and uri's value should I entered for the non-WSDL to work properly?
Thanks...
Code:
$wsdl = "[URL unfurl="true"]https://www.callfire.com/service/PredictiveService?wsdl";[/URL]
$client1 = new SoapClient($wsdl);
That doesn't work as I got this error...
--snip--
PHP Fatal error: SOAP-ERROR: Parsing WSDL: Couldn't load from " failed to load external entity " in /home/callfire/CampaignCreate.php on line 85
--snip--
After reading the documentation, I tried this one...
Code:
$wsdl = "[URL unfurl="true"]https://www.callfire.com/service/PredictiveService?wsdl";[/URL]
$client1 = new SoapClient($wsdl, array("location" => "[URL unfurl="true"]https://www.callfire.com/service/PredictiveService",[/URL] "uri" => "???");
But I have a problem. What are the example of location's value and uri's value should I entered for the non-WSDL to work properly?
Thanks...