[Zope] getting post data from a webcam

2008-07-08 Thread William Heymann
I am trying to integrate a webcamera with a site and I can get it to POST the data to a certain url on the server the problem is I can't figure out how to get access to the data. It is not in REQUEST.form the relevant request vars are ('CONTENT_LENGTH', '111695') ('CONTENT_TYPE', 'image/jpeg')

Re: [Zope] getting post data from a webcam

2008-07-08 Thread Tino Wildenhain
William Heymann wrote: I am trying to integrate a webcamera with a site and I can get it to POST the data to a certain url on the server the problem is I can't figure out how to get access to the data. It is not in REQUEST.form the relevant request vars are ('CONTENT_LENGTH', '111695') ('CONT

Re: [Zope] getting post data from a webcam

2008-07-09 Thread William Heymann
On Wednesday 09 July 2008, Tino Wildenhain wrote: > William Heymann wrote: > > I am trying to integrate a webcamera with a site and I can get it to POST > > the data to a certain url on the server the problem is I can't figure out > > how to get access to the data. It is not in REQUEST.form > > > >

Re: [Zope] getting post data from a webcam

2008-07-09 Thread Jonathan
- Original Message - From: "William Heymann" <[EMAIL PROTECTED]> To: Sent: Wednesday, July 09, 2008 6:42 AM Subject: Re: [Zope] getting post data from a webcam On Wednesday 09 July 2008, Tino Wildenhain wrote: William Heymann wrote: > I am trying to integrate

Re: [Zope] getting post data from a webcam

2008-07-09 Thread William Heymann
On Wednesday 09 July 2008, Jonathan wrote: > > You need to provide more details... try dumping the contents of REQUEST and > posting them as was suggested earlier. > I did post all the relevant fields from the REQUEST here are all of the them in REQUEST.items() [('ACTUAL_URL', 'http://www.

Re: [Zope] getting post data from a webcam

2008-07-09 Thread Jonathan
- Original Message - From: "William Heymann" <[EMAIL PROTECTED]> To: Sent: Wednesday, July 09, 2008 7:23 AM Subject: Re: [Zope] getting post data from a webcam On Wednesday 09 July 2008, Jonathan wrote: You need to provide more details... try dumping the contents

Re: [Zope] getting post data from a webcam

2008-07-09 Thread Thomas Bennett
Can you use ftp or webdav, that may be easier, this would take care of mimetypes without having to move to a lower level. It depends on the capabilities of your camera but not knowing the model there is limited help. I had an Axis camera, that ran embedded linux and had a built in python web

Re: [Zope] getting post data from a webcam

2008-07-15 Thread Chris Withers
William Heymann wrote: ('__aca', '/36gevRRS99FhE%2BrH6GVLeSzXzA%3D%0A'), ('traverse_subpath', [])] there is nothing in REQUEST.form I wonder if your webcam is doing something weird like putting the image in the body of the post rather than in the form data? I had to admit to never having he