Thanks, yes I have used them that way before and it would work similarly.  I 
read my webservice and I posted it incorrectly..oops! apologies...so the part 
that confuses me is the complex object part...where you see the web service 
says "zero or more repetitions"...so if I did it in AS how would I send the 
parameter so the operation knows how to resolve which parameter belongs to 
which...sorry that sounds confusing even as I type it.

so..
webservice.removeDVRRecording.send(extID, recordID, recordTitle) 
Where recordID and recordTitle could be repeated many times

<mx:operation name="removeDVRRecording"
fault="showFault(event);showError(event)">
<mx:request>
<RemoveRequest accountExternalId="{accountVuExtId}">
<RemoveRecording>
<recording recordingEventId="{accountVuRemRecordings}"/>
<!--Zero or more repetitions:-->
<recording id="" title=""/>
</RemoveRecording>
</RemoveRequest>
</mx:request>
</mx:operation> 


Thanks again for any thoughts on this...
Jenn


--- In [email protected], Hans Wichman <li...@...> wrote:
>
> Hi Jenn,
> 
> this might be related to something completely different, but if you import
> mx.rpc.soap.WebService and create it manually you can simply call the method
> on it with all the parameters you want without using mxml. Is that what you
> mean?
> 
> regards
> Hans
> 
> On Tue, Jun 8, 2010 at 7:34 PM, flexnewbie06 <flexnewbi...@...> wrote:
> 
> >
> >
> > Hi group.
> >
> > I'm using flex data services (sdk 2.0) and wondering if anyone has ever
> > tried to set up operation parameters pro grammatically? I can't seem to
> > figure out how one would do so without specifically binding to some
> > variable.
> >
> > for example here is the service operation.
> >
> > <mx:operation name="removeDVRRecording"
> > fault="showFault(event);showError(event)">
> > <mx:request>
> > <RemoveRequest accountExternalId="{accountVuExtId}">
> > <RemoveRecording>
> > <!--Zero or more repetitions:-->
> > <recording recordingEventId="{accountVuRemRecordings}"/>
> > </RemoveRecording>
> > </RemoveRequest>
> > </mx:request>
> > </mx:operation>
> >
> > Is it possible to append elements into the children of the service? Or
> > maybe there is a better approach.
> >
> > Suggestions Greatly appreciated
> > Jenn
> >
> > 
> >
>


Reply via email to