Unable to download file from cloud

Hi,
I am unable to download file from adobe cloud.can anyone help me out?

Adobe has more than one file-storage 'cloud.'  What is the URL of the file you are trying to download?

Similar Messages

  • Unable to download file from FileDownload UI Element - Java Web Dynpro

    Hello Experts,
    I am facing a strange issue.Scenario is:
    I created an java web Dynpro application (Please note that it is just a standalone WD app, not integrated in portal) with just one FileUpload UI Element ,one FileDownload UI element and one button (for triggering an action).
    I browse a file (e.g. text,pdf,doc etc.) and click on button. It uploads the file and when I click on download, there are two cases:
         1) Simply click on download does not downloads the file and shows error: "Unable to download <file name> from <server name>.  Unable to open this Internet site. The requested site is either unavailable or cannot be found. Please try again later." Though it is opening the file,showing the content.
         2) I opened that portal URL in a new tab in same session and logged in with a portal user. Now if I click on download link of same WD app opened in different tab of same session, it downloads the file without any error.
    I am using portal 7.0
    Can somebody point what's going wrong with case 1?
    Helpful pointers will be appreciated.
    Thanks,
    Kirtiman

    Hi Sid,
    I did not gave any authentication of WD app as it is anonymous app. There is no parameter set in application properties.
    As I run the app, it is showing the initial screen with UI elemtns and till upload works fine,.It has to be an anonymous app, so cannot ask for credential from user.
    Thanks
    Kirtiman

  • I am unable to download files from a particular web site

    I am a faculty member at a local college. I am able to open up blackboard and do certain interactions but when I need to download a file Firefox won't let me. It works fine in explorer.
    == URL of affected sites ==
    http://

    It seems that Blackboard is always at least a year behind in supporting the latest versions of Firefox, and some schools may not be using that latest version of their software. Look under Supported Browsers for the version of Firefox that is supported for the version of Vista or Campus Edition your school uses. That information should be posted at the bottom of most Blackboard / WebCT pages.
    http://www2.blackboard.com/tuneup/viewpage?name=tuneup_browser_tuneup_windows_firefox
    Depending upon which version your school is using, you will have to use Firefox 3.0.x, 3.5.x, or Firefox 2.0.0.20 when accessing the Blackboard site.
    My advice is to install the Firefox Portable version that you need for Blackboard on your computer, and use that installation only for Blackboard. Continue to use 3.6.x for all other web browsing. The Portable version won't affect the official version at all.
    FP 3.0.x and 3.5.x versions are here:
    http://portableapps.com/apps/internet/firefox_portable/localization#legacy
    FP 2.0.0.20 is here:
    [http://sourceforge.net/projects/portableapps/files/Mozilla Firefox, P.E. Legacy/Firefox_Portable_2.0.0.20_en-us.paf.exe]

  • HT201413 I purchased an album online with my ipad2 directly from the artists website.  I received an email containing the link to allow me to download it.  I tapped on the link and the MSG came up saying Safari is unable to download file.  Any ideas?

    I purchased an album online with my ipad2 directly from the artists website.  I received an email containing the link to allow me to download it.  I tapped on the link and the MSG came up saying Safari is unable to download file.  I have downloaded apps before with no problems.  This is the first music download I have purchased on my ipad2.  Maybe it has something to do with the security on the email I received from the artist containing the download.  I have the latest iTunes OS and apple iPad 2. O.S.  Any ideas on what to do?

    You can't download music via Safari on the iPad - you will need to download it on your computer, add it to your computer's iTunes, and then sync it to the iPad.

  • I changed to ipad air 2 and am unable to download books from overdrive. I am connected to wifi and have tried every option on the overdrive site. It closes everytime I try to download a file.

    I changed to ipad air 2 and am unable to download books from overdrive. I am connected to wifi and have tried every option on the overdrive site. It closes everytime I try to download a file.

    Reset the device:
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
    If that doesn't help, tap Settings > General > Reset > Reset All Settings
    If that doesn't help, restart your internet modem and router then try downloading books.

  • Download files as psd-file from cloud to pc - Failure - Adobe Touch App

    I can download my files from cloud to pc as jpg-file but I cannot download my files as psd-file. I get this message: {"code":"The specified resource was not found or does not exist - Request ID: faaf719a-199e-48de-8f76-2f30ee54665c\n","message":"Unknown error"}.
    The files are created with the Adobe-Touch-App (Android, Nexus 7 and Samsung Galaxy Note 2)

    I do have the same problem, using samsung galaxy tab 10.2 it used to work though. Have you tried the plugin? http://forums.adobe.com/docs/DOC-1336
    i will try this later on

  • Download file from UNIX to EXCEL problem

    Hi,
    I am trying to download file from UNIX server to excel file, there is one column which is messing up and that is number 100000000000000002 (18 in length) it is writing as 1E+17, funny thing is when I click on that cell it is showing as
    100000000000000000.
    I am using GUI_DOWNLOAD to download to excel, below is the output excel format, I am talking about 4th value from left
    GUID    leg_reg     lic_type     lic_num     ex_lic_num     vali_from     valid_to     created_by
    3E633B85C05E6F28E100     EAR     ENC     1E+17     ENC     20030305     20930305     VANRIJ
    below is the program I am using to download the output from UNIX to excel
    FORM get_data_file.
      OPEN DATASET p_unxfil FOR INPUT IN TEXT MODE ENCODING DEFAULT.
      IF sy-subrc = 0.
        DO.
          READ DATASET p_unxfil INTO input_file_tab-line_string.
          IF sy-subrc <> 0.
            EXIT.
          ENDIF.
          APPEND input_file_tab.
          CLEAR  input_file_tab.
        ENDDO.
      ELSE.
        PERFORM write_message USING 'ZZ' 'E' '000'
          'Unable to find file' p_unxfil
          '  Press Enter key to exit.' ''.
      ENDIF.
      CLOSE DATASET p_unxfil.
      DESCRIBE TABLE input_file_tab LINES record_cnt.
    ENDFORM.                    " get_data_file
    FORM create_pc_file.
      DATA: l_file TYPE string.
      MOVE p_pcfile TO l_file.
    Save the file
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          filename                = l_file
        TABLES
          data_tab                = input_file_tab
        EXCEPTIONS
          file_write_error        = 1
          no_batch                = 2
          gui_refuse_filetransfer = 3
          invalid_type            = 4
          no_authority            = 5
          unknown_error           = 6
          header_not_allowed      = 7
          separator_not_allowed   = 8
          filesize_not_allowed    = 9
          header_too_long         = 10
          dp_error_create         = 11
          dp_error_send           = 12
          dp_error_write          = 13
          unknown_dp_error        = 14
          access_denied           = 15
          dp_out_of_memory        = 16
          disk_full               = 17
          dp_timeout              = 18
          file_not_found          = 19
          dataprovider_exception  = 20
          control_flush_error     = 21
          OTHERS                  = 22.
      IF sy-subrc NE 0.
        WRITE: / 'Error creating pc file', p_pcfile.
        EXIT.
    endif.
    I will assure of points.
    Thanks for your help
    Sarath

    It is not the problem of your program. This happens becuase of the "nature" of the excel. You need to retain the text property of that column.
    Try like this:
    1. Download the file in .txt
    2. Open Excel .. blank sheet
    3. Now, click on Open. Select your .txt file
    4. One pop up will come ..."Text Import Wizard"
    5. Select the fixed width or Delimited ... Press Next ...
    6. Select appropriate delimitors or fixed length .. press Next
    7. Select your coulumn (which has the problem), Select the "Text" radiobutton on the upper-right corner and finish.
    Regards,
    Naimesh Patel

  • Download file from AL11 into CSV to load MD into BPC

    Hi All
    I have an issue in downloading file from AL11 which is in the form of CSV.
    1) I have exported the masterdata for Costcenter using a Open hub.
    2) The file is residing at the app server AL11 in the form of CSV.
    3) I want to down load the file into CSV and upload that file into BPC NW for my costcenter diemension.
    When i am downloading the file from AL11 , the total records are merged into one row, i cannot download same as it is available in AL11.
    I have followed the HOW TO GUIED : HOW TO AUTOMATE MD LOADING IN BPC nw.
    I m unable to get the file properly on to my PC.
    could you please help me .
    AK

    You should open your file in AL11, then clicking 'List' then 'Save' you'll be able to download your file. There will be some header lines indeed.
    You'd better use an open hub with your local client as destination if you need the file.

  • Error when submitting podcast: unable to download episodes from your feed

    Hi everyone!
    When I want to submit my podcast in iTunes, it tells me it is unable to download episodes from my feed.
    I uploaded my mp3 file and xml file to an ftp-server, could there be a problem?
    Thanks in advance!
    Kind regards,
    Jannes

    Your feed won't access in FireFox (my default rss reader) or Safari when set as an rss reader, and it was unable to download the file. I was able to access and read it in Terminal and using FeedValidator but it comes to an abrupt end 28 lines in - see the report:
    http://feedvalidator.org/check.cgi?url=http%3A%2F%2Fwww.setanta.com%2Fie%2F%3Ffe ed%3Dpodcast
    (ignore the error on line 14, this is irrelevant.)
    Either your feed file is corrupt or the server is acting up in some way - you would have to take that up with the people running it.

  • Why does my windows phone say it is unable to download file type when trying to install firefox browser?

    I have no restrictions on phone. I tried to be safe and use security features like... Safe search,cookie block and such. However it keeps saying unable to download file type when I try and install any of the up to date browsers. This is interesting to say the least. Because my browser is already using the most up to date version. I have internet explorer using a windows 8 nokia

    hello, the mobile version of firefox isn't available on the windows phone platform: [https://support.mozilla.org/en-US/kb/will-firefox-work-my-mobile-device#w_other-operating-systems|Will Firefox work on my mobile device?]
    there have been technical and legal hurdles in the app store originally which discouraged mozilla from starting any developments in this direction. i don't know about the current situation, but since mozilla is now focusing its energies on creating firefox os as open source web-based platform, i doubt that you will see firefox on your windows phone device in the foreseeable future...

  • Unable to download photos from Panasonic DMC-ZS19 to IPad

    I have a first generation IPad and I am unable to download photos from my Panasonic DMC-ZS19.  I have tried the USB and the card reader but the IPad does not recognize either.  It was successful using the USB with my desktop but I am going on a trip and want to use the IPad to download to.  I am using the original Photo app.  Do I need to upgrade to another app?  Any suggestions would be helpful.

    Have you tried a different card or card reader or USB port? Or is the camera directly connected with a cable?
    Testing with a different card would check if there is an unreadable file on the card (video image) or if there is a general problem with reading files from that camera.

  • Problem downloading files from flash movie?

    For some reason, on my Mac Book Pro (running OSX 10.5.4) I am unable to download a file from a flash movie (.swf). All other macs in the office are capable, and I can download files from other sources, just not from a flash movie. It allows me to choose where to save the file, but when the download starts, the progress bar remains at 0%.
    Does anyone know what causes this?

    There's no such thing as Final Cut HD 5.0.4. If what you really have is Final Cut Pro 5.0.4, then you should be able to capture and edit HDV. But, you haven't told us what camcordr you have, so it's difficult to help.
    The usual procdure for resolving this situation looks something like this:
    1) With the camcorder powered on and connected, open System Profiler, and see if it sees the camcorder. (SP is in the /Applications/Utilities folder.)
    2) If SP sees it, then with FCP not running, power down the camcorder, then start Final Cut again. When the window opens saying FCP can't find your HDV device, power on the camcorder and click continue. Try it again.
    3) If Log & Capture doesn't see it, then Quit FCP, shut down the Mac, power down the camcorder. Wait 20 seconds. Power up the camcorder, boot up again, open FCP & try it.
    4) If L&C still doesn't see it, then trash your FCP preferences, and try it again.
    5) Report back here.
    EDIT: You are using the HDV Easy Setup, aren't you?

  • [HELP] Download file from FTP server

    hi,
    I want to write a java program that can download and upload files from ftp server. Currently I only manage to upload a file to ftp server but i cant download file from ftp server. Here is the source code that only allow user to upload file. Anyone can give me some guidelines so that my program can download and also upload file? thx.
    import java.io.*;
    import java.net.*;
    public class FTPUpload {
    private static final int CTRLPORT = 21;
    private static Socket ctrlSocket;
    private static PrintWriter ctrlOutput;
    private static BufferedReader ctrlInput;
    private static byte[] localHostAddress;
    public final static String DIR = "C:\\zip\\";
    public static void main(String[] args) {
    try {
    String host = "192.168.1.1";
    String loginName = "testuser";
    String password = "password";
    String dirName = "/home/testuser";
    String fileName = "hello.zip";
    ctrlSocket = new Socket(host, CTRLPORT);
    localHostAddress = ctrlSocket.getLocalAddress().getAddress();
    ctrlOutput = new PrintWriter(ctrlSocket.getOutputStream());
    ctrlInput = new BufferedReader(new InputStreamReader(ctrlSocket.getInputStream()));
    ctrlOutput.println("USER " + loginName);
    ctrlOutput.flush();
    ctrlOutput.println("PASS " + password);
    ctrlOutput.flush();
    ctrlOutput.println("CWD " + dirName);
    ctrlOutput.flush();
    ctrlOutput.println("TYPE I");
    ctrlOutput.flush();
    FileInputStream fis = new FileInputStream(DIR + fileName);
    Socket dataSocket = dataConnection("STOR " + fileName);
    OutputStream outstr = dataSocket.getOutputStream();
    int n;
    byte[] buff = new byte[1024];
    while ((n = fis.read(buff)) > 0) {
    outstr.write(buff,0,n);
    dataSocket.close();
    fis.close();
    ctrlOutput.close();
    ctrlInput.close();
    ctrlSocket.close();
    }catch (Exception e) {
    e.printStackTrace();
    private static Socket dataConnection(String ctrlcmd)
    throws IOException,UnknownHostException {
    String cmd = "PORT ";
    ServerSocket serverDataSocket = new ServerSocket(0,1);
    for (int i=0;i<4;i++) {
    cmd = cmd + (localHostAddress[i] & 0xff) + ",";
    cmd = cmd + (((serverDataSocket.getLocalPort())/256) & 0xff)
    + ","
    + (serverDataSocket.getLocalPort() & 0xff);
    ctrlOutput.println(cmd);
    ctrlOutput.flush();
    ctrlOutput.println(ctrlcmd);
    ctrlOutput.flush();
    Socket dataSocket = serverDataSocket.accept();
    serverDataSocket.close();
    return dataSocket;
    }

    Or just use a java.net.URL("ftp://...) ..., get its input stream, and away you go ...

  • Download file from ftp server

    Can I download files from an ftp server by simply using the ip address or https:// url?    I've only gotten this to work by using the "ftp//:" address in previous projects and I'm not getting this to work in many different attempts. 
    Here is one...
     # FTP Config
    $FTPHost =
    "10.10.10.5"
    $Username =
    "admin"
    $Password =
    "12345678"
    $FTPFile =
    "test.log"
    # FTP Log File Url
    $FTPFileUrl =
    "ftp://" +
    $FTPHost +
    "/" +
    $FTPFile
    # Create FTP Connection
    $FTPRequest =
    [System.Net.FtpWebRequest]::Create("$FTPFileUrl")
    $FTPRequest.Credentials
    = New-Object System.Net.NetworkCredential($Username,
    $Password)
    $FTPRequest.Method =
    [System.Net.WebRequestMethods+Ftp]::DownloadFile
    $FTPRequest.UsePassive
    = $false
    $FTPRequest.UseBinary
    = $true
    $FTPRequest.KeepAlive
    = $false
    # Get FTP File
    $FTPResponse =
    $FTPRequest.GetResponse()
    $ResponseStream =
    $FTPResponse.GetResponseStream()
    $FTPReader =
    New-Object System.IO.Streamreader
    -ArgumentList $ResponseStream
    do
    Write-Host
    $FTPReader.ReadLine()
    while ($FTPReader.ReadLine()
    -ne $null)
    $FTPReader.Close()
    # Create FTP Connection
    $FTPRequest =
    [System.Net.FtpWebRequest]::Create("$FTPFileUrl")
    $FTPRequest.Credentials
    = New-Object System.Net.NetworkCredential($Username,
    $Password)
    $FTPRequest.Method =
    [System.Net.WebRequestMethods+Ftp]::DownloadFile
    $FTPRequest.UsePassive
    = $false
    $FTPRequest.UseBinary
    = $true
    $FTPRequest.KeepAlive
    = $false
    # Get FTP File
    $FTPResponse =
    $FTPRequest.GetResponse()
    $ResponseStream =
    $FTPResponse.GetResponseStream()
    $FTPReader =
    New-Object System.IO.Streamreader
    -ArgumentList $ResponseStream
    do
    Write-Host
    $FTPReader.ReadLine()
    while ($FTPReader.ReadLine()
    -ne $null)
    $FTPReader.Close()

    Hi!
    You don't need to specifically use an IP address. E.g can use
    $FTPHost = "myrandomserver.mycompany.com"
    $Username = "admin"
    $Password = "12345678"
    $FTPFile = "test.log"
    # FTP Log File Url
    $FTPFileUrl = "ftp://" + $FTPHost + "/" + $FTPFile

  • BOBJ is unable to delete file from OFRS

    System Info:
    Business Objects Enterprise XI3.1 SP3 FP3.2
    Windows 2003 Server Enterprise Edition SP3
    Oracle 10.2
    Java 1.6.0_20
    APACHE Tomcat 5.5.20
    2 clustered servers
    FRS located on SAN Disk Drive connected to primary server (Winchester1)
    We use WebIntelligence exclusivly.
    We are receiving the following error in our event log on our clustered server:
    Source: BusinessObjects_CMS
    Category: General
    Type: Warning
    Event ID: 33018
    Computer: Winchester2
    Unable to delete file from the file repository. Make sure a File Repository Server is running and registered and enabled. Details : Failed to connect to the File Repository Server output. Make sure the server is up and running.
    We have verified the FRS is running and we are able to connect to it from our clustered server (Winchester2).  The security settings are set to full control for the admin group and the users have Read/Write access to the file store folders.  The errors are filling up our event logs and causing issues with the servers.  this appears to be happening each morning and the file it is trying to delete is an .xls file.
    We have a ticket open with SAP Support but they are just as baffled as we are and keep sending us from one group to another and tell us they need to look at it on thier end and they will get back to us.
    Has anyone had this happen on their system?

    Hi Richard, did you ever get this issue resolved?  We are having a similar issue on XI R3 SP4 using NAS/CIFS shares for our File Stores.  We see this issue mainly after our servers are patched and a full environment restart is initiated.  Like you, our event logs fill up with so many error messages I cannot pinpoint exactly when the issue starts happening.
    Any help would be much appreciated.

Maybe you are looking for