Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4. $URL = 'http://soap.yugcontract.ua';
  5.  
  6. $client = new SoapClient(null, array(
  7. 'location' => $URL,
  8. 'uri' => "http://soap.yugcontract.ua/API",
  9. 'trace' => 1,
  10. 'Username' => "mobi_house",
  11. 'Password' => "Victor9790626",
  12. 'soap_version' => '1.1'
  13. ));
  14.  
  15. $return = $client->__soapCall("GetToken",
  16. array('soapaction' => 'http://soap.yugcontract.ua/API#GetToken')
  17. );
  18.  
  19. print_r($client);
  20.  
  21. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement