Advertisement
the0938

Untitled

Jun 5th, 2018
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. use BitrixSoap\Client;
  2.  
  3. $address = 'http://user:password@hostname:port/path?query';
  4. $namespace = 'http://namespace-from-xsd-schema.ru/';
  5. $client = new Client($address, $namespace);
  6.  
  7. $response = $client->MethodName('arg1', 'arg2, 'argN');
  8. $responseBodyArray = $result->Value;
  9. $responseOtherParam = $result->OtherParamFromResponse;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement