Hallo,
I have a question. So school I have to do some research on SOAP. I installed easyphp normaly and whant to run some code.
<?php
$client = new SoapClient(NULL,
array(
"location" => "[
64.124.140.30];,
"uri" => "urn:xmethods-delayed-quotes",
"style" => SOAP_RPC,
"use" => SOAP_ENCODED
));
print($client->__call(
/* SOAP Method Name */
"getQuote",
/* Parameters */
array(
new SoapParam(
/* Parameter Value */
"ibm",
/* Parameter Name */
"symbol"
)),
/* Options */
array(
/* SOAP Method Namespace */
"uri" => "urn:xmethods-delayed-quotes",
/* SOAPAction HTTP Header for SOAP Method */
"soapaction" => "urn:xmethods-delayed-quotes#getQuote"
)). "\n");
?>
But I get this message when i try to run it:
Fatal error: Class 'SoapClient' not found
I can't find anywhere how to install SOAP extentions. It there on build into php5? Or do i have to install an external one. Please help me.