Exemple #1
0
<?php

/////////////////////////////////////
/** define the SOAP client using the url for the service**/
$SoapiClient = new soapclient('http://www.chemspider.com/Search.asmx?WSDL', array('trace' => 1));
/*array trace helps so that we can see previous soap transactions for details see php.net documentation*/
/**create an array of parameters for login **/
$q_name = $_POST['compoundName'];
$query = $_POST['compoundName'];
$token = "25798fdf-c956-4e7b-8294-4c92597cd614";
// the provided password
$thearray = array('query' => $query, 'token' => $token);
/** call the service, passing the parameters and the name of the operation **/
$result = $SoapiClient->SimpleSearch($thearray);
/** a quick test **/
if (is_soap_fault($result) || $result->SimpleSearchResult->int == null) {
    echo "<h1>No Information was found on {$query} </h1><pre></pre>";
} else {
    $somevar = $result->SimpleSearchResult->int;
    if ($somevar[0] == "") {
        $query = $somevar;
    } else {
        $query = $somevar[0];
    }
    //$query=$somevar; //the provided username
    $SoapiClients = new soapclient('http://www.chemspider.com/MassSpecAPI.asmx?WSDL', array('trace' => 1));
    $thearray = array('CSID' => $query, 'token' => $token);
    /** call the service, passing the parameters and the name of the operation **/
    //$result = $SoapiClient->GetCompoundInfo($thearray);
    $result = $SoapiClients->GetExtendedCompoundInfo($thearray);
    if (is_soap_fault($result)) {