Created
July 12, 2012 22:56
-
-
Save ktamas77/3101679 to your computer and use it in GitHub Desktop.
AT&T API HTTP POST REQUEST HEADER for ALL SOAP Actions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$headers = Array( | |
'Content-Type: text/xml;charset=UTF-8', | |
'SOAPAction: ""' | |
); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is a unified HTTP POST REQUEST header which required by AT&T for all SOAP requests.
The 'SOAPAction' line requires no parameters, it should work with all action as it is.