Upload, yes ... but  download ?

Hello to everybody:
I have seen the sample to upload a file from the client browser to middle tier (server). But I would need to download a file (or data from the Form screen) from the form (running in the server) to a disk in the client, the reverse.
Is it posible ?
Note: I4m using forms 6i and I know that the client package TEXT_IO donsn4t work in Web
Thank you in advance
Hernan

Two options:
1) Take the code in the upload sample and reverse it so that the transfer works in the other direction
2) Use Web.Show document to point the browser at the file you want to download on the middle tier - the browser will normally prompt you with a Save dialog - this is what most people do. WIth Jinitiator 1.3 you can even specify ftp:// urls as well as http:// urls

Similar Messages

  • Zen touch: upload yes, but downlo

    hi,
    i want to buy a zen touch 20gb device. i've read something about it on the net, but there's one question left:
    . can i transfer files from my player back to my pc?
    2. can i transfer audio files only or are all filetypes possible?
    thanks
    cyte

    Provided the songs aren't protected, then yes you can transfer them back to the PC aswell. Some songs, like ones you might buy online in WMA format, have protection on them that won't allow them to be copied from the player again.
    You can copy data files to the player aswell, but you will need to do this through software (included on the CD and the web).
    Cat

  • Slow Upload but Download is OK

    Dear Verizon,
    I have been experiencing slow Upload Speeds (<.1mbps) but Download is OK for the last 6 months or more. I have been on countless screen share sessions and have talked with expert technicians over this time. I have followed all suggestions and troubleshooting. I have tried four different modems, including one that I purchased at your recommendation, from Verizon. I have performed virus scans using two different antivirus programs, and spyware scans. My computer is a new i5 with lots of RAM, and I am running Windows 8. I have tried three different web browsers.
    Below, please find a copy of a forum post by a person having a problem identical to mine. Please note that it was determined that the problem was "a fault at the exchange." Also please note that a technician who has seen this problem suggested "ask BT to connect your line to a new "slam" dedicated to your "subscribed speed". That should cure the problem."
    Thank you!
    {edited for privacy}
    https://community.bt.com/t5/ADSL-Copper-Broadband-Speed/Slow-upload-speed-but-download-fine/td-p/419...

    Your issue has been escalated to a Verizon agent. Before the agent can begin assisting you, they will need to collect further information from you.
    Please go to your profile page for the forum, and look in the middle, right at the top where you will find an area titled "My Support Cases". You can reach your profile page by clicking on your name beside your post, or at the top left of this page underneath the title of the board.
    Under “My Support Cases” you will find a link to the private board where you and the agent may exchange information. This should be checked on a frequent basis as the agent may be waiting for information from you before they can proceed with any actions.
    To ensure you know when they have responded to you, at the top of your support case there is a drop down menu for support case options. Open that and choose "subscribe".
    Please keep all correspondence regarding your issue in the private support portal.

  • TS1702 any app I download from the app store doesn't open. after I finished downloading the app I tap it to open but it crashes as soon as i finish downloading it. yes, the downloading process works but any app I download won't launch. pls help

    any app I download from the app store doesn't open. after I finished downloading the app I tap it to open but it crashes as soon as i finish downloading it. yes, the downloading process works but any app I download won't launch. pls help

    Hi,
    Install the v10.6.6 combo update available here. It's ok to do this even though you are already running v10.6.6. The combo includes fixes that were not included in the original update.
    http://support.apple.com/kb/DL1349
    Restart your Mac and try the MAS again.
    You can download apps directly from the MAS once you have it running.
    Considering the TM backup took so long, make sure there's enough space on your Mac startup disk.
    Right or control click the MacintoshHD icon. Click Get Info. In the Get Info window you will see Capacity and Available. *Make sure you always have a minimum of 15% free disk space.*
    Carolyn

  • Every tune in my library is marked with an explanation mark and produces a report " The song ..... could not be used because the original file could not be found. Would you like to locate it?"  Probably yes - but how ?

    Every song in my library, both purchased or downloaded from a CD, is marked with an exclamation mark and produces a report " The song ......... could not be used because the original file could not be found.  Would you like to locate it ?"     Well, probably yes - but how ? and why necessary ?  HELP !

    It would help to have more background about your iTunes collection such as if you keep it on an external drive, or if you have moved or renamed anything recently.  iTunes is very sensitive to you renaming or moving files or folders involved with your media.  iTunes only keeps a reference to where a media file is located  and then goes to look for it when you try to play it. If you have changed things since it was added to itunes then it's like me sending you to look for a friend in my addressbook but that friend has moved.
    The other possibility is your computer is starting to lose files.  Again, the computer uses a reference database to tell it where on the drive to look for a file. If that database gets corrupt then it starts losing files.  Use Dsk Utility's first aid to verify your hard drive.

  • Making Upload/Ws_Upload and Download/Ws_Download unicode compliant.

    Hi Guys/Dolls
    We're in the process of making our SAP ERP2005 system unicode compliant and when I run the uccheck transaction on a program I'm getting the following message:-
    Upload/Ws_Upload and Download/Ws_Download are obsolete, since they are not Unicode-enabled; use the class cl_gui_frontend_services.
    Can somebody give me the correct unicode translation for the following code:-
    * Download Column Headings interactively
    MOVE ' ' TO V_CANCEL.
    CALL FUNCTION 'DOWNLOAD'
        EXPORTING
             CODEPAGE            = 'IBM'
    *         FILENAME            = ' '
            FILETYPE            = 'DAT'
    *         ITEM                = ' '
    *         MODE                = ' '
    *         WK1_N_FORMAT        = ' '
    *         WK1_N_SIZE          = ' '
    *         WK1_T_FORMAT        = ' '
    *         WK1_T_SIZE          = ' '
    *         FILEMASK_MASK       = ' '
    *         FILEMASK_TEXT       = ' '
             FILETYPE_NO_CHANGE  = 'X'
    *         FILEMASK_ALL        = ' '
    *         FILETYPE_NO_SHOW    = ' '
    *         SILENT              = 'S'
             COL_SELECT          = 'X'
             COL_SELECTMASK      = V_MASK
         IMPORTING
             ACT_FILENAME        = V_FILENAME
    *         ACT_FILETYPE        =
    *         FILESIZE            =
             CANCEL              = V_CANCEL
         TABLES
              DATA_TAB            = I_H1
    *         FIELDNAMES          =
         EXCEPTIONS
              INVALID_FILESIZE    = 1
              INVALID_TABLE_WIDTH = 2
              INVALID_TYPE        = 3
              NO_BATCH            = 4
              UNKNOWN_ERROR       = 5
              OTHERS              = 6.
    I have had a look at   CALL METHOD cl_gui_frontend_services=>gui_download
    but there doesn't seem to be a match for match on the fields - can any of you guru's assist.
    Above code translation would be most appreciative.
    Many thanks in advance.
    Raj

    Hi Raj,
    Replacement Method and FM:   CL_GUI_FRONTEND_SERVICES=>FILE_SAVE_DIALOG and GUI_DOWNLOAD.
    Example:
    *CALL FUNCTION 'DOWNLOAD'
              EXPORTING
                   FILENAME            = SPACE
                   FILETYPE            = u2018DATu2019
              TABLES
                   DATA_TAB            = T_DOWNL
              EXCEPTIONS
                   INVALID_FILESIZE    = 1
                   INVALID_TABLE_WIDTH = 2
                   INVALID_TYPE        = 3
                   NO_BATCH            = 4
                   UNKNOWN_ERROR       = 5
                   OTHERS              = 6.
    *End of deletion CH01-
    Replacement Method for above code:
    DATA: l_filename    TYPE string,
           l_filen       TYPE string,
           l_path        TYPE string,
           l_fullpath    TYPE string,
           l_usr_act     TYPE I.
    l_filename = SPACE.
    CALL METHOD CL_GUI_FRONTEND_SERVICES=>FILE_SAVE_DIALOG
      EXPORTING
        DEFAULT_FILE_NAME    = l_filename
      CHANGING
        FILENAME             = l_filen
        PATH                 = l_path
        FULLPATH             = l_fullpath
        USER_ACTION          = l_usr_act
      EXCEPTIONS
        CNTL_ERROR           = 1
        ERROR_NO_GUI         = 2
        NOT_SUPPORTED_BY_GUI = 3
        others               = 4.
    IF sy-subrc = 0
          AND l_usr_act <>
          CL_GUI_FRONTEND_SERVICES=>ACTION_CANCEL.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
        FILENAME                        = l_fullpath
       FILETYPE                        = 'DAT'
      TABLES
        DATA_TAB                        = T_DOWNL
    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.
    Thanks
    Sudharshan

  • On my first generation I pad I want to upload apps but they just delete straight away! Please help

    On my first generation I pad I want to upload apps but they just delete straight away! Please help

    App Store: Downloading Older Versions of Apps
    http://tinyurl.com/meqxplg
    App Store: Install the latest compatible version of an app
    http://support.apple.com/kb/ht5919
    Apple’s iOS App Store now offers ‘last compatible’ versions of apps for older devices
    http://appleinsider.com/articles/13/09/17/apples-ios-app-store-now-offers-last-c ompatible-versions-of-apps-for-older-devices
     Cheers, Tom

  • "to continue, type an administrator password, and then click yes" - yes but how?

    Hello,
    I have removed myself from the administrator group and would like to use the "run as" feature only when it is strictly required.
    Unfortunately it looks like it is not possible to use the Runas feature, if you are not member of the administrator group, as the prompt that appears shows the following message:
    ""to continue, type an administrator password, and then click yes" but you have no text field available to enter the required password ... am I missing something or is this a required behavior?
    Thanks for the help.
    Didier

    How to fix UAC can't enter password, UAC type an admin password bar missing or do you want to allow the following program to make changes to this computer? yes disabled on your admin account problem.
    First you need to create a backup on everything in your library to your hard drive by cut&past option.
    First restart your PC and tap F8.
    Now you have to run on safe mode and then start menue> type> CMD> click or enter.
    Now you have to type in CMD: NET USER ADMINISTRATOR /ACTIVE:YES
    NOw restart you PC and login as the built-in Administrator account
    Delete the account you have created, first download IObit UNLOCKER @ IObit.com and delete it with IObit unlocker,
    Now you have deleted your account you must create a new account and log off your built-in Administrator account.
    Now you have to go to your new account and Open CMD now type it again as NET USER ADMINISTRATOR /ACTIVE:NO
    you are done.

  • What is quick upload configuration for downloads?

    What is quick upload configuration for downloads?  I cannot get downloads to open because of the box popping up wanting some kind of configuration.

    I have the same question as nyswaner and have been using macs for the past 20 years. The problem just popped up recently. I can download but am unable to open the file. It asks for right clicking and selecting a favorite folder. Under Details (on the following screen) it asks for a Host, then wants a username and password. I'm having this problem on a home computer that is not connected to a virtual private network. I've been running Fusion5 (virtual machine) to comply with my organization's WindowsXP operating sytem, for a single application but deleted it as I can get the info now on my iPad and iPhone. Is there anybody out there who has the same problem and was able to solve it? The software I downloaded is for specific use with the Mac operating system and having to use a proprietary Windows browser to open Mac software can't possibly be true. BTW nyswaner, Parallels and Fusion are software applications that enable you to run Windows on your Mac computer in a "virtual machine"

  • When I turn my computer on I receive a message that Apple wants to make a change to the hardware. I click on yes but nothing happens. I think this has something to do with Apple "push". I had a problem with this in iTunes when I tried to sync my iPod Touc

    When I turn my computer on (Windows 7) I receive a message that Apple wants to make a change to the hardware. I click on yes but nothing happens. The change has something to do with Apple "push". I recently had a problem with"push" on iTunes when I tried to sync my iPod Touch. I have latest software for iTunes and iPod. Can anyone tell me what to do to get this change to install?

    ptford wrote:
    When I turn my computer on (Windows 7) I receive a message that Apple wants to make a change to the hardware
    Since hardware cannot be changed with software, perhaps you would be so kind as to post the exact wording of the message?

  • Iphone in recovery mode,i'm restoring and updating to itunes but download cannot be completed... my phone wont open, i can't even turn the power on.what to do? pls help

    iphone in recovery mode,i'm restoring and updating to itunes but download cannot be completed...
    my phone wont open, i can't even turn the power on.
    what to do? pls help
    (iphone 4  and  iphone 4s)

    So I just did this on my iPhone 4 and it worked like a charm it unlocked it immediately. My phone was put into recovery mode and I know that not all data is deleted it just puts the phone into a sort of hibernation in order for the files to stay uncorrupted. I went to http://www.recovery-ipad.com/iphone-stuck-in-recovery-mode.html  downloaded the software it unlocked my phone in a matter of minutes. Calls, messages, photos, apps, and voicemail was all there as if it never happened  If you leave it unregistered you don't have to pay for it works for either windows or mac. Hope this helps!

  • Hi all, I'm trying to download a film from iTunes onto my iPad but downloaded the HD version instead of SD and don't have the room to download it. Have removed everything I can to make space but still need another 1.2 GB. How can I delete it??

    Hi all, I'm trying to download a film from iTunes onto my iPad but downloaded the HD version instead of SD and don't have the room to download it. Have removed everything I can to make space but still need another 1.2 GB. Is there any way I can delete it so I can delete the version I wanted, or even better change to the SD version? The film is still queuing in the downloads list. I've tried edit and delete but that doesn't work. I also can't re-download the film from iTunes.
    Any suggestions very welcome!

    Try to connect in recovery mode, explained in this article:
    iOS: Unable to update or restore
    Before that, back up your device, explained here:
    iOS: Back up and restore your iOS device with iCloud or iTunes
    How to back up your data and set up as a new device
    You can check your warranty status here:
    https://selfsolve.apple.com/agreementWarrantyDynamic.do

  • I am new to IPhoto 9.5  and I think I missed a step. I uploaded pictures but they do not appear as an event in my library.  They are in Last imported only. How can I get them into event.

    I am new to IPhoto 9.51  and I think I missed a step when I uploaded my vacation pictures. I uploaded pictures but did not import them into the library.  They are in L\last imported only.  How can I get them into events?

    If the Photos are under 'Last Import' or 'Last N Months' then they are in the Library somewhere, just not where you are expecting them to be. We know this as both Last Import and 'Last N Months' are not places, just listings of elements in the the Library.
    The two most common reasons that they can't be found is either an incorrect date on the camera or the Sorting (View Menu -> Sort Photos - or Sort Events, as appropriate) has changed.
    Quick route to find them: Right-click on one of the images in Last Import and select 'Show Event'. This will bring you to the image in the Library.

  • I have bought a new computer . some of my songs on my i pod were not bought thru iyune but downloaded from cds how can i transfer ALL my music to the new computer with losing any of my songs

    i bought a new computer how can i get all my songs from ipod to new computer with out losing any of my music .  some of my songs where not bought from itune but downloaded from cds

    For non-iTunes purchases you need a third-party program like one of those discussed here:
    Recovering your iTunes library from your iPod or iOS device: Apple Support Communities

  • HT201263 iphone in recovery mode,i'm restoring and updating to itunes but download cannot be completed... my phone wont open, i can't even turn the power on.what to do? pls help

    iphone in recovery mode,i'm restoring and updating to itunes but download cannot be completed... my phone wont open, i can't even turn the power on.what to do? pls help

    So I just did this on my iPhone 4 and it worked like a charm it unlocked it immediately. My phone was put into recovery mode and I know that not all data is deleted it just puts the phone into a sort of hibernation in order for the files to stay uncorrupted. I went to http://www.recovery-ipad.com/iphone-stuck-in-recovery-mode.html  downloaded the software it unlocked my phone in a matter of minutes. Calls, messages, photos, apps, and voicemail was all there as if it never happened  If you leave it unregistered you don't have to pay for it works for either windows or mac. Hope this helps!

  • Can't download my copy of Acrobat IX Pro Teacher. I've paid for it, but downloading instruction is misleading

    Can't download my copy of Acrobat IX Pro Teacher. I've paid for it, but downloading instruction received by mail is misleading

    The Education version isn't any different than the regular version.  Try downloading it from here and then apply the serial number you were given.
    Download Acrobat products | Standard, Pro | XI, X

