service = new HTTPService(); service.method = "POST"; service.url = "SomeASPpage; service.resultFormat="e4x"; service.send(xmlData);
What exactly is available on the server?
Does Flex do HTTP Submit? Does it create Form collection?
Where in the docs I can take a look for this?
Can I do this on the server:
loObjDom = CREATEOBJECT("Msxml2.FreeThreadedDOMDocument")
loObjDom.load(Request) which should give me my xml data?
Where Request is the IIS Request Object.
Thanks for any help.

