[appengine-java] Re: Photo and Video services

2009-12-07 Thread James H
Excellent, look forward to trying it out! On Dec 3, 4:35 pm, Vince Bonfanti vbonfa...@gmail.com wrote: I just committed the code to add support for the If-Modified-Since request header (and the Last-Modified and Content-Length response headers). It'll be in the next GaeVFS release, which will

[appengine-java] Re: Photo and Video services

2009-11-27 Thread James H
Here's some legwork...you can drill-down to section 14.25 of the page below where it describes the If-Modified-Since header. Basically, any Get with this header including a timestamp can be compared to the timestamp for the matching Entity to determine whether to respond normally (return the

[appengine-java] Re: Photo and Video services

2009-10-23 Thread Diana Cruise
In terms of performance does gaevfs accmmodate http resource timestamp checks to avoid re-downloading repeated requests for the same images? On Oct 22, 8:22 pm, Vince Bonfanti vbonfa...@gmail.com wrote: That's the most GAE will let you upload in one request (for now). Again, there's a Service

[appengine-java] Re: Photo and Video services

2009-10-23 Thread Vince Bonfanti
No, not yet. It's on the TODO list (see line 171 of the GaeVfsServlet source code). If you--or anyone else--wants to add this I'll be happy to accept a patch. Vince On Fri, Oct 23, 2009 at 11:42 AM, Diana Cruise diana.l.cru...@gmail.com wrote: In terms of performance does gaevfs accmmodate

[appengine-java] Re: Photo and Video services

2009-10-22 Thread Raphael André Bauer
On Thu, Oct 22, 2009 at 7:55 PM, Diana Cruise diana.l.cru...@gmail.com wrote: What options do I have in GAE to allow Users to upload, store, and view media (photos, video, audio, etc) from my within my application? in short: it's not possible. (don't forget that there is a 1mb limit for

[appengine-java] Re: Photo and Video services

2009-10-22 Thread Vince Bonfanti
Hi Diana, I've created GaeVFS to solve this problem: http://code.google.com/p/gaevfs/ You can view a demonstration here: http://gaevfs.appspot.com/ Note that the current released version (0.3) will only upload about 2.0MB before timing out; the latest code in SVN will support the

[appengine-java] Re: Photo and Video services

2009-10-22 Thread Diana Cruise
Vince, I was unable to upload small photos...getting error code 500! What is the basic principle behind this solution? It appears you are storing the file in datastore in increments of 1M or less...along the lines of what Raphael was getting at. How do you display a list of images from the

[appengine-java] Re: Photo and Video services

2009-10-22 Thread Diana Cruise
Actually, I tried simple files without spaces also and they failed too. When I hit your photo I noticed execellent response time...have you noticed any particular degradation when displaying lists of photos, for example? On Oct 22, 3:58 pm, Diana Cruise diana.l.cru...@gmail.com wrote: Thanks

[appengine-java] Re: Photo and Video services

2009-10-22 Thread Vince Bonfanti
Can you try a different browser? From the logs it looks like you're using IE7. I just tried with IE8, Chrome, and Firefox 3 (all on Windows) and they all worked fine. Something about the path being sent by the browser is causing the error--if we can narrow it to IE7 then I can investigate

[appengine-java] Re: Photo and Video services

2009-10-22 Thread Diana Cruise
Yes, that worked ok from another system so it must be an IE7 problem...good catch! On Oct 22, 5:55 pm, Vince Bonfanti vbonfa...@gmail.com wrote: Can you try a different browser? From the logs it looks like you're using IE7. I just tried with IE8, Chrome, and Firefox 3 (all on Windows) and

[appengine-java] Re: Photo and Video services

2009-10-22 Thread Diana Cruise
What is the nature of the 10Mb limit again? On Oct 22, 6:38 pm, Diana Cruise diana.l.cru...@gmail.com wrote: Yes, that worked ok from another system so it must be an IE7 problem...good catch! On Oct 22, 5:55 pm, Vince Bonfanti vbonfa...@gmail.com wrote: Can you try a different browser?