Maybe you are looking for

  • How can we take the cursor to a different sub-screen from the BADI?

    Hi, We have to do some validation on Header, Operation and Relationship of any work order (IW31, IW32). We have checked that validations can be done at BADI WORKORDER_UPDATE in the method u2018AT_SAVEu2019.  But user wants us to take the Cursor back

  • Connectivity Problems with Cisco WRT610n

    I've recently started to get problems with the wireless connection to my WRT610n wireless router.  The mac drops the internet connection periodically - 3 or 4 times a day.  I've run both iStumbler and WIFi analyser and it doesn't seem to be the wirel

  • Problem with Associations

    I'm trying to build a simple prototype of our application using JDeveloper (9.0.3.10.35). I've started by building a set of entities to represent our core business. I'm trying to use the automagic BC4J application wizards to create a simplistic proto

  • Object id for opportunity is created  through se38 but that object id doesnt exist in sap crm webui

    Hello All,,   i am creating  an opportunity from report program (se38) using fm bapi_opportunity_createmulti. object id is  created successfully without any error . but that object id does not exist when i am giving that object id to sap crm . please

  • How to add stop button in this code AS3

    Hello, im new to this adobe flash AS3. i want to create a simple play sound using flash + XML file for wbesite., this is my code all this code are working greate.. but i have the problem to add stop_btn code my playlist button already have pause, pre