Normal
PHP has a built in SOAP extension.Enable this in php.ini (on windows, remove the ; in the line ;extension=soap.dll)Restart webserverThen you can very easily acces the SOAP commands:For example get all channels in a group.[PHP]<?php$client = new SoapClient("http://<TVserverURL>:8081/TvServiceWebServices.asmx?WSDL");var_dump( $client->GetChannelsInTvGroup( array('idGroup' => 2) ));?>[/PHP]See all possible commands and their options here: http://<TVserverURL>:8081/TvServiceWebServices.asmx
PHP has a built in SOAP extension.
Enable this in php.ini (on windows, remove the ; in the line ;extension=soap.dll)
Restart webserver
Then you can very easily acces the SOAP commands:
For example get all channels in a group.
[PHP]
<?php
$client = new SoapClient("http://<TVserverURL>:8081/TvServiceWebServices.asmx?WSDL");
var_dump(
$client->GetChannelsInTvGroup(
array('idGroup' => 2)
)
);
?>
[/PHP]
See all possible commands and their options here: http://<TVserverURL>:8081/TvServiceWebServices.asmx