How to send files to client

Ask a Question related to Macromedia Flex General Discussion, Design and Development.

  1. #1

    Default How to send files to client

    Hi,

    Does anyone know how to send a file to the client from Flex. My scenario is
    this:
    1) Pass some parameters to java layer
    2) Java layer processes the results and saves them in PDF format (in memory)
    3) Byte data from PDF is passed to Flex layer
    4) Send bytes to client

    I was able to do (4) in a JSF view by writing to the response stream, is there
    a similar method in Flex?

    Thanks in advance,
    Vackar

    Vackar Guest

  2. Similar Questions and Discussions

    1. Cannot send multiple SMS on two client simulators
      Hi there, i am trying to run the example on the help file on how to send multiple sms (using 'submitMulti'). It is supposed to echo back the message...
    2. How to actively 'send' web pages to client browser
      Does anyone know if a way to deliver web pages to an end-client using a push method that can be controlled from your PC (by clicking on a page menu...
    3. HOWTO: Send Secure Data To Client Using SSL
      I've sent private data back to the IIS by implementing the web page reference to HTTPS, but how can secure data be sent to the client computer over...
    4. how to actively send html to client browser?
      Does anyone know if a way to deliver web pages to an end-client using a push method that can be controlled from your PC (by clicking on a page menu...
    5. send page to client when session expires
      A client-side timer fires and does the page redirect - you can't do it from global.asa since there is no page request context to redirect.with when...
  3. #2

    Default Re: How to send files to client

    one easy way would be to write the file on the server file system and class FileReference.download() method passing the path that file.
    atta707 Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139