Hiya flexcoders Trying to pass values to a SOAP request. Having some fun :-)
Working with <mx:WebService> - got it working by placing the SOAP request inside of the <mx:request> tag and adding the namespace in mx:application- xmlns:typ="http://ruleburst.com/ruleserver/9.1/rulebase/types" (code @ EOM ) However when I try to dynamically pass selectedItem to the <mx:request> they don not come through. I'm aware of adding values to the <mx:request> ie. <mx:operation name="getList"> <mx:request> <q2>{dept.selectedItem.data}</q2> <q5>{dept2.selectedItem.data}</q5> </mx:request> </mx:operation> but keep getting an end of file error. Question is how do I turn the SOAP request into and <mx:request> request? Thanks in advance rgds martin <mx:request format="xml"> <typ:assess-request> <typ:session-data> <typ:list-entity entity-type="global"> <typ:entity id="global_1"> <typ:attribute-outcome id="LL" outcome-style="attribute-only"/> <typ:attribute-outcome id="LC998" outcome-style="attribute-only"/> <typ:attribute-outcome id="AssessmentLevel" outcome-style="attribute-only"/> <typ:attribute-outcome id="ProcessingTime" outcome-style="attribute-only"/> <typ:attribute id="Q2"> <typ:text-val>"GERM"</typ:text-val> </typ:attribute> <typ:attribute id="Q5"> <typ:text-val>"GERM"</typ:text-val> </typ:attribute> <typ:attribute id="XYZ988"> <typ:boolean-val>true</typ:boolean-val> </typ:attribute> </typ:entity> </typ:list-entity> </typ:session-data> </typ:assess-request> </mx:request>

