In the official manual http://weitz.de/drakma/#connection-timeoutconnection-timeout key parameter exists. But my SBCL interpreter says:
debugger invoked on a SB-INT:SIMPLE-PROGRAM-ERROR: unknown &KEY argument: :CONNECTION-TIMEOUT
Type HELP for debugger help, or (SB-EXT:QUIT) to exit from SBCL.
restarts (invokable by number or by possibly-abbreviated name): 0: [ABORT] Exit debugger, returning to top level.
(DRAKMA:HTTP-REQUEST "http://bcheck.scanit.be/bcheck/%22)%5B:EXTERNAL] 0]
when I try to call function:
(drakma:http-request "http://bcheck.scanit.be/bcheck/" :method :get :content-length t :connection-timeout 10)
Please help me to solve this problem.
Best regards, Evgen Dmitrenko
Евгений Дмитренко e.dmitrenk@gmail.com writes:
In the official manual http://weitz.de/drakma/#connection-timeout connection-timeout key parameter exists. But my SBCL interpreter says:
debugger invoked on a SB-INT:SIMPLE-PROGRAM-ERROR: unknown &KEY argument: :CONNECTION-TIMEOUT
Type HELP for debugger help, or (SB-EXT:QUIT) to exit from SBCL.
restarts (invokable by number or by possibly-abbreviated name): 0: [ABORT] Exit debugger, returning to top level.
(DRAKMA:HTTP-REQUEST "http://bcheck.scanit.be/bcheck/%22)%5B:EXTERNAL] 0]
when I try to call function:
(drakma:http-request "http://bcheck.scanit.be/bcheck/" :method :get :content-length t :connection-timeout 10)
Please help me to solve this problem.
Later in the manual: All timeout keyword arguments are only available for LispWorks, write-timeout is only available for LispWorks 5.0 or higher.
The documentation says that all timeout keyword arguments are only available for LispWorks. The source code says the same.
request.lisp:
(defun http-request ......... #+:lispworks (connection-timeout 20)
- Eugene
All timeout keyword arguments are only available for LispWorks
2009/12/2 Евгений Дмитренко e.dmitrenk@gmail.com
In the official manual http://weitz.de/drakma/#connection-timeoutconnection-timeout key parameter exists. But my SBCL interpreter says:
debugger invoked on a SB-INT:SIMPLE-PROGRAM-ERROR: unknown &KEY argument: :CONNECTION-TIMEOUT
Type HELP for debugger help, or (SB-EXT:QUIT) to exit from SBCL.
restarts (invokable by number or by possibly-abbreviated name): 0: [ABORT] Exit debugger, returning to top level.
(DRAKMA:HTTP-REQUEST "http://bcheck.scanit.be/bcheck/%22)%5B:EXTERNAL] 0]
when I try to call function:
(drakma:http-request "http://bcheck.scanit.be/bcheck/" :method :get :content-length t :connection-timeout 10)
Please help me to solve this problem.
Best regards, Evgen Dmitrenko
drakma-devel mailing list drakma-devel@common-lisp.net http://common-lisp.net/cgi-bin/mailman/listinfo/drakma-devel
2009/12/2 Евгений Дмитренко e.dmitrenk@gmail.com:
In the official manual http://weitz.de/drakma/#connection-timeout connection-timeout key parameter exists.
If you read on, you'll see in the next sentence that "all timeout keyword arguments are only available for LispWorks"...
HTH, Edi.
Thank you. It's sad. That feature could be very useful. 2009/12/2 Edi Weitz edi@agharta.de
2009/12/2 Евгений Дмитренко e.dmitrenk@gmail.com:
In the official manual http://weitz.de/drakma/#connection-timeout connection-timeout key parameter exists.
If you read on, you'll see in the next sentence that "all timeout keyword arguments are only available for LispWorks"...
HTH, Edi.
drakma-devel mailing list drakma-devel@common-lisp.net http://common-lisp.net/cgi-bin/mailman/listinfo/drakma-devel