I am trying to send a SOAP request via PHP with the following heading:
<soap:Header> <SecureSoapHeader SecureHeader="boolean" xmlns="http://www.capitafhe.co.uk/UNIT-e/"> <settings> <Database>string</Database> <UserName>string</UserName> <Password>string</Password> </settings> <Database>string</Database> <UserName>string</UserName> <Password>string</Password> </SecureSoapHeader> </soap:Header>
Using PHP SOAP functions, I was able to create the equivalent header above (using tag prefixes instead of the xmlns attribute), with the exception of the SecureHeader="boolean" bit. Is this possible using PHP functions?
source share