Skip to content

Instantly share code, notes, and snippets.

@raytiley
Created March 7, 2013 21:40
Show Gist options
  • Save raytiley/5112062 to your computer and use it in GitHub Desktop.
Save raytiley/5112062 to your computer and use it in GitHub Desktop.
<?php
//Configure Script
$server = "http://129.19.150.20/"; //include trailing backslash
//End Configure
$client = new SoapClient($server."CablecastWS/CablecastWS.asmx?WSDL"); // Creates New SOAP client using WSDL file
//Get the schedule from the web service
$result = $client->RenameDigitalFile(array(
'ID' => 3 ,
'NewName' => "Ray Renamed File",
'username' => "admin",
'password' => "password"));
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment