Created
March 7, 2013 21:40
-
-
Save raytiley/5112062 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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