Reputation: 41
How to upload the file in Google app by using blob and when I upload the file same time I want to show the progress bar? I am using servlets.
Upvotes: 0
Views: 288
Reputation: 3115
There are no server side hooks into the blobstore to check upload status. You could get the progress using client-side technologies. Take a look at Plupload that offers the functionality you are looking for.
Also, for an example on how to use it with App Engine, take a look at @NickJohnson blog posts on Implementing a dropbox service with the Blobstore API Part 2 and Part 3.
Upvotes: 3