<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:www.nabble.com,2006:forum-609</id>
	<title>Nabble - Cold Fusion - XML</title>
	<updated>2008-05-21T11:40:33Z</updated>
	<link rel="self" type="application/atom+xml" href="http://www.nabble.com/Cold-Fusion---XML-f609.xml" />
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Cold-Fusion---XML-f609.html" />
	<subtitle type="html">The CF-XML list (formerly the WDDX list) is focused on XML in all its usages. XML, RSS, XPath, etc. are all on topic.</subtitle>
	
<entry>
	<id>tag:www.nabble.com,2006:post-17376109</id>
	<title>Re: CF8 problem with xmlsearch or malformed xml ?? access 2003 exported xml</title>
	<published>2008-05-21T11:40:33Z</published>
	<updated>2008-05-21T11:40:33Z</updated>
	<author>
		<name>Robert Bell-6</name>
	</author>
	<content type="html">Sweet. &amp;nbsp;The // did it !! &amp;nbsp; Thanks a bunch !!
&lt;br&gt;&lt;br&gt;On Wed, May 21, 2008 at 1:31 PM, Dominic Watson &amp;lt;
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17376109&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;watson.dominic@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Two things:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 1. xml is case sensitive so the 'id' in the XPath expression should be
&lt;br&gt;&amp;gt; 'ID'.
&lt;br&gt;&amp;gt; 2. A single slash to start an XPath expression basically says 'start
&lt;br&gt;&amp;gt; at the root', so '/Media_x0020_Contacts' does not match any elements
&lt;br&gt;&amp;gt; (there is no Media_x0020_Contacts element in the *root* of the
&lt;br&gt;&amp;gt; document. Either use a double slash to say 'match a
&lt;br&gt;&amp;gt; Media_x0020_Contacts element anywhere in the document' or write the
&lt;br&gt;&amp;gt; full path to the element. So:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;cfset contacts = XMLSearch(xml,'//Media_x0020_Contacts/ID') /&amp;gt;
&lt;br&gt;&amp;gt; or
&lt;br&gt;&amp;gt; &amp;lt;cfset contacts = XMLSearch(xml,'/dataroot/Media_x0020_Contacts/ID') /&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'd ignore the validation errors ;)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; HTH
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Dominic
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Blog it up: &lt;a href=&quot;http://fusion.dominicwatson.co.uk&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://fusion.dominicwatson.co.uk&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;192386516;25150098;k&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;192386516;25150098;k&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/XML/message.cfm/messageid:233&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/XML/message.cfm/messageid:233&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/XML/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/XML/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.3&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/CF8-problem-with-xmlsearch-or-malformed-xml-----access-2003-exported-xml-tp17372615p17376109.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17375912</id>
	<title>Re: CF8 problem with xmlsearch or malformed xml ?? access 2003 exported xml</title>
	<published>2008-05-21T11:31:55Z</published>
	<updated>2008-05-21T11:31:55Z</updated>
	<author>
		<name>Dominic Watson</name>
	</author>
	<content type="html">Two things:
&lt;br&gt;&lt;br&gt;1. xml is case sensitive so the 'id' in the XPath expression should be 'ID'.
&lt;br&gt;2. A single slash to start an XPath expression basically says 'start
&lt;br&gt;at the root', so '/Media_x0020_Contacts' does not match any elements
&lt;br&gt;(there is no Media_x0020_Contacts element in the *root* of the
&lt;br&gt;document. Either use a double slash to say 'match a
&lt;br&gt;Media_x0020_Contacts element anywhere in the document' or write the
&lt;br&gt;full path to the element. So:
&lt;br&gt;&lt;br&gt;&amp;lt;cfset contacts = XMLSearch(xml,'//Media_x0020_Contacts/ID') /&amp;gt;
&lt;br&gt;or
&lt;br&gt;&amp;lt;cfset contacts = XMLSearch(xml,'/dataroot/Media_x0020_Contacts/ID') /&amp;gt;
&lt;br&gt;&lt;br&gt;I'd ignore the validation errors ;)
&lt;br&gt;&lt;br&gt;HTH
&lt;br&gt;&lt;br&gt;Dominic
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Blog it up: &lt;a href=&quot;http://fusion.dominicwatson.co.uk&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://fusion.dominicwatson.co.uk&lt;/a&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;192386516;25150098;k&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;192386516;25150098;k&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/XML/message.cfm/messageid:232&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/XML/message.cfm/messageid:232&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/XML/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/XML/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.3&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/CF8-problem-with-xmlsearch-or-malformed-xml-----access-2003-exported-xml-tp17372615p17375912.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17372615</id>
	<title>CF8 problem with xmlsearch or malformed xml ??  access 2003 exported xml</title>
	<published>2008-05-21T09:18:17Z</published>
	<updated>2008-05-21T09:18:17Z</updated>
	<author>
		<name>Robert Bell-6</name>
	</author>
	<content type="html">I am having a CF8 problem reading an xml file exported from Access 2003. &amp;nbsp;
&lt;br&gt;&lt;br&gt;My array returned from the xmlsearch function is empty. &amp;nbsp; I dump the xml
&lt;br&gt;doument I get a fully populated structure. If I validate the xml file with xmlvalidate() I get: 
&lt;br&gt;&lt;br&gt;1 [Error] :2:91: cvc-elt.1: Cannot find the declaration of element 'dataroot'. &amp;nbsp;
&lt;br&gt;&lt;br&gt;Here is the code, and example of the xml file. &amp;nbsp;Any ideas would be appreciated. &amp;nbsp;
&lt;br&gt;&lt;br&gt;Thanks, Bob
&lt;br&gt;&lt;br&gt;&amp;lt;body&amp;gt;
&lt;br&gt;&amp;lt;cfset xml = XMLParse(&amp;quot;&lt;a href=&quot;http://aplacmc/dir/some.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://aplacmc/dir/some.xml&lt;/a&gt;&amp;quot;) /&amp;gt;
&lt;br&gt;&amp;lt;cfset contacts = XMLSearch(xml,'/Media_x0020_Contacts/id') /&amp;gt;
&lt;br&gt;&amp;lt;cfoutput&amp;gt;
&lt;br&gt;&amp;lt;!--- &amp;lt;cfdump var=&amp;quot;#xml#&amp;quot;&amp;gt; ---&amp;gt;
&lt;br&gt;contacts&amp;lt;br /&amp;gt;
&lt;br&gt;&amp;lt;cfdump var=&amp;quot;#contacts#&amp;quot;&amp;gt;
&lt;br&gt;&amp;lt;!--- xml&amp;lt;br /&amp;gt;&amp;lt;cfdump var=&amp;quot;#xml#&amp;quot;&amp;gt; ---&amp;gt;
&lt;br&gt;arraylen:#ArrayLen(contacts)# &amp;lt;br&amp;gt;
&lt;br&gt;&amp;lt;cfset myResults=XMLValidate(xml)&amp;gt;
&lt;br&gt;Dump of myResults structure returned by XMLValidate&amp;lt;br&amp;gt;
&lt;br&gt;&amp;lt;cfdump var=&amp;quot;#myResults#&amp;quot;&amp;gt;
&lt;br&gt;&amp;lt;cfloop index=&amp;quot;i&amp;quot; from=&amp;quot;1&amp;quot; to=&amp;quot;#ArrayLen(contacts)#&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Contact: #contacts[i].xmlchildren[1].xmltext# #contacts[i].xmlchildren[2].xmltext# /&amp;gt;&amp;lt;br /&amp;gt;
&lt;br&gt;&amp;lt;/cfloop&amp;gt;
&lt;br&gt;&amp;lt;/cfoutput&amp;gt;
&lt;br&gt;&amp;lt;/body&amp;gt;
&lt;br&gt;&amp;lt;/html&amp;gt;
&lt;br&gt;&lt;br&gt;======== &amp;nbsp;xml file ===========
&lt;br&gt;&lt;br&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt;
&lt;br&gt;&amp;lt;dataroot xmlns:od=&amp;quot;urn:schemas-microsoft-com:officedata&amp;quot; generated=&amp;quot;2008-05-20T14:02:27&amp;quot;&amp;gt;
&lt;br&gt;&amp;lt;Media_x0020_Contacts&amp;gt;
&lt;br&gt;&amp;lt;ID&amp;gt;163&amp;lt;/ID&amp;gt;
&lt;br&gt;&amp;lt;Media_x0020_Name&amp;gt;media name&amp;lt;/Media_x0020_Name&amp;gt;
&lt;br&gt;&amp;lt;Zip&amp;gt;0&amp;lt;/Zip&amp;gt;
&lt;br&gt;&amp;lt;Fax_x0020_Group&amp;gt;0&amp;lt;/Fax_x0020_Group&amp;gt;
&lt;br&gt;&amp;lt;selected&amp;gt;0&amp;lt;/selected&amp;gt;
&lt;br&gt;&amp;lt;/Media_x0020_Contacts&amp;gt;
&lt;br&gt;&amp;lt;Media_x0020_Contacts&amp;gt;
&lt;br&gt;&amp;lt;ID&amp;gt;1&amp;lt;/ID&amp;gt;
&lt;br&gt;&amp;lt;Language&amp;gt;English&amp;lt;/Language&amp;gt;
&lt;br&gt;&amp;lt;Media_x0020_Type&amp;gt;Print&amp;lt;/Media_x0020_Type&amp;gt;
&lt;br&gt;&amp;lt;Media_x0020_Name&amp;gt;Austin American Statesman&amp;lt;/Media_x0020_Name&amp;gt;
&lt;br&gt;&amp;lt;Last&amp;gt;Zipp&amp;lt;/Last&amp;gt;
&lt;br&gt;&amp;lt;First&amp;gt;Fred&amp;lt;/First&amp;gt;
&lt;br&gt;&amp;lt;Title&amp;gt;Managing Editor&amp;lt;/Title&amp;gt;
&lt;br&gt;&amp;lt;E-mail_x0020_address&amp;gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=17372615&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;news@...&lt;/a&gt;&amp;lt;/E-mail_x0020_address&amp;gt;
&lt;br&gt;&amp;lt;Work_x0020_phone&amp;gt;512-912-2983&amp;lt;/Work_x0020_phone&amp;gt;
&lt;br&gt;&amp;lt;Fax&amp;gt;512-999-999&amp;lt;/Fax&amp;gt;
&lt;br&gt;&amp;lt;URL&amp;gt;#&lt;a href=&quot;http://www.statesman.com/#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.statesman.com/#&lt;/a&gt;&amp;lt;/URL&amp;gt;
&lt;br&gt;&amp;lt;Street_x0020_address&amp;gt;305 S. Congress Ave.&amp;lt;/Street_x0020_address&amp;gt;
&lt;br&gt;&amp;lt;City&amp;gt;Austin&amp;lt;/City&amp;gt;
&lt;br&gt;&amp;lt;ST&amp;gt;TX&amp;lt;/ST&amp;gt;
&lt;br&gt;&amp;lt;Zip&amp;gt;78704&amp;lt;/Zip&amp;gt;
&lt;br&gt;&amp;lt;Fax_x0020_Group&amp;gt;1&amp;lt;/Fax_x0020_Group&amp;gt;
&lt;br&gt;&amp;lt;selected&amp;gt;0&amp;lt;/selected&amp;gt;
&lt;br&gt;&amp;lt;/Media_x0020_Contacts&amp;gt;
&lt;br&gt;&amp;lt;/dataroot&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;192386516;25150098;k&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;192386516;25150098;k&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/XML/message.cfm/messageid:231&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/XML/message.cfm/messageid:231&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/XML/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/XML/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.3&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/CF8-problem-with-xmlsearch-or-malformed-xml-----access-2003-exported-xml-tp17372615p17372615.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-7150631</id>
	<title>Re: Importing XML into SQL Server 2000</title>
	<published>2006-11-02T17:32:00Z</published>
	<updated>2006-11-02T17:32:00Z</updated>
	<author>
		<name>Sinuy L</name>
	</author>
	<content type="html">hi, how about MS Access? 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;gt;Yes, in SQL Server 2000, not sure how much XML stuff there is in SqlServer
&lt;br&gt;&amp;gt;7.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Look up &amp;quot;Importing XML&amp;quot; in BOL , or &amp;quot;SQL Server and XML Support&amp;quot; for a more
&lt;br&gt;&amp;gt;general overview
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Justin
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/XML/message.cfm/messageid:210&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/XML/message.cfm/messageid:210&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/XML/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/XML/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.3&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Re%3A-Importing-XML-into-SQL-Server-2000-tp7150631p7150631.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-6901927</id>
	<title>Re: Search XML Tree help</title>
	<published>2006-10-19T11:33:55Z</published>
	<updated>2006-10-19T11:33:55Z</updated>
	<author>
		<name>Christopher Chin-2</name>
	</author>
	<content type="html">Thanks Rob! &amp;nbsp;I'll give this a try and let you know how I fare.
&lt;br&gt;&lt;br&gt;--Chris
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;Something like
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;XMLSearch ( myXML, '/employee[@id='jjones']/*' )
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Should do the trick. &amp;nbsp;I didn't test this and I'm not certain of the &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;quot;*&amp;quot;, but that should get you in the neighborhood.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Rob Wilkerson
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;On Oct 18, 2006, at 6:23 PM, Christopher Chin wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/XML/message.cfm/messageid:209&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/XML/message.cfm/messageid:209&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/XML/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/XML/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.3&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Search-XML-Tree-help-tp6887153p6901927.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-6887741</id>
	<title>Re: Search XML Tree help</title>
	<published>2006-10-18T17:12:12Z</published>
	<updated>2006-10-18T17:12:12Z</updated>
	<author>
		<name>musetracks</name>
	</author>
	<content type="html">Something like
&lt;br&gt;&lt;br&gt;XMLSearch ( myXML, '/employee[@id='jjones']/*' )
&lt;br&gt;&lt;br&gt;Should do the trick. &amp;nbsp;I didn't test this and I'm not certain of the &amp;nbsp;
&lt;br&gt;&amp;quot;*&amp;quot;, but that should get you in the neighborhood.
&lt;br&gt;&lt;br&gt;Rob Wilkerson
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Oct 18, 2006, at 6:23 PM, Christopher Chin wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; First off, I'm an XML newbie, but not a CF newbie :)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm trying to figure out how to search an xml document that is &amp;nbsp;
&lt;br&gt;&amp;gt; being handed to me by another process within the company. &amp;nbsp; 
&lt;br&gt;&amp;gt; Basically it's a small database.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Here's a sample:
&lt;br&gt;&amp;gt; &amp;lt;employee id=&amp;quot;jsmith&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;fname&amp;gt;John&amp;lt;/fname&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;lname&amp;gt;Smith&amp;lt;/lname&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/employee&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;employee id=&amp;quot;jjones&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;fname&amp;gt;Jack&amp;lt;/fname&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;lname&amp;gt;Jones&amp;lt;/lname&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/employee&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; How do I search the tree and get all of the childnodes for &amp;nbsp;
&lt;br&gt;&amp;gt; id=&amp;quot;jjones&amp;quot;? &amp;nbsp;ID is an attribute of employee and I'm having trouble &amp;nbsp;
&lt;br&gt;&amp;gt; figuring this out with CF.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Any help is much appreciate.
&lt;br&gt;&amp;gt; thanks!
&lt;br&gt;&amp;gt; Chris
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/XML/message.cfm/messageid:208&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/XML/message.cfm/messageid:208&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/XML/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/XML/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.3&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Search-XML-Tree-help-tp6887153p6887741.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-6887153</id>
	<title>Search XML Tree help</title>
	<published>2006-10-18T16:23:11Z</published>
	<updated>2006-10-18T16:23:11Z</updated>
	<author>
		<name>Christopher Chin-2</name>
	</author>
	<content type="html">First off, I'm an XML newbie, but not a CF newbie :)
&lt;br&gt;&lt;br&gt;I'm trying to figure out how to search an xml document that is being handed to me by another process within the company. &amp;nbsp;Basically it's a small database.
&lt;br&gt;&lt;br&gt;Here's a sample:
&lt;br&gt;&amp;lt;employee id=&amp;quot;jsmith&amp;quot;&amp;gt;
&lt;br&gt;&amp;lt;fname&amp;gt;John&amp;lt;/fname&amp;gt;
&lt;br&gt;&amp;lt;lname&amp;gt;Smith&amp;lt;/lname&amp;gt;
&lt;br&gt;&amp;lt;/employee&amp;gt;
&lt;br&gt;&amp;lt;employee id=&amp;quot;jjones&amp;quot;&amp;gt;
&lt;br&gt;&amp;lt;fname&amp;gt;Jack&amp;lt;/fname&amp;gt;
&lt;br&gt;&amp;lt;lname&amp;gt;Jones&amp;lt;/lname&amp;gt;
&lt;br&gt;&amp;lt;/employee&amp;gt;
&lt;br&gt;&lt;br&gt;How do I search the tree and get all of the childnodes for id=&amp;quot;jjones&amp;quot;? &amp;nbsp;ID is an attribute of employee and I'm having trouble figuring this out with CF.
&lt;br&gt;&lt;br&gt;Any help is much appreciate.
&lt;br&gt;thanks!
&lt;br&gt;Chris
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/XML/message.cfm/messageid:207&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/XML/message.cfm/messageid:207&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/XML/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/XML/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.3&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Search-XML-Tree-help-tp6887153p6887153.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-6187404</id>
	<title>Wddx Bad Request</title>
	<published>2006-09-07T03:34:04Z</published>
	<updated>2006-09-07T03:34:04Z</updated>
	<author>
		<name>Jens Maschke</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;Would like to know what's going on here.
&lt;br&gt;&lt;br&gt;i've got this query:
&lt;br&gt;&lt;br&gt;&amp;lt;cfquery name =&amp;quot;selection&amp;quot; datasource=&amp;quot;#application.dsn#&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; select item1,item2,item3, .... item80
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from tableXY
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; where item1 like 'something'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;lt;/cfquery&amp;gt;
&lt;br&gt;&lt;br&gt;There are different datatypes. For example item1 = (varchar), item2 = (bit), item3 = (datetime) etc.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Then i serialize this query to a Wddx Packet.
&lt;br&gt;&lt;br&gt;&amp;lt;cfwddx action=&amp;quot;cfml2wddx&amp;quot; input=&amp;quot;#selection#&amp;quot; output=&amp;quot;wselection&amp;quot; usetimezoneinfo=&amp;quot;yes&amp;quot;&amp;gt;
&lt;br&gt;&lt;br&gt;Testing for Wddx gives me &amp;quot;Is Wddx&amp;quot;. O.K
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;cfif iswddx(wselection)&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; is wddx
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;cfelse&amp;gt; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; is not wddx
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/cfif&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;when i try to pass the whole recordset to another site via
&lt;br&gt;&lt;br&gt;&amp;lt;cfoutput&amp;gt;
&lt;br&gt;&amp;lt;a href=&amp;quot;wddxtransport.cfm?suche=#urlencodedformat(wselection)#&amp;quot;&amp;gt;Selection&amp;lt;/a&amp;gt;		&amp;lt;/cfoutput&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;the browser doesn't connect me to the site. i just get this message:
&lt;br&gt;&lt;br&gt;Error: Connection interrupted
&lt;br&gt;&lt;br&gt;The connection to the server was put back, while the side was loaded.
&lt;br&gt;&lt;br&gt;&lt;br&gt;* The Website could be temporarily not attainable, try again later.
&lt;br&gt;&lt;br&gt;* Even if you can call no other Website, examine please the network/Internet connection.
&lt;br&gt;&lt;br&gt;* If your computer or network is protected by a Firewall or a Proxy, guarantee please,that Firefox may access Internet.
&lt;br&gt;&lt;br&gt;&lt;br&gt;sometimes it gives me HTTP/1.1 Error 400 - Bad Request
&lt;br&gt;&lt;br&gt;has anyone an idea?
&lt;br&gt;&lt;br&gt;thanks
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/XML/message.cfm/messageid:206&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/XML/message.cfm/messageid:206&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/XML/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/XML/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.3&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Wddx-Bad-Request-tp6187404p6187404.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-1620624</id>
	<title>Help</title>
	<published>2005-11-23T07:51:40Z</published>
	<updated>2005-11-23T07:51:40Z</updated>
	<author>
		<name>Torrent Girl</name>
	</author>
	<content type="html">I am parsing XML passed from a Web service
&lt;br&gt;&lt;br&gt;I need to display several different &amp;quot;business errors&amp;quot; (not code errors)to the customer.
&lt;br&gt;&lt;br&gt;The problem is that two of the business errors that I need to display have the same name (they are different errors)
&lt;br&gt;&lt;br&gt;Is there a way (in output, loop or whatever) to do this?
&lt;br&gt;&lt;br&gt;Currently it's only showing the first one.
&lt;br&gt;&lt;br&gt;Thnx 
&lt;br&gt;tGirl 
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Get Instant Hacker Protection, Virus Detection, Antispam &amp; Personal Firewall.
&lt;br&gt;&lt;a href=&quot;http://www.houseoffusion.com/banners/view.cfm?bannerid=62&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/banners/view.cfm?bannerid=62&lt;/a&gt;&lt;br&gt;&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:3:202&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:3:202&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/3&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:3&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.3&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Help-tp1620624p1620624.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-552427</id>
	<title>Using XML file for navigation</title>
	<published>2005-08-04T02:31:34Z</published>
	<updated>2005-08-04T02:31:34Z</updated>
	<author>
		<name>Richard Cooper-11</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&amp;nbsp;
&lt;br&gt;I currently have a .cfm file that I use for all the navigation on a
&lt;br&gt;particular website. Depending on where you are in the site the navigation
&lt;br&gt;changes. There's quite a lot of different possibilities that can occur so
&lt;br&gt;they file is quite big and I believe it is a bit of drain on the cf
&lt;br&gt;resources. All of the links are DB driven and do change reasonably
&lt;br&gt;regularly.
&lt;br&gt;&amp;nbsp;
&lt;br&gt;I don't know much about xml but I was thinking of creating an XML file for
&lt;br&gt;each of the areas where the navigation changes. These XML files would be
&lt;br&gt;updated when the DB changes. So my questions are: 
&lt;br&gt;a) What are the pro's and con's of doing this
&lt;br&gt;b) Would there be an improvement doing it in this way
&lt;br&gt;c) The website is provided in multiple languages. Currently, just European
&lt;br&gt;but it will be expanding into other languages which will require UTF-8
&lt;br&gt;encoding. Will there be any problems with the XML file and this?
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Thanks,
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Richard
&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Find out how CFTicket can increase your company's customer support 
&lt;br&gt;efficiency by 100%
&lt;br&gt;&lt;a href=&quot;http://www.houseoffusion.com/banners/view.cfm?bannerid=49&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/banners/view.cfm?bannerid=49&lt;/a&gt;&lt;br&gt;&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:3:200&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:3:200&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/3&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:3&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.3&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Using-XML-file-for-navigation-tp552427p552427.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-638803</id>
	<title>RE: Including HTML as the value of an XML node</title>
	<published>2005-07-26T08:57:21Z</published>
	<updated>2005-07-26T08:57:21Z</updated>
	<author>
		<name>Damien McKenna-4</name>
	</author>
	<content type="html">&amp;gt; I have a Flash app that read XML and includes the value of 
