Re: [Chicken-users] reading file from post request

2014-08-12 Thread Nathaniel Rudavsky-Brody
Thanks a lot, that works perfectly. By the way, is there a best way to parse multipart-form data? I tried with a horrible mix of read-line and read-char, and lost count pretty quickly. Best, Nathaniel On Sam, Aug 9, 2014 at 9:21 , Peter Bex peter@xs4all.nl wrote: On Sat, Aug 09, 2014

Re: [Chicken-users] reading file from post request

2014-08-12 Thread Peter Bex
On Tue, Aug 12, 2014 at 12:36:23PM +0002, Nathaniel Rudavsky-Brody wrote: Thanks a lot, that works perfectly. By the way, is there a best way to parse multipart-form data? I tried with a horrible mix of read-line and read-char, and lost count pretty quickly. Right now there's no parser

Re: [Chicken-users] reading file from post request

2014-08-12 Thread Andy Bennett
Hi, I think Andy mentioned on IRC that he was working on a proper multipart parser for Knodium. Maybe he can tell us what the status is on that. It's the #2 thing on my list at the moment. Down from #1 last week. Will probably be a climber tho'. We need it rather urgently so I'll be back on

[Chicken-users] reading file from post request

2014-08-09 Thread Nathaniel Rudavsky-Brody
Hello, In an Awful web app, I'm trying to read an image posted as raw data to the server, since it seems multipart/form-data isn't supported. (Is that right?) But I get the feeling I'm missing something regarding ports and requests... I *think* my basic question is, how do I know the

Re: [Chicken-users] reading file from post request

2014-08-09 Thread Peter Bex
On Sat, Aug 09, 2014 at 05:40:31PM +0002, Nathaniel Rudavsky-Brody wrote: Hello, In an Awful web app, I'm trying to read an image posted as raw data to the server, since it seems multipart/form-data isn't supported. (Is that right?) But I get the feeling I'm missing something regarding