You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by "Sergey Shakhnazarov (JIRA)" <ji...@apache.org> on 2015/10/26 13:46:28 UTC

[jira] [Updated] (CB-5486) upload error code : 3

     [ https://issues.apache.org/jira/browse/CB-5486?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sergey Shakhnazarov updated CB-5486:
------------------------------------
    Environment: Android
    Component/s:     (was: Android)

> upload error code : 3
> ---------------------
>
>                 Key: CB-5486
>                 URL: https://issues.apache.org/jira/browse/CB-5486
>             Project: Apache Cordova
>          Issue Type: Bug
>          Components: Plugin File Transfer
>    Affects Versions: 2.9.0, 3.0.0
>         Environment: Android
>            Reporter: gopi
>            Assignee: Ian Clelland
>
> Android device problem is when i click the link , 
> then it shows download error source https://ddlvideos.s3.amazonaws.com/A%201.mp4 ,
> download error target file:///mnt/sdcard/A 1.mp4 , 
> upoad error code : 3
> here is my code
> {code}
> document.addEventListener("deviceready", onDeviceReady, false);
> function onDeviceReady(){
>     window.requestFileSystem(
>      LocalFileSystem.PERSISTENT, 0, 
>      function onFileSystemSuccess(fileSystem) {
>          window.currentDir = fileSystem.root.fullPath;
>          window.fileSystem = fileSystem;
>      }, fail);
> }
> function existsFile(fileName){
>     fileSystem.root.getFile(fileName, {
>         }, 
>         function(f){
>             console.log(f);
>              alert("file founded: " + f.toURI());
>               showLink(f.toURI());
>         },
>         function(){
>             window.confirm("would you like to download..?");
>                 downloadFile(fileName);
>         })
> }
> function downloadFile(fileName) {
>     var fileTransfer = new FileTransfer();
>     fileTransfer.download("https://ddlvideos.s3.amazonaws.com/A%201.mp4", 
>     currentDir+"/"+fileName,
>        function(theFile) {
>            alert("download complete: " + theFile.toURI());
>            showLink(theFile.toURI());
>        },
>        function(error) {
>         alert("download error source " + error.source);
>         alert("download error target " + error.target);
>         alert("upload error code: " + error.code);
>        });
> }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org