I have recently started using Flash Builder and the Flex SDK. I am currently working with XML. I am able to read XML into a List perfectly using the following code:
<s:HTTPService id="myXML" url="http://www.mywebsitename.com/appdata/Apps.xml"/>
<s:List id="myList" x="58" y="127" width="205" height="133" textAlign="center" dataProvider="{myXML.lastResult.JacobsApps.Name}"></s:List>
The problem that I am having is writing to the XML. I need to use HTTPService, or a similar service that uses URLs to write to the XML file.