Tagged Questions
4
votes
2answers
1k views
Supporting resumable HTTP-downloads through an ASHX handler?
We are providing downloads of our application setups through an ASHX handler in ASP.NET.
A customer told us he uses some third party download manager application and that our way of providing the ...
4
votes
3answers
1k views
Download manager in Java
I need to several some huge files (several gigs) from Java via FTP/HTTP. Is there a ready library (java / command line tool) to facilitate the download? Some obvious requirements are:
...
2
votes
2answers
196 views
PHP - Protecting digital Downloads
I'm trying figure out how I can protect digital downloads in PHP. Just need some general directions so I can start my research. I don't seem to be able to find anything useful.
I want to make files ...
1
vote
1answer
398 views
Getting HTTP range right, so that Down Them All works
I built web app which is supposed to serve Recorded TV as a download (For the folks yelling out that that is illegal, I can tell them: in Germany it isn't, if you do it right). You can have a look at ...
1
vote
5answers
346 views
How do you detect if a file is being downloaded by a Browser or a Download Manager
I am curious as to how the file sharing sites like rapidshare detect users downloading files through download managers.
How do you enable an ASP.NET web application to prevent downloads from a ...
0
votes
1answer
98 views
How to download files from file hosting services like Rapidshare.com, DepositFiles.com
I'm looking to build a downloader application that downloads files from file-hosting services.
What are the steps necessary to satisfy this requirement? E.g. user adds the shared file URL and ...
0
votes
1answer
140 views
Integrating a download manager to PHP script
I'm using PHP and my script outputs a list of links for files that can be downloaded by the user. To download each file, as a user I would have to copy the url and paste it into something like Free ...
0
votes
1answer
199 views
iPhone Download application
I want to ask you whether it is simple to download data from URLs engind such as .php etc. or not. Downloading from direct urls, such as this one http://www.rarlab.com/rar/wrar380.exe is really simple ...
-2
votes
5answers
225 views
How can i get a file name from Response.Header ? C#
This is a code, C#.
System.Net.HttpWebRequest _Response =
(HttpWebRequest)System.Net.WebRequest.Create(e.Uri.AbsoluteUri.ToString());
_Response.Method = "GET";
_Response.Timeout = 120000;
...