views:

205

answers:

2

Can I monitor the upload progress of a HttpPost request?

A: 

I don't think regular javascript gives you access to upload progress information. But flash can. Eg YUI Uploader

I use it and it works great.

Larry K
he's talking about java, not javascript
Catchwa
Check again--he's talking about both java (server side) and httpclient (clientside). I was answering the question from the client side point of view.
Larry K
+1  A: 

This seems to have your answer: http://stackoverflow.com/questions/254719/file-upload-with-java-with-progress-bar

Steve Pomeroy