Error url is not on the same domain, php, soap

Permalink
I have some custom php on my page, which tries to access info with soap.
When I go to the page, I get a popup window saying "Error url is not on the same domain".
Here is the offending code in the php script.
$options = array(
'location' => "http://askfred.net/soap/webservices.php",
'uri' => 'http://askfred.net/soap/schema',
);
$client = new SoapClient(null, $options);


Is there a problem with a php script calling something on a different domain?
The page can be seen here:http://salleauriol.com/fredtest...

billn77
 
Mnkras replied on at Permalink Reply
Mnkras
Fatal error: Class 'SoapClient' not found in /home/salleaur/public_html/getUpcoming.php5 on line 141
billn77 replied on at Permalink Reply
billn77
Yeah, I guess I should have posted that also.
I'm not sure if you're posting that as more information, or as the cause of the problem. The page finds that script and is executing it, and line 141 is the code above.
Mnkras replied on at Permalink Reply
Mnkras
are you sure soap is installed....
billn77 replied on at Permalink Reply
billn77
I was checking on that, and discovered the same information I was getting from the soap feed is available as an RSS feed, and Concrete5 has a very nice RSS viewer block, which worked really well.
Thanks for the help.