[
https://issues.apache.org/jira/browse/CB-912?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13295193#comment-13295193
]
Simon MacDonald commented on CB-912:
------------------------------------
Okay, I've taken your sample project and it works fine as long as I provide a
value for "fullPath" in the fileTransfer.download() call. If I leave "fullPath"
as an undeclared variable then I can reproduce your problem. But there isn't
much I can do if the variable is undeclared.
> FileTransfer.download does not fire error callback when server is unavailable
> -----------------------------------------------------------------------------
>
> Key: CB-912
> URL: https://issues.apache.org/jira/browse/CB-912
> Project: Apache Cordova
> Issue Type: Bug
> Affects Versions: 1.8.0
> Environment: Android/iOS
> Others untested
> Reporter: Dewang Shah
> Attachments: cb-915-repro.tar.gz
>
>
> The download method on FileTransfer never fires the error callback if there
> is a network connection but the download URL is not accessible. It simply
> waits forever and does not return.
> Reproduction:
> var fileTransfer = new FileTransfer();
> fileTransfer.download('http://nosuchserver/nosuchfile.png', fullPath,
> function(entry) {
> console.log("download complete: " + entry.fullPath);
> }, function(error) {
> console.log("download error source " + error.source);
> console.log("download error target " + error.target);
> console.log("download error code" + error.code);
> });
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira