Esteemed fellow listers:
I need to pass an XMLCollection as a parameter to a JSP or Servlet
I have used a Datagrid to organize the information , and I need to pass
the new data in the DataGrid to a JSP or Servlet.
<mx:XMLListCollection id="*XML_Grupos*" ...../> // Has the data from the
DataGrid
<mx:HTTPService id="serviceJSP" url="Diagrama.jsp" resultFormat="e4x"
showBusyCursor="true"
fault="Alert.show(event.fault.faultString), 'Error'"
result="Alert.show(event.toString())">
<mx:request>
<quien>flex</quien>
<Grupos>{*XML_Grupos*}</Grupos>
</mx:request>
</mx:HTTPService>
A button which calls *serviceJSP.send(**) *is used to send the data
The parameter "quien" is received without any problem by the JSP
But the parameter "XML_Groups," I can't receive or work with the data.
The communication with the JSP is working OK, but the Array String[]
"Grupos" in the JSP does not contain the information sent by Flex.
I need to do this with HTTPService because I don't want to use FDS
because of the license (because the client has a 2-processor server),
and because I also don't want to buy FDS.
I'm coming to you all because I couldn't find anything about this in the
Adobe docs.
Thanks...
Pablo Dario Ingelhorn
Ingelhorn Sistemas
(6303) Toay - La Pampa - Argentina