Ask a Question related to Macromedia Flash Data Integration, Design and Development.

  1. #1

    Default xml.send to asp

    This probably isn't the right forum for this, but I can't find an answer
    anywhere else.

    I have a swf that is sending an xml document using xmlObj.send and POST, but
    in the asp document I cant figure out how to get the information and
    Request.Form isn't working

    Does anyone know how to do this? Thanks

    Clukey Guest

  2. Similar Questions and Discussions

    1. send data and then alter it after send
      when attaching data using send, to a published video...is it then possible to alter this data? ie: if a title for the movie was attached using...
    2. Want to send the var to jsp
      Hi i am very new to Flex so please help me! i have login page in flex ..if i click the submit button i want to send the two variable to java how...
    3. Does Socket.send send all bytes?
      Does ruby's Socket.send send all bytes at once, or does one have to keep count of bytes sent and repeat sending until all are sent (a la C etc)?
    4. Send to
      How do I put programmes(Norton wipeinfo)onto my right click Send to list?? Sorry if this is a bit simple,but I can't find it in Help.
    5. Net send pop-ups
      Ian <> wrote: Advice on Popups and their elimination: http://www.fracas.net/newsgroups/generaladvice.html#popups or http://tinyurl.com/el9s ...
  3. #2

    Default Re: xml.send to asp

    Also, GET works with unescape(Request.QueryString), but I can't find the request anywhere with POST
    Clukey Guest

  4. #3

    Default Re: xml.send to asp

    The thing is the XML object in flash does not throw the POST parameters in a
    var=value pair format. You'll need to find a way to acces the raw data sent to
    the browser. I know how to do this in php but not in asp (I'm sure there is a
    way).

    Cheers,
    Gorka
    [url]http://www.AquiGorka.com/blog[/url]

    Gorka Ludlow Guest

  5. #4

    Default Re: xml.send to asp

    Well, I've been told that raw POST data should come in Request.Form but for
    some reason it's not there, and I'm sure there is a way to do it but the only
    way I have found with POST is to use Request.BinaryRead(Request.Totalbytes),
    but thats binary, and I can't write binary data to a file, so it doesn't work
    for me.

    Clukey Guest

  6. #5

    Default Re: xml.send to asp

    I have found a function that make exactly what you want. You can see it here: http://www.bigresource.com/Tracker/Track-asp-faIPqjs1/
    You have to press "View Complete Forum Thread with Replies" button to see the function

    Regards



    Quote Originally Posted by Clukey View Post
    Well, I've been told that raw POST data should come in Request.Form but for
    some reason it's not there, and I'm sure there is a way to do it but the only
    way I have found with POST is to use Request.BinaryRead(Request.Totalbytes),
    but thats binary, and I can't write binary data to a file, so it doesn't work
    for me.
    Viti 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