The first thing I notice is that you did not parse the combined xml string.  After you run the xlmtransform function the result is a large string.  If you then want that to be a ColdFusion XML structure you would want to parse it.  This actually may not be necessary in you app, if you are just going to write that back to a file, because the string is what you want to write.

But to the error you reported, unless you have changed the StandardParagraph.xml from the one you sent me.  You are using the wrong root for it in the XSLT code.  In the StandardParagraph.xml file you sent me, the root is <stdpg>.  So in this line of the xslt file: <xsl:for-each select="$newParagraphs/VFPData/child::*"> you need to provide the correct root of the StandardParagraph.xml file.  It would read <xsl:for-each select="$newParagraphs/stdpg/child::*"> for the version of the StandardParagraph.xml file you provided me.

PS.  The HOF lists do not allow attachments.  So you can not provide the list code examples that way.

--------------
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

"C code. C code run. Run code run. Please!"
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message.
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Reply via email to