parser

Написать ответ на текущее сообщение

 

 
   команды управления поиском

file::load

skiv 14.10.2005 18:12

Имею такой файлик:
@main[]
$response:charset[windows-1251]
^try{
	$test[^file::load[text;http://*******/test.txt?111; $.method[GET] $.timeout(60)]]
	$test.text<br>
}{
	$exception.handled(1)
	ERROR!<br>
	type:		$exception.type<br>
	comment:	$exception.comment<br>
	source:		$exception.source<br>
	file:		$exception.file<br>
	lineno:		$exception.lineno<br>
}
^try{
	$test[^file::load[text;http://*******/test.txt?222; $.method[GET] $.timeout(60)]]
	$test.text<br>
}{
	$exception.handled(1)
	ERROR!<br>
	type:		$exception.type<br>
	comment:	$exception.comment<br>
	source:		$exception.source<br>
	file:		$exception.file<br>
	lineno:		$exception.lineno<br>
}
Содержимое запрашиваемого файла:
Это просто текст

Получаю ответ:
Это просто текст
ERROR!
type: http.timeout
comment: error receiving response: Invalid argument (22)
source: load
file: /..../load_simple.p3
lineno: 16

Т.е. первый запрос проходит на ура, второй не проходит.
Подскажите, почему так получается?