-
-
Save Thalesrup/cd00783617f538f1b73de6d69c33ca2d to your computer and use it in GitHub Desktop.
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 | |
| $url = 'https://qa-orderapi.intelispend.com/Processes/IntelispendAPI/IntelispendOrderAPI/SubmitFileService.serviceagent?wsdl'; | |
| $opts = array( | |
| 'http' => array( | |
| 'verify_peer' => false, | |
| 'verify_peer_name' => false | |
| ) | |
| ); | |
| $context = stream_context_create($opts); | |
| $client = new \SoapClient($url, | |
| array ( | |
| "trace" => 1, | |
| "exception" => 1, | |
| 'stream_context' => $context, | |
| 'cache_wsdl' => WSDL_CACHE_NONE | |
| ) | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment