Answer the question
In order to leave comments, you need to log in
How to generate NetBeans SOAP classes in php?
There is a code:
<?php
$string = 'Content-Type: text/html;charset=utf-8';
header($string);
try {
// Создание SOAP-клиента
$client = new SoapClient("http://213.33.168.45:8082/txlife.wsdl");
// Посылка SOAP-запроса c получением результат
print_r($client->__getFunctions());
$result1 = $client->Ping("CL_FAMILY");
$result2 = $client->TXLife("Request1");
$result3 = $client->TXLifeTransmittal("CL_FAMILY");
echo $result3;
} catch (SoapFault $exception) {
echo $exception->getMessage();
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question