I am trying to create PHP client which consume the ASP.NET webservice.I have one web method that will returns the array of bytes as value.
My wsdl mapping this data type as Base64Binary value only.But I could not see the Binary string or something blah..blah string to decode them and utilise them in PHP.
I am naive to PHP.What should I do now to get encoded binary string in order to use in my PHP client ?
<?php
require_once('lib/nusoap.php');
$client = new soapclient('http://localhost/website1/Service.asmx?WSDL','wsdl');
echo $client->call('GenerateReport');
?>
This will shows only the word Array.