&lt;br&gt;&amp;gt; the node into a text box as HTML. &amp;nbsp;The Flash works fine with 
&lt;br&gt;&amp;gt; plain text but breaks when I include HTML tags. &amp;nbsp;My research 
&lt;br&gt;&amp;gt; indicates that it is the HTML tags embedded in the XML. &amp;nbsp;
&lt;br&gt;&lt;br&gt;Could you do some processing within the Flash UI that replaces e.g.
&lt;br&gt;*word* with &amp;lt;strong&amp;gt;word&amp;lt;/strong&amp;gt;, some sort of simplified formatting
&lt;br&gt;syntax? &amp;nbsp;Its not a perfect solution but it might be workable.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Damien McKenna - Web Developer - &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=638803&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Damien.McKenna@...&lt;/a&gt;
&lt;br&gt;The Limu Company - &lt;a href=&quot;http://www.thelimucompany.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.thelimucompany.com/&lt;/a&gt;&amp;nbsp;- 407-804-1014
&lt;br&gt;#include &amp;lt;stdjoke.h&amp;gt;
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Find out how to get a fax number that sends and receives faxes using your current email address
&lt;br&gt;&lt;a href=&quot;http://www.houseoffusion.com/banners/view.cfm?bannerid=64&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/banners/view.cfm?bannerid=64&lt;/a&gt;&lt;br&gt;&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:3:199&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:3:199&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/3&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:3&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.3&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Including-HTML-as-the-value-of-an-XML-node-tp638802p638803.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-638802</id>
	<title>Including HTML as the value of an XML node</title>
	<published>2005-07-26T08:53:57Z</published>
	<updated>2005-07-26T08:53:57Z</updated>
	<author>
		<name>Russel Madere</name>
	</author>
	<content type="html">I searched the archives and could not find a solution. &amp;nbsp;If there is one and I missed it, I apologize.
