Tagged Questions
0
votes
1answer
466 views
C# uploading file with proggress tracking (HttpWebRequest POST with parameters)
I have method HttpUploadFile to upload image with some string parameters:
public static void HttpUploadFile(string url, string file, string paramName, string contentType, NameValueCollection nvc)
...
1
vote
1answer
240 views
Django file upload progress get cache returns None
Django file upload progress process json request getting null response
view.py
def upload_progress(request):
"""
A view to report back on upload progress.
Return JSON object with ...
0
votes
1answer
659 views
Django File Upload Progress
I have used Django File Upload Progress process for getting progress but getting error pliks.upload" does not define a "UploadProgressCachedHandler" upload handler backend.
Steps i followed is
1) ...
0
votes
1answer
400 views
Java Sonatype Async HTTP Client Upload Progress
I am trying to implement async file upload with progress with sonatype async http client - https://github.com/sonatype/async-http-client.
I tried the method suggested in the docs. Using transfer ...
1
vote
2answers
1k views
Display progress percentage using Apache API for file upload in Android
The following code uploads file to the server display progressdialog with percentage without any issue.
protected boolean uploadFile(String serverUrl, String filePath) {
HttpURLConnection ...
0
votes
1answer
272 views
Upload in streaming mode and progress information
I'm using a code below to upload file (tens of MB) in streaming mode. Why after fast execution of Util.copyStream(...); (org.apache.commons.net.io.Util) in fact, real uploading is still taking place ...
0
votes
1answer
49 views
Is there any way to monitor an upload, byte by byte, in Flash or AIR?
I'm uploading files to the server in Flash and am flustered by how there doesn't appear to be any mechanism by which I can monitor the upload progress. It gives me a callback for when it's finished, ...
2
votes
1answer
335 views
Upload Progress in Wicket for MultiFileUploadField
Wickets UploadProgressBar does only work for 'FileUploadField'. This is insufficient for my needs as I need to transfer multiple files which will be added by the User (Just like it can be done with ...
11
votes
5answers
2k views
Uploading HTTP progress tracking
I've got WPF application I'm writing that posts files to one of social networks.
Upload itself working just fine, but I'd like to provide some indication of how far along I am with the uploading.
I ...
0
votes
2answers
467 views
Implementing file upload progress in JS
How can javascript know file upload progress? Is there some kind of standard communication method between the browser and the server that tracks progress and sends progress status back to the ...
0
votes
1answer
228 views
Best SSE method for getting file upload progress?
I am coding a backwards compatible file upload progress for AJAX. In HTML5 there is the xhr.upload.progress event; this would be an alternative for non-XHR2 browsers. I am using the APC extension to ...
0
votes
3answers
4k views
ASP.Net MVC 3 big file uploader with progress
I've spent several hours of googling. Can anybody point me to an example of big file uploader with progress with backend on ASP.Net MVC3. I found many different solutions, but most of them use PHP as ...
0
votes
2answers
414 views
PHP function progress bar
i'm building some image convertor and the function i run may can take a while ,
what i want to know , is if there a build in way in php that i can use to show the progress of the function? the ...
0
votes
1answer
618 views
XmlHttpRequest2 progress event and ExtJS 3.3 Ext.Ajax
I'm trying to use XmlHttpRequest Level 2 to create a file upload page which includes a progress bar, in a fashion similar to a tutorial I found on Matlus.com.
The catch is, the page I'm working on ...
1
vote
1answer
1k views
Progress bar for File Uploading?
I am using servlets to upload files in my web application. I want to show progress bar while uploading. I have went through some Ajax+Progresslistener examples, one here.
In the doPost() method they ...
3
votes
2answers
4k views
File upload progress
I've been trying to track the progress of a file upload but keep on ending up at dead ends (uploading from a C# application not a webpage).
I tried using the WebClient as such:
class Program
{
...
2
votes
3answers
2k views
Flex 3 multiple upload progress monitoring
I have a Flex3 application which has to be capable of uploading multiple files and monitoring each files individual progress using a label NOT a progress bar.
My problem is that a generic progress ...
