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 - 28 Aug 2007 23:02 GMT
Also, GET works with unescape(Request.QueryString), but I can't find the request anywhere with POST
Gorka Ludlow - 30 Aug 2007 15:26 GMT
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
http://www.AquiGorka.com/blog
Clukey - 30 Aug 2007 18:09 GMT
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.