Can't answer the question, but can provide a poor translation with what
little Spanish I now remember:

Estimados Listeros:
Esteemed fellow listers:

Necesito pasar un parámetro XMLListCollection por HTTPService a una JSP o
Servlet.
I need to pass an XMLCollection as a parameter to a JSP servlet

He utilizado un DataGrid, para el manejo de la información, y luego necesito
pasar los nuevos datos (XMLListCollection id="XML_Grupos) del DataGrid a un
Servlet o JSP.
I have used a Datagrid to organize the information [tr:I think] and I need
to pass the new data in the DataGrid to a JSP servlet.

<mx:XMLListCollection id="XML_Grupos" ...../> // Tiene los datos del
DataGrid.
                                                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>

Por medio de un Button envío los datos serviceJSP.send()
A button which calls serviceJSP.send() is used to send the data

El parametro <quien> lo recibo sin ningún problema en la JSP,
JSP:...
request.getParameter("quien");
The parameter "quien" is received without any problem by the JSP

Pero el parametro <Grupos>{XML_Grupos}</Grupos>, no lo puedo recibir, ni
trabajar con los datos.
JSP:....
String[] Grupos=request.getParameterValues("Grupos");
But the parameter "XML_Groups," I can't receive or work with the data.

La comunicacion con la JSP me da OK., pero el Array String[] Grupos en la
JSP no contiene la información enviada por Flex.
The communication with the JSP is working OK, but the Array String[]
"Grupos" in the JSP does not contain the information sent by Flex.

Necesito hacerlo por HTTPService, dado que no deseo utilizar FDS por motivos
de licencia, dado que el cliente tiene un Servidor con 2 Procesadores, y por
lo tanto debería de adquirir FDS.
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.

Recurro a Uds. dado que en la documentación de Adobe (devguide.PDF) no
encontre nada sobre esto.
I'm coming to you all because I couldn't find anything about this in the
Adobe docs.

Muchas Gracias por todo.
Thanks...

Reply via email to