i’m loading some xml (from a webservice) into my flash movie. it’s working but the xml is turning out like this:
<?xml version="1.0" encoding="utf-8"?><string xmlns="http://www.webserviceX.NET/"><StockQuotes><Stock><Symbol>IBM</Symbol><Last>76.16</Last><Date>6/3/2005</Date><Time>2:21pm</Time><Change>-1.19</Change><Open>77.06</Open><High>77.10</High><Low>75.92</Low><Volume>4204400</Volume><MktCap>122.9B</MktCap><PreviousClose>77.35</PreviousClose><PercentageChange>-1.54%</PercentageChange><AnnRange>71.85 - 99.10</AnnRange><Earns>5.001</Earns><P-E>15.47</P-E><Name>INTL BUSINESS MAC</Name></Stock></StockQuotes></string>
<StockQuotes><Stock><Symbol>IBM</Symbol><Last>76.16</Last><Date>6/3/2005</Date><Time>2:21pm</Time><Change>-1.19</Change><Open>77.06</Open><High>77.10</High><Low>75.92</Low><Volume>4204400</Volume><MktCap>122.9B</MktCap><PreviousClose>77.35</PreviousClose><PercentageChange>-1.54%</PercentageChange><AnnRange>71.85 - 99.10</AnnRange><Earns>5.001</Earns><P-E>15.47</P-E><Name>INTL BUSINESS MAC</Name></Stock></StockQuotes>
notice the <>'s are missing after the first two nodes. If i use my browser to type in the URL of the webservice and pass a variable the xml source looks perfect!!!
never seen this before has anyone else?