[flexcoders] Populating mx:List from xml file

2007-03-28 Thread Thomas Newcomen
I have an xml file with nodes like this: templates label=Short Subject Report data=ShortSubjectReport / I have this as the dataprovider of the mx:List: dataProvider={report_listXML.templates} The list appears to be populating, as I can see the coloring as I hover over the items of the list,

Re: [flexcoders] Re: Posting XML with httpservice

2007-03-26 Thread Thomas Newcomen
the httpservice.send() function, try httpservice.send (xmlDocument) - and remove the mx:request tag from the MXML :D --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Thomas Newcomen [EMAIL PROTECTED] wrote: If I have contenttype of my httpservice set to application/xml and I have

[flexcoders] Posting XML with httpservice

2007-03-24 Thread Thomas Newcomen
If I have contenttype of my httpservice set to application/xml and I have a variable that contains an xml document (?xml ?blah.../blah) How do I just post that the service? this doesn't seem to work: mx:request {xmlDocument} /mx:request Any ideas? 'preciate it. Crit

[flexcoders] Trimming a request sent using mx:httpservice /

2007-03-23 Thread Thomas Newcomen
I have an application that is to post XML to a url and return a resultset as XML. When using a html form to post the xml, it has to be in a formfield named xml. When I attempt to debug the service call, it /looks/ as if the xml being sent contains nothing extra, but I keep getting the response

[flexcoders] Non-Required attributes in a class..

2007-02-25 Thread Thomas Newcomen
I am attempting to build a class file for use in flex and I have it as Products.as There are several attributes that can be passed in, but are not required. How do I write the class file for arguments that are not required. I currently have 50 arguments, but do not need to use all of them.. Do