A. Bahadir UGE wrote:
$header = new SoapHeader("http://iodeme.arenaopen.com/GetBankList", "AuthenticationInfo", $authvar, true);
There's the line with the mistake. The last parameter needs to be FALSE (or omitted) so that the mustUnderstand attribute is not set:
$header = new SoapHeader("http://iodeme.arenaopen.com/GetBankList", "AuthenticationInfo", $authvar, false); Rob -- PHP Soap Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php