You add a separator in there so that the generated content is
unchanged, but the raw code doesn't contain the extra tags:

<cfset sep = "" />
<cfxml ...>
<#sep#cftagname ... />
</cfxml>

Or you could use a different delimiter, and replace it:

<cfxml ...>
^cftagname ... />
</cfxml>
<cfset xml = replace(xml, "^", "<", "all") />

cheers,
barneyb

On Wed, 09 Mar 2005 16:26:19 -0400, Shawna Hampton <[EMAIL PROTECTED]> wrote:
> I'm fairly new to using CF with XML and have a potential problem I need some 
> help with.
> 
> I'm using <cfxml> to create an XML document using elements given to me by a 
> third party.
> 
> The problem is a few of these elements start with CF (i.e., 
> <CFDCurrentJoinDate>01/01/2005</CFDCurrentJoinDate> or 
> <CFIMemberId>123456</CFIMemberId>). This is the way they have to be named 
> because we're using BizTalk to integrate with a remote, internal database and 
> that's the way it recognizes these elements (in other words there's no 
> changing them).
> 
> When I test it out I'm getting this error:
> 
> "You are using tags whose name begins with CF, but the tag is not registered 
> with Neo. Either the tag is not completed yet, or have you been playing with 
> the configuration?
> 
> Unknown tag: CFDCurrentJoinDate.
> ColdFusion cannot determine how to process the tag CFDCurrentJoinDate because 
> the tag is unknown and not in any imported tag libraries. The tag name might 
> be misspelled."
> 
> What should I do here to get it to work right? Any help is greatly 
> appreciated!
> 
> TIA,
> Shawna

-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 50 invites.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:198039
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to