• Модуль: webservice
  • Путь к файлу: ~/bitrix/modules/webservice/classes/general/soap/soapclient.php
  • Класс: CSOAPClient
  • Вызов: CSOAPClient::__construct
public function __construct( $server, $path = '/', $port = 80 )
{
	$this->Login = "";
	$this->Password = "";
	$this->Server = $server;
	$this->Path = $path;
	$this->Port = $port;
	if ( is_numeric( $port ) )
		$this->Port = $port;
	elseif(mb_strtolower($port) == 'ssl' )
		$this->Port = 443;
	else
		$this->Port = 80;
}