Answer the question
In order to leave comments, you need to log in
How to form a response in the SoapServer method of your class according to the Lists Web Service Protocol?
I write SoapServer:
<?php
class SoapMethods {
public function GetList($listName){
return 'в каком виде должен быть данный ответ???';
}
}
$server = new SoapServer(null, array(
'uri' => 'http://'.$_SERVER['HTTP_HOST'].'/namespace.php',
'soap_version'=>SOAP_1_2
));
$server->setClass('SoapMethods');
$server->handle();
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