Do you need to treat it as XML from within ColdFusion? If not, you could treat the XML as a long string and parse it manually to a large CF structure containing structures and arrays.
Alternatively, can you treat it as a string and use <cfxml> to turn it into an XML object rather than using XMLParse(). XMLParse() is a bit of a dog. Not sure why, but it's way slower than Xerces. Speaking of which, is there any way you could use that instead of CFMX to do the XML handling in your application? Spike > -----Original Message----- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf > Of Scott Barnes > Sent: 07 March 2003 15:42 > To: CFAussie Mailing List > Subject: [cfaussie] Re: Consuming Large mofo XML Packets > > > Around 800 rows of data, with around 10 nested nodes within > each.. probably more, at first glance. > > I can't change the results packet (why do people always > assume the solution is to change the problem? how about > solving the problem instead of asking for more?) .. its from > a data warehouse, so i have to suck it up and accept it like > the cold fish i am. > > Its the results of a webservice call. > > Scott > "Steve Baty" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > > > Scott, > > > > Could you define "large" for me? Just so we have an idea > exactly what > > you're trying to deal with... > > > > Cheers > > Steve > > > > ---------------------------------------------- > > steve baty > > senior analyst :: strategy & technology > > red square :: internet design & development > > www.redsquare.com > > <ph>+612 8596 4030 > > <fax>+612 8596 4001 > > <mob>+61 417 061 292 > > > > -----Original Message----- > > From: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED] On Behalf > Of Scott > > Barnes > > Sent: Friday, 7 March 2003 14:57 > > To: CFAussie Mailing List > > Subject: [cfaussie] Consuming Large mofo XML Packets > > > > I have a fairly large XML packet that i extract from a > webservice, and > > i want to XMLParse this XML feed into CFMX. Only its so > damn big that > > CFMX just spikes for a few hours and then only by a slim chance, it > > actually works. > > > > What I am after is another way to Parse an XML packet with > CFMX that > > can handle large packets? > > > > Scott > > > > > > > > --- > > You are currently subscribed to cfaussie as: [EMAIL PROTECTED] To > > unsubscribe send a blank email to > > [EMAIL PROTECTED] > > > > MX Downunder AsiaPac DevCon - http://mxdu.com/ > > > > > > > > > > > --- > You are currently subscribed to cfaussie as: > [EMAIL PROTECTED] To unsubscribe send a blank email to > [EMAIL PROTECTED] > > MX Downunder AsiaPac DevCon - http://mxdu.com/ > > --- You are currently subscribed to cfaussie as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED] MX Downunder AsiaPac DevCon - http://mxdu.com/