&lt;br&gt;&lt;br&gt;I have a Flash app that read XML and includes the value of the node into a text box as HTML. &amp;nbsp;The Flash works fine with plain text but breaks when I include HTML tags. &amp;nbsp;My research indicates that it is the HTML tags embedded in the XML. &amp;nbsp;
&lt;br&gt;&lt;br&gt;Here is a sample: &lt;a href=&quot;http://www.washingtonartillery.org/csa/news.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.washingtonartillery.org/csa/news.xml&lt;/a&gt;&lt;br&gt;The application: &lt;a href=&quot;http://www.washingtonartillery.org/csa/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.washingtonartillery.org/csa/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;The first 2 articles work fine, but the third just displays &amp;quot;As a member of &amp;quot;. &amp;nbsp;
&lt;br&gt;&lt;br&gt;How can I escape the tags? &amp;nbsp;This is the last programatic step I need to figure out.
&lt;br&gt;&lt;br&gt;Russel
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Find out how CFTicket can increase your company's customer support 
&lt;br&gt;efficiency by 100%
&lt;br&gt;&lt;a href=&quot;http://www.houseoffusion.com/banners/view.cfm?bannerid=49&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/banners/view.cfm?bannerid=49&lt;/a&gt;&lt;br&gt;&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:3:198&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:3:198&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/3&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:3&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.3&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Including-HTML-as-the-value-of-an-XML-node-tp638802p638802.html" />
</entry>

</feed>
