Successful connection to the service...
\n"; $cmd = 'msdSSM'; $sessionid = 'my_php_session_number'; $query = 'Calling msdSSM() method...
\n"; $result = $sc->call($cmd, $params, $namespace); echo ""; if (isset($fault)) { print_r($fault); } else {echo "
msdSSM() method called successfully...
\n"; print_r($result); } echo "\n"; $params = array('diyf' => '0' , 'sessionid' => $sessionid); $cmd = 'msdGetSoapBase64Data'; echo "Calling msdGetSoapBase64Data() method...
\n"; $result = $sc->call($cmd, $params, $namespace); /*$theXML = base64_decode($result);*/ $theXML = $result; echo ""; if (isset($fault)) { print_r($fault); } else { echo "
msdGetSoapBase64Data() method called successfully...
\n"; echo "Here is the Query's result...
\n"; echo 'Result XML file created.
\n"; } else echo "Result XML file can not be crated.
\n"; } echo "\n"; $params = array('sessionid' => $sessionid); $cmd = 'msdSSMPurge'; echo "Calling msdSSMPurge() method...
\n"; $result = $sc->call($cmd, $params, $namespace); echo ""; if (isset($fault)) { print_r($fault); } else {echo "
msdSSMPurge() method called successfully...
\n"; print_r($result); } echo "\n"; unset($sc); } ?>