Friends,
trying to user PHP SOAP(NUSOAP), WSDL to get asset information from MediaBin .
Following are the line of PHP code
require_once('./nusoap/lib/nusoap.php');
$client = new soapclient('
http://133.176.65.49/MediaBinWebService/MediaBinServer.asmx?wsdl',true,'','','Administrator',''); $err = $client->getError();
if ($err) {
echo 'pre>' . $err . '</pre>';
}
====================ERROR as follows========================
wsdl error: XML error parsing WSDL from
http://133.176.65.49/MediaBinWebService/MediaBinServer.asmx?wsdl on line 1: syntax error
Please help me with same ideas or same PHP sample code.....
Note:
The same idea I have implemented in JSP with the help of MediaBin�fs Sample application. I could able to connect to MediaBin server and access asset.
Problem is my client wants this should be done in PHP.
Need help
Thanks in advance
Shiva