On Mon, 17 Jan 2005 15:47:08 -0500, Jaye Morris <[EMAIL PROTECTED]> wrote:
> Actually the <cfpterritoryid3></cfpterritoryid3> is an xml field from
> a CRM system not something with a XML tag related to CFXML

You haven't shown us your code (which would have saved all of this
confusion!) but I assume you're doing something like:

<cfsavecontent variable="crmxml">
    ...
    <cfpterritoryid3>...</cfpterritoryid3>
    ...
</cfsavecontent>

In which case, yes, CF will try to execute <cfpterritoryid3>

You can workaround this by doing:

<cfsavecontent variable="crmxml">
    ...
    <__pterritoryid3>...</__pterritoryid3>
    ...
</cfsavecontent>
<cfset crmxml = replace(crmxml,"__pterritoryid3","cfpterritoryid3","all")/>
-- 
Sean A Corfield -- http://www.corfield.org/
Team Fusebox -- http://www.fusebox.org/
Breeze Me! -- http://www.corfield.org/breezeme
Got Gmail? -- I have 5 invites to give away!

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Logware: a new and convenient web-based time tracking application. Start 
tracking and documenting hours spent on a project or with a client with Logware 
today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:190853
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