• Модуль: webservice
  • Путь к файлу: ~/bitrix/modules/webservice/classes/general/wsdl/wsdlcreator.php
  • Класс: CWSDLCreator
  • Вызов: CWSDLCreator::downloadWSDL
function downloadWSDL ()
{
	session_cache_limiter();
	header("Content-Type: application/force-download");
	header("Content-Disposition: attachment; filename=".$this->name.".wsdl");
	header("Accept-Ranges: bytes");
	header("Content-Length: " . (defined('BX_UTF') && BX_UTF == 1 && function_exists('mb_strlen')? mb_strlen($this->WSDL, 'latin1') : mb_strlen($this->WSDL)) );
	$this->printWSDL();
	die();
}