Hello, I have to call a servlet and give it a variable number of parameters, example:
<a>22<a/><b>33<b/><c>444<c/>
or
<a>222<a/><z>233<z/>
I suppose it will be possible in AS3 doing somthing like :
srv.send("an XMLList with my parameters");
but it seems don't works!
the mxml of the HTTPService is the following:
<mx:HTTPService
id="execute"url="http://localhost:8080/prototype2/GetExecute"
method="GET"
useProxy="false"
resultFormat="e4x">
</mx:HTTPService>
Can someone help me?
thanks Lorenzo

