fork download
  1. // define the SOAP client using the url for the service
  2. $client = new soapclient('http://w...content-available-to-author-only...e.com/xFutures.asmx?WSDL', array('trace' => 1));
  3. // create an array of parameters
  4. $param = array(
  5. 'Symbol' => "CL");
  6.  
  7. // call the service, passing the parameters and the name of the operation
  8. $result = $client->GetDelayedSpot($param);
  9. // assess the results if (is_soap_fault($result)) {
  10. echo '<h2>Fault</h2><pre>';
  11. print_r($result);
  12. echo '</pre>';
  13. } else {
  14. echo '<h2>Result</h2><pre>';
  15. print_r($result);
  16. echo '</pre>';
  17. }
  18. // print the SOAP request
  19. echo '<h2>Request</h2><pre>' . htmlspecialchars($client->__getLastRequest(), ENT_QUOTES) . '</pre>';
  20. // print the SOAP request Headers
  21. echo '<h2>Request Headers</h2><pre>' . htmlspecialchars($client->__getLastRequestHeaders(), ENT_QUOTES) . '</pre>';
  22. // print the SOAP response
  23. echo '<h2>Response</h2><pre>' . htmlspecialchars($client->__getLastResponse(), ENT_QUOTES) . '</pre>';
  24.  
  25.  
  26.  
  27.  
  28.  
Success #stdin #stdout 0.03s 25988KB
stdin
Standard input is empty
stdout
// define the SOAP client using the url for the service
$client = new soapclient('http://w...content-available-to-author-only...e.com/xFutures.asmx?WSDL', array('trace' => 1));
// create an array of parameters 
$param = array(
               'Symbol' => "CL");

// call the service, passing the parameters and the name of the operation 
$result = $client->GetDelayedSpot($param);
// assess the results if (is_soap_fault($result)) {
     echo '<h2>Fault</h2><pre>';
     print_r($result);
     echo '</pre>';
} else {
     echo '<h2>Result</h2><pre>';
     print_r($result);
     echo '</pre>';
}
// print the SOAP request 
echo '<h2>Request</h2><pre>' . htmlspecialchars($client->__getLastRequest(), ENT_QUOTES) . '</pre>';
// print the SOAP request Headers 
echo '<h2>Request Headers</h2><pre>' . htmlspecialchars($client->__getLastRequestHeaders(), ENT_QUOTES) . '</pre>';
// print the SOAP response 
echo '<h2>Response</h2><pre>' . htmlspecialchars($client->__getLastResponse(), ENT_QUOTES) . '</pre>';