Hi,
first congratulations about Drakma, Weitz! I'm using it to web crawler at my work and it's running like a charm.
Well, I'm getting a strange error when trying to request patents from USPTO website:
(http-request "http://patft.uspto.gov/netacgi/nph-Parser?Sect1=PTO2&Sect2=HITOFF&p=...")
And the error is something like that:
end of file on #<FLEXI-STREAMS::FLEXI-LATIN-1-IO-STREAM {BE2FDF1}> [Condition of type END-OF-FILE]
Thanks for any suggestions.
On 11/27/07, Vilson Vieira vilsonv@gmail.com wrote:
end of file on #<FLEXI-STREAMS::FLEXI-LATIN-1-IO-STREAM {BE2FDF1}> [Condition of type END-OF-FILE]
An EOF error is generally a symptom of invalid EOL's from the server. You can work around this by binding CHUNGA:*ACCEPT-BOGUS-EOLS* to T
eg.
(let ((chunga:*accept-bogus-eols* t)) (drakma:http-request *aforementioned-url*))
sean .
2007/11/27, Sean Ross rosssd@gmail.com:
An EOF error is generally a symptom of invalid EOL's from the server. You can work around this by binding CHUNGA:*ACCEPT-BOGUS-EOLS* to T
Now it runs perfect Sean! Thanks a lot!