<body>BODY1></body>
<body>BODY2></body>
<body>BODY3></body>
There are too many > in these tag nodes. This would lead to malformed XML
and Flash would probably parse incompletely.
Here is a stripped ASP file (I used Javascript but it should work with
VBScript) that returns the XML you posted. I used it in a Flash movie and
all entry nodes are returned.
<%@ language = "JScript" %>
<%
/*----------------------------------------------------------------------
Define response data as xml
---------------------------------------------------------------------*/
Response.ContentType = "text/xml";
/*----------------------------------------------------------------------
Build XML in a variable
---------------------------------------------------------------------*/
returnXML = "<gb>";
returnXML += "<entry><name>NAME1</name><body>BODY1</body></entry>";
returnXML += "<entry><name>NAME2</name><body>BODY2</body></entry>";
returnXML += "<entry><name>NAME3</name><body>BODY3</body></entry>";
returnXML += "</gb>";
Response.write(returnXML);
/*----------------------------------------------------------------------
Force all data responses back
---------------------------------------------------------------------*/
Response.flush();
/*----------------------------------------------------------------------
Terminate any further responses
---------------------------------------------------------------------*/
Response.end();
%>
--
Lon Hosford
www.lonhosford.com May many happy bits flow your way!
[quoted text, click to view] "kko_k" <webforumsuser@macromedia.com> wrote in message
news:dou1t5$kcm$1@forums.macromedia.com...
Yes, that's correct!
Instead of
<gb>
<entry><name>NAME1</name><body>BODY1></body></entry>
<entry><name>NAME2</name><body>BODY2></body></entry>
<entry><name>NAME3</name><body>BODY3></body></entry>
</gb>
I only see
<gb>
<entry><name>NAME1</name><body>BODY1></body></entry>
</gb>