Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/rospirotorg.ru/bitrix/modules/webservice/classes/general/soap/ |
Upload File : |
<?php define("BX_SOAP_ENV", "http://schemas.xmlsoap.org/soap/envelope/"); define("BX_SOAP_ENC", "http://schemas.xmlsoap.org/soap/encoding/"); define("BX_SOAP_SCHEMA_INSTANCE", "http://www.w3.org/2001/XMLSchema-instance"); define("BX_SOAP_SCHEMA_DATA", "http://www.w3.org/2001/XMLSchema"); define("BX_SOAP_ENV_PREFIX", "SOAP-ENV"); define("BX_SOAP_ENC_PREFIX", "SOAP-ENC"); define("BX_SOAP_XSI_PREFIX", "xsi"); define("BX_SOAP_XSD_PREFIX", "xsd"); define("BX_SOAP_INT", 1); define("BX_SOAP_STRING", 2); class CSOAPHeader { var $Headers = array (); public function __construct() { } function addHeader() { } } class CSOAPBody { public function __construct() { } } class CSOAPEnvelope { var $Header; var $Body; public function __construct() { $this->Header = new CSOAPHeader(); $this->Body = new CSOAPBody(); } } class CSOAPParameter { var $Name; var $Value; public function __construct( $name, $value) { $this->Name = $name; $this->Value = $value; } function setName( $name ) { $this->Name = $name; } function name() { return $this->Name; } function setValue( $value ) { } function value() { return $this->Value; } } class CSOAPFault { var $FaultCode; var $FaultString; var $detail; public function __construct($faultCode = "", $faultString = "", $detail = '') { $this->FaultCode = $faultCode; $this->FaultString = $faultString; $this->detail = $detail; } function faultCode() { return $this->FaultCode; } function faultString() { return $this->FaultString; } function detail() { return $this->detail; } } ?>