Hi there,

I need to provide multiple attributes in the same webservice request
from Flex. Something like:

<mx:operation>
 <mx:request>
   <param attrib1="value1" attrib2="value2">paramValue</param>
 </mx:request>
</mx:operation>

The issue is, all the attributes, attrib1 and attrib2 seem to be
overridden with the value (paramValue in this case) of the element
itself, so that the outgoing request is:

<mx:operation>
 <mx:request>
   <param attrib1="paramValue" attrib2="paramValue">paramValue</param>
 </mx:request>
</mx:operation>

..which is insane! Any ideas as to how should attribute values be
passed correctly?

Thanks!
Tarun


Reply via email to