EAR file download from PI server

Hi Experts,
we have deployed a adapter module in our Quality system sometime back directly from NWDS using SDM.
As I didnt had the backup of my EAR file and my system got crashed, i lost the code.
Please let me know where can i download(Folder location on server)  the same EAR file or jar file from PI server
We are using PI7.0 on Unix
Thanks in advance

Dear all -Thanks for the replies.
We downloaded the EAR file from the server, but when i was trying to deploy the same EAR on to our sandbox, its throwing error as below:
The reason is: Error occurred, trying to collect module archives with ws clients. .
ine.services.webservices.server.deploy.wsclient.WSClientsDeployManager.collectWSClientsModuleArchives(WSClientsDeployManager.java:374)     at com.sap.engine.services.webservices.server.deploy.wsclient.WSClientsDeployManager.deploy(WSClientsDeployManager.java:56)     at com.sap.engine.services.webservices.server.deploy.WSDeployer.deploy(WSDeployer.java:158)     at com.sap.engine.services.deploy.server.application.DeploymentTransaction.makeComponents(DeploymentTransaction.java:606)     at com.sap.engine.services.deploy.server.application.DeployUtilTransaction.commonBegin(DeployUtilTransaction.java:321)     at com.sap.engine.services.deploy.server.application.DeploymentTransaction.begin(DeploymentTransaction.java:307)     at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:292)     at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhases(ApplicationTransaction.java:326)     at com.sap.engine.services.deploy.server.DeployServiceImpl.makeGlobalTransaction(DeployServiceImpl.java:3186)     at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:554)     at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:1555)     at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:319)     at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:200)     at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:136)     at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)     at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)     at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)     at java.security.AccessController.doPrivileged(AccessController.java:219)     at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)     at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)Caused by: java.util.zip.ZipException: Error opening zip file /usr/sap/XIS/DVEBMGS00/j2ee/cluster/server0/./temp/deploy/work/deploying/reader1307647455780/sapxmltoolkit.jar     at java.util.zip.ZipFile.open(Native Method)     at java.util.zip.ZipFile.<init>(ZipFile.java:140)     at java.util.jar.JarFile.<init>(JarFile.java:160)     at java.util.jar.JarFile.<init>(JarFile.java:125)     at com.sap.engine.services.webservices.server.deploy.util.jar.JarUtil.hasEntry(JarUtil.java:68)     at com.sap.engine.services.webservices.server.deploy.wsclient.WSClientsFactory.containsWSClientsSingleMode(WSClientsFactory.java:797)     at com.sap.engine.services.webservices.server.deploy.wsclient.WSClientsFactory.containsWSClients(WSClientsFactory.java:782)     at com.sap.engine.services.webservices.server.deploy.wsclient.WSClientsDeployManager.collectWSClientsModuleArchives(WSClientsDeployManager.java:366)     ... 19 more (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
Deployment of FileModuleEAR finished with Error (Duration 9982 ms)
Does this  error means that the EAR is being used by other component , i mean as we downloaded this EAR from our quality box, does this has some depencies/references created on the EAR and thus erroring out when trying to deploy the same in sandbox?
We are using SDM for deployment.
Thanks in advance,

Similar Messages

  • File download from one server does not work (other browsers work)

    After uprading to Win7 and FF 7.0.1 the file download from our intranet server stopped working. IE 9 and Chrome 14 does not have any problems. When I try to open for exmple this URL:
    https://wwwedu.oulu.fi/intra/?act=58&rnum=26241
    I got only an error page:
    Corrupted Content Error
    The page you are trying to view cannot be shown because an error in the data transmission was detected.
    The page you are trying to view cannot be shown because an error in the data transmission was detected.
    Please contact the web site owners to inform them of this problem.
    I have tested this with two separate computers and got some similar reports from students.
    If there is is problem in the headers etc. of the server, I would be very pleased to know that, too!
    Thank you very much
    Eetu Pikkarainen

    Thank you, the discussion in [https://bugzilla.mozilla.org/show_bug.cgi?id=681140 bug 681140] was informative.
    (By redbot.org I found out that there was two Content-Disposition headers. They were identical, but other one had one space character more. When they were corrected to identical then douwnload work. Now I still have to find out why there are two...)

  • File download from application server to presentation server

    Hi,
         We have requirment to upload a file to application server in .dbf format and then download it to presentation server.  while downloading the file to presentation server some of the fields  getting junk values.  we are downloading file to excel sheet.  some of the fields values are Russian texts.  Those fields only getting junk values, all other fields are getting correct values.
    Please advice.
    Regards,
    chandra.

    hi
    sample code below should help you......
    <u>Download to presentation server</u>
    This program can be used to download files from Application server to presentaion server.
    1)Maximum length of each field is considered to be 40 characters.
    2)Maximum length of the field can be changed by specifying the length in selection screen parameter
    3)First line of the Application server file should contain the description of each field.
    4)Each field should be delimited by #.
    *& Report ZDOWNLOADFILE *
    REPORT ZDOWNLOADFILE
    MESSAGE-ID B1 .
    INCLUDES *
    INCLUDE ZDOWNLOADFILE_TOP.
    INCLUDE ZDOWNLOADFILE_FORM.
    EVENT-AT SELECTION-SCREEN *
    AT SELECTION-SCREEN ON pa_appl.
    PERFORM check_file_exists USING pa_appl.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR pa_appl.
    PERFORM f4_dxfilename USING pa_appl.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR pa_pres.
    PERFORM f4_filename USING pa_pres.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR pa_del.
    PERFORM f4_dxfilename USING pa_del.
    EVENT INITIALIZATION *
    INITIALIZATION.
    PERFORM initialization.
    EVENT START-OF-SELECTION *
    START-OF-SELECTION.
    PERFORM determine_fields. "Determine number of columns
    PERFORM build_itab. "Create internal table based on number
    "of columns
    PERFORM build_header. "To prepare header for the file
    PERFORM download_data. "Download data to presentation server
    PERFORM delete_files. "Delete files from application server
    *& Include ZDOWNLOADFILE_TOP *
    TYPES: BEGIN OF ty_header,
    text(100) TYPE c,
    END OF ty_header.
    DATA: c_fnh_mask type dxfields-filemask value '.',
    search_dir type dxfields-longpath value '/sapglobal/users'.
    CLASS cl_abap_char_utilities DEFINITION LOAD.
    Internal tables *
    DATA: gt_header TYPE STANDARD TABLE OF ty_header,
    gt_fieldcat TYPE lvc_t_fcat.
    Work areas *
    DATA: gs_header TYPE ty_header,
    gs_fieldcat TYPE lvc_s_fcat.
    DATA: wa_filename TYPE string.
    DATA: wa_count(2) TYPE N,
    wa_start(3) TYPE N,
    wa_end(3) TYPE N,
    wa_len(3) TYPE N.
    DATA: wa_data(12000) TYPE c,
    wa_off TYPE I,
    itab_appl TYPE REF TO DATA,
    itab_line TYPE REF TO DATA,
    col(2) TYPE c.
    DATA: wa_field(30) TYPE c.
    DATA: lv_index TYPE sy-tabix.
    DATA: gs_adrp type adrp,
    gs_usr02 type usr02,
    gs_usr21 type usr21,
    gs_char50(50).
    CONSTANTS: co_slash(1) value '/'.
    FIELD-SYMBOLS: <itab> TYPE STANDARD TABLE,
    <wa>,
    <fs_line>,
    <wa_line>.
    SELECTION SCREEN *
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE text-f01.
    PARAMETERS: pa_appl LIKE rlgrap-filename OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK B1.
    SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE text-f02.
    PARAMETERS: pa_pres LIKE rlgrap-filename OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK B2.
    SELECTION-SCREEN BEGIN OF BLOCK B3 WITH FRAME TITLE text-f03.
    PARAMETERS: pa_del LIKE rlgrap-filename .
    PARAMETERS: pa_deld AS CHECKBOX.
    SELECTION-SCREEN END OF BLOCK B3.
    SELECTION-SCREEN BEGIN OF BLOCK B4 WITH FRAME TITLE text-f04.
    PARAMETERS: pa_len(3) TYPE c.
    SELECTION-SCREEN END OF BLOCK B4.
    *& Include ZDOWNLOADFILE_FORM *
    *& Form f4_dxfilename
    text
    -->P_pa_appl text
    form f4_dxfilename using p_file.
    DATA: wa_file LIKE dxfields-longpath.
    CLEAR: wa_file.
    call function 'F4_DXFILENAME_TOPRECURSION'
    exporting
    i_location_flag = 'A'
    i_server = ' '
    i_path = search_dir
    filemask = c_fnh_mask
    fileoperation = 'R'
    importing
    o_path = wa_file
    exceptions
    rfc_error = 1
    error_with_gui = 2
    others = 3
    if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    else.
    p_file = wa_file.
    endif.
    endform. " f4_dxfilename
    *& Form f4_filename
    text
    -->P_pa_pres text
    form f4_filename using p_data.
    CALL FUNCTION 'F4_FILENAME'
    EXPORTING
    PROGRAM_NAME = SYST-CPROG
    DYNPRO_NUMBER = SYST-DYNNR
    IMPORTING
    FILE_NAME = p_data
    endform. " f4_filename
    *& Form check_file_exists
    text
    -->P_pa_appl text
    form check_file_exists using p_file.
    DATA: wa_file LIKE rlgrap-filename.
    wa_file = p_file.
    OPEN DATASET wa_file FOR INPUT IN TEXT MODE ENCODING DEFAULT.
    IF sy-subrc = 8.
    MESSAGE E714
    WITH text-m01 p_file text-m02.
    ELSE.
    CLOSE DATASET p_file.
    ENDIF.
    endform. " check_file_exists
    *& Form build_header
    text
    --> p1 text
    <-- p2 text
    form build_header .
    *Select user details
    clear gs_usr21-persnumber.
    select single persnumber
    into (gs_usr21-persnumber)
    from usr21
    where bname = sy-uname.
    concatenate sy-uname
    co_slash
    gs_adrp-name_text(36)
    co_slash
    into gs_char50.
    condense gs_char50.
    clear gs_usr02-class.
    select single class
    into (gs_usr02-class)
    from usr02
    where bname = sy-uname.
    concatenate gs_char50
    gs_usr02-class
    into gs_char50.
    condense gs_char50.
    Write report technical name
    write 'Name: ' TO gs_header+0(10).
    gs_header+11(*) = sy-repid.
    APPEND gs_header TO gt_header.
    CLEAR: gs_header.
    Write user data
    write 'User: ' TO gs_header+0(10).
    gs_header+11(*) = gs_char50.
    CONCATENATE gs_header gs_char50 INTO
    gs_header SEPARATED BY SPACE.
    APPEND gs_header TO gt_header.
    CLEAR: gs_header.
    Write System data
    write 'System: ' TO gs_header+0(10).
    write: sy-sysid to gs_header+11(3).
    write: co_slash to gs_header+14(1).
    write: sy-mandt to gs_header+15(3).
    APPEND gs_header TO gt_header.
    CLEAR: gs_header.
    Write System date and time
    write 'System: ' TO gs_header+0(10).
    write sy-datum to gs_header+11(10).
    write sy-uzeit to gs_header+22(8).
    APPEND gs_header TO gt_header.
    CLEAR: gs_header.
    Write Local date and time
    write 'Local: ' TO gs_header+0(10).
    write sy-datlo to gs_header+11(10).
    write sy-timlo to gs_header+22(8).
    APPEND gs_header TO gt_header.
    CLEAR: gs_header.
    APPEND gs_header TO gt_header.
    endform. " build_header
    *& Form determine_fields
    text
    --> p1 text
    <-- p2 text
    form determine_fields .
    DATA: wa_data(600) TYPE c.
    CLEAR: wa_count,wa_start,wa_end,wa_data.
    wa_start = 0.
    wa_end = 1.
    OPEN DATASET pa_appl FOR INPUT IN TEXT MODE ENCODING DEFAULT.
    READ DATASET pa_appl INTO wa_data.
    wa_len = STRLEN( wa_data ).
    DO wa_len TIMES.
    IF wa_data+wa_start(wa_end) EQ
    cl_abap_char_utilities=>horizontal_tab.
    wa_count = wa_count + 1.
    ENDIF.
    wa_start = wa_start + 1.
    ENDDO.
    CLOSE DATASET pa_appl.
    wa_count = wa_count + 1.
    endform. " determine_fields
    *& Form build_itab
    text
    --> p1 text
    <-- p2 text
    form build_itab .
    DATA: wa_len(4) TYPE c.
    CLEAR: wa_len.
    IF pa_len IS INITIAL.
    wa_len = 40.
    ELSE.
    wa_len = pa_len.
    ENDIF.
    col = 1.
    DO wa_count TIMES.
    CONCATENATE 'FIELD' col INTO wa_field.
    gs_fieldcat-fieldname = wa_field.
    gs_fieldcat-outputlen = wa_len.
    gs_fieldcat-datatype = 'CHAR'.
    gs_fieldcat-col_pos = col.
    col = col + 1.
    APPEND gs_fieldcat TO gt_fieldcat.
    CLEAR: wa_field.
    ENDDO.
    *Create the internal table dynamically based on the file structure,
    *this table will be used to download data through GUI_DOWNLOAD fm
    CALL METHOD cl_alv_table_create=>create_dynamic_table
    EXPORTING
    it_fieldcatalog = gt_fieldcat
    IMPORTING
    EP_TABLE = itab_appl
    *Assign the pointer to the field symbol
    ASSIGN itab_appl->* TO <itab>.
    CREATE DATA itab_line LIKE LINE OF <itab>.
    *Create a work area for the dynamic internal table
    ASSIGN itab_line->* TO <wa_line>.
    col = 1.
    OPEN DATASET pa_appl FOR INPUT IN TEXT MODE ENCODING DEFAULT.
    DO.
    READ DATASET pa_appl INTO wa_data.
    IF sy-subrc <> 0.
    CLOSE DATASET pa_appl.
    RETURN.
    ELSE.
    wa_start = 0.
    lv_index = 1.
    DO wa_count TIMES.
    ASSIGN COMPONENT lv_index OF STRUCTURE <wa_line> TO <fs_line>.
    FIND cl_abap_char_utilities=>horizontal_tab
    IN wa_data+wa_start(*) MATCH OFFSET wa_off.
    IF sy-subrc = 0.
    IF wa_off NE 0.
    <fs_line> = wa_data+wa_start(wa_off).
    ENDIF.
    wa_start = wa_start + wa_off + 1.
    lv_index = lv_index + 1.
    ELSE.
    <fs_line> = wa_data+wa_start(*).
    ENDIF.
    ENDDO.
    APPEND <wa_line> TO <itab>.
    CLEAR: <wa_line>,<fs_line>.
    ENDIF.
    ENDDO.
    endform. " build_itab
    *& Form download_data
    text
    --> p1 text
    <-- p2 text
    form download_data .
    clear: wa_filename.
    wa_filename = pa_pres.
    call function 'GUI_DOWNLOAD'
    exporting
    filename = wa_filename
    filetype = 'DAT'
    tables
    data_tab = gt_header
    exceptions
    access_denied = 15
    call function 'GUI_DOWNLOAD'
    exporting
    filename = wa_filename
    filetype = 'DAT'
    append = 'X'
    tables
    data_tab = <itab>
    exceptions
    access_denied = 15
    endform. " download_data
    *& Form initialization
    text
    --> p1 text
    <-- p2 text
    form initialization .
    REFRESH: gt_header,gt_fieldcat,gt_header.
    endform. " initialization
    *& Form delete_files
    text
    --> p1 text
    <-- p2 text
    form delete_files .
    IF pa_deld EQ 'X'.
    DELETE DATASET pa_appl.
    ENDIF.
    IF pa_del IS NOT INITIAL.
    DELETE DATASET pa_del.
    ENDIF.
    endform. " delete_files
    <b>reward points if helpful.</b>
    thanks
    vijay

  • File download from the server

    I have this page(in a distributive application) that checks the status of files on the server. These are hyperlinked and I am trying to allow the users to download the files. I can see the files, and the links but can't download a file or "save target as.." option.
    I have added an .xml file in the configuration directory of my application server(JBoss). I can download the files on the same computer, but if I can't do that from other computer. I got this .xml file from online search, someone suggested to use this in order to allow for download option.
    <?xml version='1.0' encoding='utf-8'?>
    <Context debug="99" docBase="/home/jboss-4.0.5.GA/bin/Fastran" path="/Fastran" reloadable="true">
    </Context>Can I get some help in this regard ? The files are created in the application server folder, should I change the destination for resultant files outside of the server folder ?
    Thanks.

    <%
            String userFolder = applicationId.getUserEmail() + applicationId.getSessionId() ;
            for (int i = 0 ; i < Integer.parseInt(applicationId.getSpecValue()) ; i ++)
                int j = i + 1 ;
                File spec = new File("C:\\jboss-4.0.5.GA\\bin\\Fastran\\" + userFolder + "\\ftn07_" + (i+1)) ;
                if (spec.exists() == true)
                    //out.println("") ;
                %>
                <a href = "<%= destFile %><%= j %>"><% out.println("ftn07_" + j); %></a><br>
                <%
                else
                    out.println("File not found") ;
        %>
    and here is how i get to the destFile:
    <%
         String destFile = "C:\\jboss-4.0.5.GA\\bin\\Fastran\\" + applicationId.getUserEmail() + applicationId.getSessionId() + "\\ftn07_" ;
            String destSum = "C:\\jboss-4.0.5.GA\\bin\\Fastran\\" + applicationId.getUserEmail() + applicationId.getSessionId() + "\\DamageSummary.txt" ;
        %>

  • Excel File downloaded from application server is also opening in notepad

    Hi Friends,
    While downlaoding an excel file from the application server,we are able to open in notepad also.But this does not conatin the excel properties and hence happening.File should only oopen with excel and no other file type
    Can any open help on this
        ld_file =  '/usr/sap/trans/abap/HR_DATA.xls'.
        OPEN DATASET ld_file FOR OUTPUT in text mode ENCODING DEFAULT .
        IF sy-subrc = 0.
          LOOP AT int_final.
            CLEAR wa_string.
            CONCATENATE int_final-employee_sno int_final-employee_code INTO wa_string SEPARATED BY con_tab.
            CONCATENATE wa_string int_final-first_name         INTO wa_string SEPARATED BY con_tab.
    please help...
    Edited by: Neliea on Oct 29, 2009 1:11 PM

    Hi,
    Please refer to these links.
    [url]Re: Internal table to excel download?;url]
    [url]Re: Transfer from Internal Table to EXCEL file...;url]
    Regards,
    Aditya

  • File download from server

    Hi All,
    I have written a code that downloads a file from server using the following link given by Frank,
    File download from server
    I am able to get a open/save/cancel dialog with help of this. But issue is that applications of kind .doc/.xls/.ppt gets opened (If user clicks open) right in the internet explorer window instead of getting opened in a new office application....
    However .pdf runs fine.
    Can any thing be done for this???
    Any help....
    Regards,
    Amitt

    Hi,
    what do you have for the content disposition header?
    Try this:
             response.setHeader("Cache-Control", "max-age=0");
             response.setHeader("Content-Disposition", "attachment; filename=\"" + fname + "\"");
             response.setContentType("application/x-download");Brenden

  • Problem with pdf display downloaded from application server

    Hi all,
    I have a problem with displaying pdf downloaded from application server (saved in BINARY MODE).
    I am getting the pdf output of adobe form in FPFORMOUTPUT-PDF as rawstring back to my program and then converting that rawstring into binary form using the function module SCMS_BINARY_TO_STRING.
    Now, when I export the data to presentation server directly using cl_gui_frontend_services=>gui_download, the pdf is downloaded properly.
    However, when I save the data to application server file by looping at the internal table obtained from SCMS_XSTRING_TO_BINARY and using TRANSFER, and subsequently downloading the file in "unconverted format" from AL11 to my desktop, I am getting a "blank" pdf file (with the same number of pages as the one downloaded using gui_download).
    I have tried different encodings during download but in those cases i get corrupted pdf message. only the default option of INTIAL value seems to work.
    I am forced to believe that there is a problem in my code which saves the data to app server but I cant find any solution that is logical. Any solution to this would be greatly appreciated.
    Regards,
    Sasi
    Edited by: Sasi Upadrasta on Sep 29, 2010 7:55 PM

    used a program to read the file from appl server and then downloading it to desktop.

  • Jar files downloaded from SkyDrive are being renamed to jar.zip files

    I have cut and pasted the following series of exchanges from when I posted the problem onto SkyDrive's support forum. I hope that someone might be able to propose a better solution to the problem that I have. Thanks for your help.
    MDSms asked on
    Uploaded jar files convert to jar.zip files when downloaded from SkyDrive
    I have uploaded an executable jar file to SkyDrive. (I will call this FILE.jar). The file is intact and indicates that it is a jar file type when the file is viewed by Properties within Skydrive. However, when I download (or others download through a share link) the file, it is being saved onto the local computer's download file with .zip appended to the file name (FILE.jar.zip). The downloaded file can be renamed to remove the .zip appendage and subsequently run successfully. However the folder options for the folder where the downloaded file resides must be changed for disable "Hide known file extensions" prior to being able to remove the .zip appendage. While I have figured out the workaround for this problem, this manual renaming procedure is entirely too cumbersome as a solution for sharing this file with others. How can I prevent or disable the FILE.jar file from being renamed to FILE.jar.zip when it is downloaded from SkyDrive?
    All Replies (5)
    Audrey_P. replied on
    Forum Moderator
    Hi,
    Thank you for posting. Let me try to assist you with your issue with your files.
    In order for us to reproduce the issue on our end. Please provide us with the exact steps that you did when you uploaded the files as well as the steps when you are downloading it.
    We will be needing the steps to help us figure put what is causing you this issue.
    We look forward to your response.
    Thank you.
    Audrey P.
    MDSms replied on
    Reply
    The file was uploaded by first logging onto my SkyDrive account using Windows 7 Pro and Firefox browser, then a new folder in my account was created without sharing privileges, then the folder was opened and the FILE.jar was uploaded into the folder using the "Upload" option on skydrive account menu. Sharing privileges for FILE.jar were then created (view only), and the shortened url link was sent to the individuals that I was trying to share the file with. was then turned on. When these people use the link to download the file, it is being saved as FILE.jar.zip.
    When I try to download the file through the skydrive account download option, it is being saved onto my computer as FILE.jar.zip and this occurs when I try to download the file while signed into my skydrive account as well as when I am not signed into my skydrive account (using the shared file link).
    This PNG shows the information provided by clicking on the download icon (down arrow) within the Firefox browser; note that the file was downloaded as FILE.jar.zip and that the source was live.com. When I use Windows Explorer to look at the same file within the Download folder itself, examining the file's properties details also shows that it is being saved as FILE.jar.zip and is of the file type compressed zip folder.
    This PNG shows the information displayed to me from my skydrive account when I view the originally uploaded file's properties; note that the information shows that the file is a jar file type.
    When I utilize Internet Explorer 9 to access the file, FILE.jar is being downloaded onto my computer as a jar file type. This PNG shows the information provided by Tools/View Downloads within the IE9 browser. Note that in this instance, the information indicates that the file is being downloaded from yzudea.blu.livefilestore.com.
    It appears to me that the problem (the FILE.jar file being renamed to FILE.jar.zip) arises from the fact that a jar file downloaded from skydrive using firefox, is being sent from live.com whereas a jar file downloaded from skydrive using IE9 is being sent from yzudea.blu.livefilestore.com.
    I want to make sure that a person receiving a share link from me for FILE.jar is able to download it without modification to the file name regardless of which browser is being using to access the link. How can I make sure that this occurs?
    Any help is appreciated. Thanks.
    Michelle Anne D. replied on
    Forum Moderator Community Star Community Star
    Reply
    Hi MDSms,
    I appreciate you for providing as much information as you can about the issue, as well as for uploading screenshots on what you see from the downloaded file. About your initial concern wherein the file gets renamed with .zip after the original file extension, this is solely dependent on the browser that you are using since they have a different safety/security measure that needs to be implemented.
    Moreover, you may see the file servers live.com and yzudea.blu.livefilestore.com to be different with one another, but they actually are sent from the same SkyDrive server. This in turn, depends on the web browser where the file is being downloaded as well. The live.com file where it was downloaded from Firefox simply masks its original server yzudea.blu.livefilestore.com.
    As for your last query about your recipients downloading the file without the hassle of renaming it from a .zip file, you can simply tell them to download it through Internet Explorer.
    Should you have other queries or additional information that might help in our investigation, I highly encourage you to post them here.
    Regards,
    Michelle
    MDSms replied on
    Michelle,
    Thanks for your reply. Yes, I could simply tell them to download the file through Internet Explorer, but is there another solution or workaround to the problem I have described here? Am I being punished with the curse of this problem simply because I (or the individuals with which I wish to share FILE.jar with) choose to use Firefox instead of IE? Will the use of any other browser instead of IE (Chrome, Safari, etc., etc.) still result in the same problem?
    You stated that it is "solely dependent on the browser that you are using since they have a different safety/security measure that needs to be implemented"........could the problem be overcome by designating one or both of the file server addresses as Trusted Sites within the browser options setting?
    I look forward to your response. Thanks in advance.
    Joy V. replied on
    Forum Moderator Community Star Community Star
    Reply
    Hi MDSms,
    We understand your concern. Since the issue does not occur in Internet Explorer, it has something to do with Firefox's security feature. You might want to verify this concern by contacting Firefox support.
    Hope this helps. Let us know if we can further assist you with SkyDrive.
    Thanks,
    Melanie Joy

    Try to delete the mimeTypes.rdf file in the Firefox profile folder to reset all file actions.
    *http://kb.mozillazine.org/mimeTypes.rdf
    *http://kb.mozillazine.org/File_types_and_download_actions#Resetting_download_actions

  • Mail 'not downloaded from the server'

    Recently, I have been getting the message
    "The message from Xxxxxxx (this is my account name) concerning “Xxxxxxxx (subject of the message)” has not been downloaded from the server. You need to take this account online in order to download it."
    This happens whenever I try to open old mesages, sent or received. But usually only happens after the program has been working fine for a few hours!
    If I quit Mail and restart it, all is OK for a while. But it usually happens again.
    Can anyone offer a solution, please?
    Very many thanks!

    Mike,
    In addition, the followup if you are using Mail 1.3, and the statement that this message is almost certain to be caused by an Overstuffed Mailbox, typically caused by size and large numbers of messages of diverse types is to see:
    http://discussions.apple.com/thread.jspa?threadID=121837
    and the important link it contains of:
    http://docs.info.apple.com/article.html?artnum=25812
    There are a few conditions caused by files that might not be needed, if any were leftover from Jaguar's mailbox structure, but somewhat rare. After you read these, let me know what you find, and any questions you may have.
    Ernie

  • A Twist on (this e-mail) has not been downloaded from the server.

    So I've read the discussions on the following message in MAIL
    The message from [email protected] concerning “Re: blah has not been downloaded from the server. You need to take this account online in order to download it.
    But here's my issue - the ONLY e-mails in my POP account that have this message are between myself and one other person. All other e-mails from the same time period, and in fact everything in my POP account is normal except for messages I sent to and received from this person. I don't want to get into the specifics, but I have several good reasons PRIOR to discovering this to believe that my communication with this person was being monitored. If I didn't have these doubts from before as well as the fact that ONLY this correspondence is tainted, I wouldn't be so curious.
    Is it possible that this "download from server" message indicates that some other party was reading these messages? I was not in the US during this exchange - but rather in a country which does poke around quite a bit. I don't mean to sound dramatic or paranoid - but it is awfully strange and suspect.
    thanks.
    (i don't think this is a problem with Tiger or OS X or whatever - as it only applies to this correspondence)

    What does "being monitored" mean?
    In Mac OS X 10.4 (Tiger), that error message means there is some mismatch between what Envelope Index says there is in a mailbox and what there really is.
    The only way I can currently think of those messages being monitored could have a bearing on this is that someone had access to the *.emlx files stored locally on your disk.

  • How do I open a site in Muse that has already been downloaded from our server to my harddrive.

    Ho do I open a site in Muse that has already been downloaded from our server to my hardrive?

    Muse can open .muse files only. Sites downloaded to your hardrive as HTML cannot be imported to Muse. Pages need to be designed in Muse in order to be saved as a Muse project that you can always publish to the web.
    Thanks,
    Vinayak

  • Authorware Web Player won't download from our server

    We have used the same code to download the 2004 web player
    successfully from our server since 2005. Recently however, during
    the download, the player starts, but it hangs at the point where
    the progress bar with the label "Loading Files" displays. This
    happens on a client pc that has no Authorware web player files in
    Downloaded Program Files, System32\Macromed\Authorwa, and Documents
    and Settings...\Authoware Web Player directories. We can download
    successfully to the same pc from the Adobe server. I'd appreciate
    very much any advice that the experts have.

    Any changes to your server? Not that I'd have any particular
    solution if
    so, but it's something to check into. Windows Server 2003
    needs MIME
    Types to be added...but missing those results in specific
    errors, I
    think, not just a freeze at the 'loading files' screen.
    Can other machines download from your server ok? Could it be
    something
    specific to this client machine?
    What browser on the client machine? Do any other browsers
    work?
    This problem has been linked to popup blockers in some
    situations. For
    some reason, popup blockers can prevent the web player from
    showing the
    security dialog, which tries to show before any content is
    actually
    loaded. Try turning off any blockers that may be present or
    adding your
    server location to the blocker 'allowed' sites.
    However, if that was the problem, I'd think it would occur
    while loading
    the player from both your server *and* Adobe's server.
    Erik
    bettymcm wrote:
    > We have used the same code to download the 2004 web
    player successfully from
    > our server since 2005. Recently however, during the
    download, the player
    > starts, but it hangs at the point where the progress bar
    with the label
    > "Loading Files" displays. This happens on a client pc
    that has no Authorware
    > web player files in Downloaded Program Files,
    System32\Macromed\Authorwa, and
    > Documents and Settings...\Authoware Web Player
    directories. We can download
    > successfully to the same pc from the Adobe server. I'd
    appreciate very much
    > any advice that the experts have.
    >
    Erik Lord
    http://www.capemedia.net
    Adobe Community Expert - Authorware
    http://www.adobe.com/communities/experts/
    http://www.awaretips.net -
    samples, tips, products, faqs, and links!
    *Search the A'ware newsgroup archives*
    http://groups.google.com/group/macromedia.authorware

  • Sent Mail says "_____ has not been downloaded from the server."

    One of my users tells me that her sent mail witch she refers to often says, "The message from user name <email address> concerning “Kalimba Co.” has not been downloaded from the server. You need to take this account online in order to download it." (The account is online, sending and recieving is not a problem)
    I have read some other related issues and found that mail usually only holds 1GB in the sent folder and she had 6k emails (1.74GB) in this folder which I deleted and the problem is still not solved. I saw where a third party script was used in the related issue but that is not the route I want to go. Yor're help is greatly appreciated.

    This might be a Tiger issue. You probably have upgraded tot 10.4 recently or installed firmware.
    Before doing anything else... (like removing account, or shuffling messagefiles and the like) you might want to try this..
    http://docs.info.apple.com/article.html?artnum=303803
    This article describes how to reindex Mail by removing Envelopindex file from your home/library/mail/ folder.
    It worked great for me.
    Eventhough gmail is pop account, removing indexfile "Envelopeindex" (moved to desktop) was good enough. A dialoguebox will tell you that new Tiger functions need this reindexing.
    I hope this works for you as well.
    Regards

  • "mail has not been downloaded from the server" messages......

    About 2 weeks ago I started seeing "mail has not been downloaded from the server" messages popping up when I attempt to both new mail and e-mails that I have already read. I usually don't have any problems when I first launch the program, but after a few minutes running I get this message when I try to open any e-mail.
    The message from "---" <[email protected]> concerning “RE: S8-04 pps sample package” has not been downloaded from the server. You need to take this account online in order to download it.
    I know that the program is running online because it continues to show me new e-mails that come in.
    What should I do?

    Your OS detail provided indicates you are running 10.4.7 and Sasso's OS detail provided is 10.3.9.
    The MBOX Breaker script does not work with Tiger mailboxes which are different from the mailbox structure used with previous Mail.app versions and the link you provided includes instructions for Jaguar or Panther Mail, not Tiger Mail. And depending on the size of the mailbox with Jaguar or Panther Mail, the MBOX Breaker Script may not be required.
    If you are getting this message with Tiger Mail, this indicates you upgraded to Tiger from Jaguar or Panther on this Mac.
    If so and if this Sent mailbox is for a POP type account, using the Finder go to Home > Library > Mail > this POP account named folder (named by the user name and incoming mail server for the account) > Sent Messages.mbox.
    List all file and folder names available within the Sent Messages.mbox folder.

  • After "restore," how do I get the messages "downloaded from the server?"

    I restored my entire mail folder, after I accidentally deleted it. It has restored the message headings, but every message (when I click on the heading) gives me a message that says "The message from "name of person" has not been downloaded from the server. You need to take this account online in order to download it." I have no idea what this means, as I am connected to the internet all the time. Can someone help? This is an important file for me.
    Sylvia

    My Mail program is a .Mac account, so it is an IMAP, I believe.
    O.k, this is what happened: In Mail 2.1.3, I tried to rename a file, and it didn't like that and did some funny things, so I deleted what I thought was a duplicate file by the same name. Then everything was gone. I restored it using Backup 3.1.2, but it wouldn't finish restoring to the original places, as it said that the "archive was busy...etc." I then went online to this site: http://support.apple.com/kb/TS1158 and followed the directions for an incremental "restore."The backup was now in a folder on my desktop. The article did not tell me what to do with these restored items after I had them on the desktop so I tried to drag and drop one of the smaller folders into Mail on the Hard Drive, but that didn't work to put them in the mail program on my desktop. I then followed a similar story line (from you, actually) on April 3 in which you gave directions to "Nanbirder." I followed those directions, and then the message headings were imported by Mail, but not the messages, and here we are with this mess.
    I hope you can help me with this; it's a nightmare!!

Maybe you are looking for

  • External hard-drive disappeared after dragging into Spotlight

    Dear users, My external hard-drive under devices  disappeared after I dragged it into Spotlight to reindex it to make it searchable. There was a cloud puff animation when i dragged it from the devices icon on the left of folders to the spotlight priv

  • Sharing photo library w/ other user "error"

    I have shared my iPhoto library with another use on my computer. Everything appears to be working ok, except I am getting the following error message: "An error occurred while trying to save your photo library. Some recent changes may be lost. Make s

  • F4 help in oops - URGENT

    How to add standard  F4 help to alv grid using oop's concept

  • Managing Thousands of Images II

    I'm still new to Aperture, though I've read through the tutorial and played with it a bit. I'm going to be working with thousands of images of plants and animals associated with a particular website and would like to figure out how to manage them. I'

  • Firefox very slow on Windows 7

    I was a Mac user with Firefox and was exceptionally happy. I changed over to a Windows 7 machine and loaded Firefox to continue my happiness with Firefox. I made Firefox my default. Unfortunately I find the current Firefox for Windows 7 to be problem