<?xml version="1.0" encoding="utf-8"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>DaniWeb IT Discussion Community - XML, XSLT and XPATH</title>
		<link>http://www.daniweb.com/forums</link>
		<description><![CDATA[Our XML, XSLT and XPATH forum is the place for Q&A-style discussions related to XML.  Note we have a separate RSS, Web Services and SOAP forum in the Web Development category.]]></description>
		<language>en-US</language>
		<lastBuildDate>Tue, 13 May 2008 20:11:19 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.daniweb.com/forums/myimages/misc/rss.jpg</url>
			<title>DaniWeb IT Discussion Community - XML, XSLT and XPATH</title>
			<link>http://www.daniweb.com/forums</link>
		</image>
		<item>
			<title>validate xml using xsd</title>
			<link>http://www.daniweb.com/forums/thread123895.html</link>
			<pubDate>Mon, 12 May 2008 19:11:36 GMT</pubDate>
			<description>Hey guys, i have a XML file that i would like to validate using a XSD i have created.
What is the best way to do that?
i dont want to use C# (which is what the rest of the program which outputs the XML is wrriten in)
is there  a way when i open the XML for it to be validated automatically and show...</description>
			<content:encoded><![CDATA[<div>Hey guys, i have a XML file that i would like to validate using a XSD i have created.<br />
What is the best way to do that?<br />
i dont want to use C# (which is what the rest of the program which outputs the XML is wrriten in)<br />
is there  a way when i open the XML for it to be validated automatically and show it if it is ok or error message if it is no?<br />
thank you</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum134.html">XML, XSLT and XPATH</category>
			<dc:creator>nnobakht</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread123895.html</guid>
		</item>
		<item>
			<title>csv to xml</title>
			<link>http://www.daniweb.com/forums/thread123884.html</link>
			<pubDate>Mon, 12 May 2008 16:51:19 GMT</pubDate>
			<description><![CDATA[hey any body know more about this script to convert CSV to XML 

 <div class="codeblock"> <div class="spaced"> <div class="light" style="float:right"> <a href="/forums/misc.php?do=explaincode&amp;TB_iframe=true&amp;height=400&amp;width=680" class="thickbox" title="Help with Code Tags"...]]></description>
			<content:encoded><![CDATA[<div>hey any body know more about this script to convert CSV to XML <br />
<br />
<div style="margin:10px 20px 20px 20px"> <code style="margin:0px" dir="ltr" style="text-align:left"> <br />
<br />
<br />
&lt;?php<br />
/**<br />
&nbsp;* Converts a CSV file to a simple XML file<br />
&nbsp;*<br />
&nbsp;* @param string $file<br />
&nbsp;* @param string $container<br />
&nbsp;* @param string $rows<br />
&nbsp;* @return string<br />
&nbsp;*/<br />
<br />
error_reporting(E_ALL ^ E_NOTICE);<br />
ini_set(&quot;display_errors&quot;, true);<br />
<br />
function csv2xml($file, $container = 'data', $rows = 'row')<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; $r = &quot;&lt;{$container}&gt;\n&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; $row = 0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; $cols = 0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; $titles = array();<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; $handle = @fopen($file, 'r');<br />
&nbsp; &nbsp; &nbsp; &nbsp; if (!$handle) return $handle;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; while (($data = fgetcsv($handle, 1000, ',')) !== FALSE)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  if ($row &gt; 0) $r .= &quot;\t&lt;{$rows}&gt;\n&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  if (!$cols) $cols = count($data);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  for ($i = 0; $i &lt; $cols; $i++)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if ($row == 0)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  $titles[$i] = $data[$i];<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  continue;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $r .= &quot;\t\t&lt;{$titles[$i]}&gt;&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $r .= $data[$i];<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $r .= &quot;&lt;/{$titles[$i]}&gt;\n&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  if ($row &gt; 0) $r .= &quot;\t&lt;/{$rows}&gt;\n&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  $row++;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; fclose($handle);<br />
&nbsp; &nbsp; &nbsp; &nbsp; $r .= &quot;&lt;/{$container}&gt;&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; return $r;<br />
}<br />
$xml = csv2xml('/var/www/html/media/xml/DS20080507.csv', 'export', 'feedPublishDate');<br />
<br />
<br />
<br />
<br />
?&gt;<br />
<br />
<br />
<br />
</code> </div>
<br />
<br />
Thank you</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum134.html">XML, XSLT and XPATH</category>
			<dc:creator>jencinas69</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread123884.html</guid>
		</item>
		<item>
			<title>Copy  all node till occurence of next li in xslt 1.0</title>
			<link>http://www.daniweb.com/forums/thread123776.html</link>
			<pubDate>Mon, 12 May 2008 06:20:54 GMT</pubDate>
			<description><![CDATA[Hi I need to convert below part 
<ul>
              <li id="L_115775_tr">
                <span>
                  <a href="http://support.microsoft.com/ph/11732" id="L_115775">Windows Vista Solution Center</a>
                </span>
                <li id="L_116381_tr">
                  <span>
 ...]]></description>
			<content:encoded><![CDATA[<div>Hi I need to convert below part <br />
&lt;ul&gt;<br />
              &lt;li id=&quot;L_115775_tr&quot;&gt;<br />
                &lt;span&gt;<br />
                  &lt;a href=&quot;http://support.microsoft.com/ph/11732&quot; id=&quot;L_115775&quot;&gt;Windows Vista Solution Center&lt;/a&gt;<br />
                &lt;/span&gt;<br />
                &lt;li id=&quot;L_116381_tr&quot;&gt;<br />
                  &lt;span&gt;<br />
                    &lt;a href=&quot;http://support.microsoft.com/ph/8722&quot; id=&quot;L_116381&quot;&gt;Windows Internet Explorer 7 Solution Center&lt;/a&gt;<br />
                  &lt;/span&gt;<br />
                  &lt;li id=&quot;L_125705_tr&quot;&gt;<br />
                    &lt;span&gt;<br />
                      &lt;a href=&quot;http://support.microsoft.com/ph/1173&quot; id=&quot;L_125705&quot;&gt;Windows XP Solution Center&lt;/a&gt;<br />
                    &lt;/span&gt;<br />
                    &lt;li id=&quot;L_147192_tr&quot;&gt;<br />
                      &lt;span&gt;<br />
                        &lt;a href=&quot;http://support.microsoft.com/gp/cp_email&quot; id=&quot;L_147192&quot;&gt;E-mail Solution Center &lt;/a&gt;<br />
                      &lt;/span&gt;<br />
                      &lt;li id=&quot;L_140164_tr&quot;&gt;<br />
                        &lt;span&gt;<br />
                          &lt;a href=&quot;http://support.microsoft.com/ph/8753&quot; id=&quot;L_140164&quot;&gt;2007 Microsoft Office Suites Solution Center&lt;/a&gt;<br />
                        &lt;/span&gt;<br />
                      &lt;/li&gt;<br />
                    &lt;/li&gt;<br />
                  &lt;/li&gt;<br />
                &lt;/li&gt;<br />
              &lt;/li&gt;<br />
            &lt;/ul&gt;<br />
<br />
To<br />
<br />
&lt;ul&gt;<br />
              &lt;li id=&quot;L_115775_tr&quot;&gt;<br />
                &lt;span&gt;<br />
                  &lt;a href=&quot;http://support.microsoft.com/ph/11732&quot; id=&quot;L_115775&quot;&gt;Windows Vista Solution Center&lt;/a&gt;<br />
                &lt;/span&gt;<br />
&lt;/li&gt;<br />
&lt;li id=&quot;L_116381_tr&quot;&gt;<br />
                  &lt;span&gt;<br />
                    &lt;a href=&quot;http://support.microsoft.com/ph/8722&quot; id=&quot;L_116381&quot;&gt;Windows Internet Explorer 7 Solution Center&lt;/a&gt;<br />
                  &lt;/span&gt;<br />
&lt;/li&gt;<br />
 &lt;li id=&quot;L_125705_tr&quot;&gt;<br />
                    &lt;span&gt;<br />
                      &lt;a href=&quot;http://support.microsoft.com/ph/1173&quot; id=&quot;L_125705&quot;&gt;Windows XP Solution Center&lt;/a&gt;<br />
                    &lt;/span&gt;<br />
&lt;/li&gt;<br />
 &lt;li id=&quot;L_140164_tr&quot;&gt;<br />
                        &lt;span&gt;<br />
                          &lt;a href=&quot;http://support.microsoft.com/ph/8753&quot; id=&quot;L_140164&quot;&gt;2007 Microsoft Office Suites Solution Center&lt;/a&gt;<br />
                        &lt;/span&gt;<br />
&lt;/li&gt;<br />
&lt;/ul&gt;<br />
<br />
Basically it should copy all nodes and attributes till occurence of next &lt;li&gt; . Same process should be repeated for all &lt;li&gt; using xslt 1.0</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum134.html">XML, XSLT and XPATH</category>
			<dc:creator>timar</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread123776.html</guid>
		</item>
		<item>
			<title>Text file to XML</title>
			<link>http://www.daniweb.com/forums/thread123395.html</link>
			<pubDate>Fri, 09 May 2008 15:08:00 GMT</pubDate>
			<description>Hey I have a DTI text file that I need to convert to xml format. Have you done this before? 

Attached are the TXT and XML file</description>
			<content:encoded><![CDATA[<div>Hey I have a DTI text file that I need to convert to xml format. Have you done this before? <br />
<br />
Attached are the TXT and XML file</div>  <br /> <div style="padding:5px">     <fieldset class="fieldset"> <legend>Attached Files</legend> <table cellpadding="0" cellspacing="5" border="0"> <tr> <td><img class="inlineimg" src="http://www.daniweb.com/forums//forums/myimages/attach/txt.gif" alt="File Type: txt" width="16" height="16" border="0" style="vertical-align:baseline" /></td> <td><a href="http://www.daniweb.com/forums/attachment.php?attachmentid=6001&amp;d=1210345647">DS20080507.txt</a> (97.8 KB)</td> </tr><tr> <td><img class="inlineimg" src="http://www.daniweb.com/forums//forums/myimages/attach/xml.gif" alt="File Type: xml" width="16" height="16" border="0" style="vertical-align:baseline" /></td> <td><a href="http://www.daniweb.com/forums/attachment.php?attachmentid=6002&amp;d=1210345657">xml.xml</a> (1.2 KB)</td> </tr> </table> </fieldset>  </div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum134.html">XML, XSLT and XPATH</category>
			<dc:creator>jencinas69</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread123395.html</guid>
			<enclosure url="http://www.daniweb.com/forums/attachment.php/6001/DS20080507.txt" length="100197" type="plain/text" />
		</item>
		<item>
			<title>XML and VB</title>
			<link>http://www.daniweb.com/forums/thread123341.html</link>
			<pubDate>Fri, 09 May 2008 09:07:00 GMT</pubDate>
			<description><![CDATA[i am getting data from a database using VB and then parsing it onto an XML sheet. I find that i'm not able to put a string with number/space/any special characters as the first character for a node.
Is there any way to escape this rule in XML? Please help]]></description>
			<content:encoded><![CDATA[<div>i am getting data from a database using VB and then parsing it onto an XML sheet. I find that i'm not able to put a string with number/space/any special characters as the first character for a node.<br />
Is there any way to escape this rule in XML? Please help</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum134.html">XML, XSLT and XPATH</category>
			<dc:creator>dinilkarun</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread123341.html</guid>
		</item>
		<item>
			<title>XML to XML make all elements attributes</title>
			<link>http://www.daniweb.com/forums/thread123046.html</link>
			<pubDate>Wed, 07 May 2008 20:28:01 GMT</pubDate>
			<description><![CDATA[Hey guys i have a xml file which looks like
 <div class="codeblock"> <div class="spaced"> <div class="light" style="float:right"> <a href="/forums/misc.php?do=explaincode&amp;TB_iframe=true&amp;height=400&amp;width=680" class="thickbox" title="Help with Code Tags" target="_blank">Help with Code...]]></description>
			<content:encoded><![CDATA[<div>Hey guys i have a xml file which looks like<br />
<div style="margin:10px 20px 20px 20px"> <code style="margin:0px" dir="ltr" style="text-align:left">&nbsp; &lt;?xml version=&quot;1.0&quot; ?&gt; <br />
- &lt;Booking&gt;<br />
- &lt;booking&gt;<br />
- &lt;required&gt;<br />
&nbsp; &lt;VoyageID&gt;navid&lt;/VoyageID&gt; <br />
&nbsp; &lt;BookingNumber&gt;omid&lt;/BookingNumber&gt; <br />
&nbsp; &lt;LoadPort&gt;nariman&lt;/LoadPort&gt; <br />
&nbsp; &lt;DischargePort&gt;mojedeh&lt;/DischargePort&gt; <br />
&nbsp; &lt;/required&gt;<br />
- &lt;additional&gt;<br />
&nbsp; &lt;sepandar&gt;sepandar&lt;/sepandar&gt; <br />
&nbsp; &lt;sepand&gt;sepand&lt;/sepand&gt; <br />
&nbsp; &lt;manoucher&gt;manoucher&lt;/manoucher&gt; <br />
&nbsp; &lt;nasrin&gt;nasrin&lt;/nasrin&gt; <br />
&nbsp; &lt;homa&gt;homa&lt;/homa&gt; <br />
&nbsp; &lt;parviz&gt;parviz&lt;/parviz&gt; <br />
&nbsp; &lt;farhad&gt;farhad&lt;/farhad&gt; <br />
&nbsp; &lt;giti&gt;giti&lt;/giti&gt; <br />
&nbsp; &lt;marzbani&gt;marzbani&lt;/marzbani&gt; <br />
&nbsp; &lt;/additional&gt;<br />
&nbsp; &lt;/booking&gt;<br />
- &lt;booking&gt;<br />
- &lt;required&gt;<br />
&nbsp; &lt;VoyageID&gt;2&lt;/VoyageID&gt; <br />
&nbsp; &lt;BookingNumber&gt;141&lt;/BookingNumber&gt; <br />
&nbsp; &lt;LoadPort&gt;280&lt;/LoadPort&gt; <br />
&nbsp; &lt;DischargePort&gt;419&lt;/DischargePort&gt; <br />
&nbsp; &lt;/required&gt;<br />
- &lt;additional&gt;<br />
&nbsp; &lt;sepandar&gt;558&lt;/sepandar&gt; <br />
&nbsp; &lt;sepand&gt;697&lt;/sepand&gt; <br />
&nbsp; &lt;manoucher&gt;836&lt;/manoucher&gt; <br />
&nbsp; &lt;nasrin&gt;975&lt;/nasrin&gt; <br />
&nbsp; &lt;homa&gt;1114&lt;/homa&gt; <br />
&nbsp; &lt;parviz&gt;1253&lt;/parviz&gt; <br />
&nbsp; &lt;farhad&gt;1392&lt;/farhad&gt; <br />
&nbsp; &lt;giti&gt;1531&lt;/giti&gt; <br />
&nbsp; &lt;marzbani&gt;1670&lt;/marzbani&gt; <br />
&nbsp; &lt;/additional&gt;<br />
&nbsp; &lt;/Booking&gt;</code> </div>
<br />
i have an xslt that is supposed to take all the elements and make them attributes.<br />
the final looks like<br />
<div style="margin:10px 20px 20px 20px"> <code style="margin:0px" dir="ltr" style="text-align:left">&nbsp; &lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; ?&gt; <br />
- &lt;Booking&gt;<br />
- &lt;booking&gt;<br />
&nbsp; &lt;required VoyageID=&quot;2&quot; BookingNumber=&quot;21&quot; LoadPort=&quot;30&quot; DischargePort=&quot;49&quot; /&gt; <br />
&nbsp; &lt;additional sepandar=&quot;68&quot; sepand=&quot;87&quot; manoucher=&quot;106&quot; nasrin=&quot;125&quot; homa=&quot;144&quot; parviz=&quot;163&quot; farhad=&quot;182&quot; giti=&quot;201&quot; marzbani=&quot;220&quot; /&gt; <br />
&nbsp; &lt;/booking&gt;<br />
- &lt;booking&gt;<br />
&nbsp; &lt;required VoyageID=&quot;3&quot; BookingNumber=&quot;12&quot; LoadPort=&quot;31&quot; DischargePort=&quot;50&quot; /&gt; <br />
&nbsp; &lt;additional sepandar=&quot;69&quot; sepand=&quot;88&quot; manoucher=&quot;107&quot; nasrin=&quot;126&quot; homa=&quot;145&quot; parviz=&quot;164&quot; farhad=&quot;183&quot; giti=&quot;202&quot; marzbani=&quot;221&quot; /&gt; <br />
&nbsp; &lt;/booking&gt;<br />
&nbsp; &lt;/Booking&gt;</code> </div>
but i want the &lt;required.....&gt; not to have required anmore but just move up to &lt;booking....&gt; and then the additional still there as a element under booking<br />
i dont know where im going wrong can some one help<br />
<div style="margin:10px 20px 20px 20px"> <code style="margin:0px" dir="ltr" style="text-align:left">&lt;xsl:stylesheet version=&quot;1.0&quot; xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot;&gt;<br />
<br />
&nbsp; &lt;xsl:import href=&quot;copy.xslt&quot;/&gt;<br />
<br />
&nbsp; &lt;xsl:output method=&quot;xml&quot; indent=&quot;yes&quot; version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;/&gt;<br />
<br />
&nbsp; &lt;!-- Match elements that are parents --&gt;<br />
&nbsp; &lt;xsl:template match=&quot;*[*]&quot;&gt;<br />
&nbsp; &nbsp; &lt;xsl:choose&gt;<br />
&nbsp; &nbsp; &nbsp; &lt;!-- Only convert children if this element has no attributes --&gt;<br />
&nbsp; &nbsp; &nbsp; &lt;!-- of its own --&gt;<br />
&nbsp; &nbsp; &nbsp; &lt;xsl:when test=&quot;not(@*)&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;xsl:copy&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;!-- Convert children to attributes if the child has --&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;!-- no children or attributes and has a unique name --&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;!-- amoung its siblings --&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;xsl:for-each select=&quot;*&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;xsl:choose&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;xsl:when test=&quot;not(*) and not(@*) and<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; not(preceding-sibling::*[name(&nbsp; ) =<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  name(current(&nbsp; ))]) <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; and <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; not(following-sibling::*[name(&nbsp; ) = <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  name(current(&nbsp; ))])&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;xsl:attribute name=&quot;{local-name(.)}&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;xsl:value-of select=&quot;.&quot;/&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/xsl:attribute&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/xsl:when&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;xsl:otherwise&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;xsl:apply-templates select=&quot;.&quot;/&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/xsl:otherwise&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/xsl:choose&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/xsl:for-each&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/xsl:copy&gt;<br />
&nbsp; &nbsp; &nbsp; &lt;/xsl:when&gt;<br />
&nbsp; &nbsp; &nbsp; &lt;xsl:otherwise&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;xsl:copy&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;xsl:apply-templates/&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/xsl:copy&gt;<br />
&nbsp; &nbsp; &nbsp; &lt;/xsl:otherwise&gt;<br />
&nbsp; &nbsp; &lt;/xsl:choose&gt;<br />
&nbsp; &lt;/xsl:template&gt;<br />
&lt;/xsl:stylesheet&gt;</code> </div></div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum134.html">XML, XSLT and XPATH</category>
			<dc:creator>nnobakht</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread123046.html</guid>
		</item>
		<item>
			<title>can i update variable using concat and for-each?</title>
			<link>http://www.daniweb.com/forums/thread122932.html</link>
			<pubDate>Wed, 07 May 2008 09:55:44 GMT</pubDate>
			<description><![CDATA[hi,

i'm really a newbie in xslt. i try to add string to a variable using concat (there is some how my xslt processor doesn't know string-join, but that's not the point here =P)

this is some part of xml code

<node0>
		<node1>
                                               ...]]></description>
			<content:encoded><![CDATA[<div>hi,<br />
<br />
i'm really a newbie in xslt. i try to add string to a variable using concat (there is some how my xslt processor doesn't know string-join, but that's not the point here =P)<br />
<br />
this is some part of xml code<br />
<div style="margin:10px 20px 20px 20px"> <code style="margin:0px" dir="ltr" style="text-align:left"><pre class="code"><ol><li class="li1"><div class="de1"><span class="sc3"><span class="re1">&lt;node0<span class="re2">&gt;</span></span></span></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;node1<span class="re2">&gt;</span></span></span></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;node1name<span class="re2">&gt;</span></span></span>xxxx<span class="sc3"><span class="re1">&lt;/node1name<span class="re2">&gt;</span></span></span></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;node2<span class="re2">&gt;</span></span></span></div></li><li class="li2"><div class="de2">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;node3<span class="re2">&gt;</span></span></span>01<span class="sc3"><span class="re1">&lt;/node3<span class="re2">&gt;</span></span></span></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;/node2<span class="re2">&gt;</span></span></span></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;node2<span class="re2">&gt;</span></span></span></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;node3<span class="re2">&gt;</span></span></span>02<span class="sc3"><span class="re1">&lt;/node3<span class="re2">&gt;</span></span></span></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;/node2<span class="re2">&gt;</span></span></span></div></li><li class="li2"><div class="de2">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;/node1<span class="re2">&gt;</span></span></span></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;node1<span class="re2">&gt;</span></span></span></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;node1name<span class="re2">&gt;</span></span></span>yyyy<span class="sc3"><span class="re1">&lt;/node1name<span class="re2">&gt;</span></span></span></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;node2<span class="re2">&gt;</span></span></span></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;node3<span class="re2">&gt;</span></span></span>03<span class="sc3"><span class="re1">&lt;/node3<span class="re2">&gt;</span></span></span></div></li><li class="li2"><div class="de2">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;/node2<span class="re2">&gt;</span></span></span></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;/node1<span class="re2">&gt;</span></span></span></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;node1<span class="re2">&gt;</span></span></span></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;node1name<span class="re2">&gt;</span></span></span>zzzz<span class="sc3"><span class="re1">&lt;/node1name<span class="re2">&gt;</span></span></span></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;node2<span class="re2">&gt;</span></span></span></div></li><li class="li2"><div class="de2">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;node3<span class="re2">&gt;</span></span></span>04<span class="sc3"><span class="re1">&lt;/node3<span class="re2">&gt;</span></span></span></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;/node2<span class="re2">&gt;</span></span></span></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;/node1<span class="re2">&gt;</span></span></span></div></li><li class="li1"><div class="de1"><span class="sc3"><span class="re1">&lt;/node0<span class="re2">&gt;</span></span></span></div></li></ol></pre></code> </div>
<br />
this is some part of xslt code<br />
<div style="margin:10px 20px 20px 20px"> <code style="margin:0px" dir="ltr" style="text-align:left"><pre class="code"><ol><li class="li1"><div class="de1">&lt;!-- i select $copareName before and test it already. its value is 'xxxx' --&gt;<br /></div></li><li class="li1"><div class="de1">&lt;xsl:variable name=&quot;strTest&quot; select=&quot;''&quot; /&gt;<br /></div></li><li class="li1"><div class="de1">&lt;xsl:for-each select=&quot;//node2[parent::node()/node1name=$copareName]&quot;&gt;<br /></div></li><li class="li1"><div class="de1">&nbsp; &nbsp;  &lt;xsl:variable name=&quot;tmp&quot; select=&quot;node3&quot; /&gt;<br /></div></li><li class="li2"><div class="de2">&nbsp; &nbsp;  &lt;xsl:variable name=&quot;strTest&quot; select=&quot;concat($strTest, '/', $tmp)&quot; /&gt;<br /></div></li><li class="li1"><div class="de1">&lt;/xsl:for-each&gt;<br /></div></li><li class="li1"><div class="de1">&lt;xsl:variable name=&quot;strTest&quot; select=&quot;concat($strTest, '/')&quot; /&gt;<br /></div></li><li class="li1"><div class="de1">&lt;xsl:value-of select=&quot;strTest&quot; /&gt;&lt;!-- the result from this line is nothing. --&gt;</div></li></ol></pre></code> </div>
<br />
if everything works fine, the result will be<br />
/01/02/<br />
<br />
<br />
i also try recursive concat using xsl:template, but that make me even more confuse :S<br />
Sitting and coding from 12 to 7pm, still couldn't understand why this doesn't work.<br />
<br />
anyone pls help me. my assignment deadline is coming real soon. T-T</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum134.html">XML, XSLT and XPATH</category>
			<dc:creator>micksatana</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread122932.html</guid>
		</item>
		<item>
			<title><![CDATA[value-of select and <h1> tag]]></title>
			<link>http://www.daniweb.com/forums/thread121901.html</link>
			<pubDate>Thu, 01 May 2008 11:15:47 GMT</pubDate>
			<description><![CDATA[Hey guys with regards to  <xsl:value-of select="Catalog/Product_Type/Name"> how would
i put that in a <h1> html tag which is defined in my css file.

 <div class="codeblock"> <div class="spaced"> <div class="light" style="float:right"> <a...]]></description>
			<content:encoded><![CDATA[<div>Hey guys with regards to  &lt;xsl:value-of select=&quot;Catalog/Product_Type/Name&quot;&gt; how would<br />
i put that in a &lt;h1&gt; html tag which is defined in my css file.<br />
<br />
<div style="margin:10px 20px 20px 20px"> <code style="margin:0px" dir="ltr" style="text-align:left">&lt;h1&gt;&lt;xsl:value-of select=&quot;Catalog/Product_Type/Name&quot;&gt;&lt;/h1&gt;</code> </div>
i get errors in xalan when i do that? The results of the value-of select i want it<br />
to be in a different font which is defined as &lt;h1&gt; in my css.<br />
	                             <br />
<br />
<div style="margin:10px 20px 20px 20px"> <code style="margin:0px" dir="ltr" style="text-align:left"><pre class="code"><ol><li class="li1"><div class="de1">&lt;xsl:template match=&quot;/&quot;&gt;<br /></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;<br /></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &lt;head&gt;<br /></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;title&gt;<br /></div></li><li class="li2"><div class="de2">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Phil's Bike Store<br /></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/title&gt;<br /></div></li><li class="li1"><div class="de1">&lt;link href=&quot;Store.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;/&gt;<br /></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &lt;/head&gt;<br /></div></li><li class="li1"><div class="de1">&nbsp;</div></li><li class="li2"><div class="de2">&nbsp; &nbsp; &nbsp; &nbsp; &lt;body&gt;<br /></div></li><li class="li1"><div class="de1">&nbsp;</div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &lt;h1&gt;Phil's Bike Store&lt;/h1&gt;<br /></div></li><li class="li1"><div class="de1">&nbsp;</div></li><li class="li1"><div class="de1">&nbsp;</div></li><li class="li2"><div class="de2">&nbsp; &nbsp; &nbsp; &nbsp; &lt;p&gt;<br /></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &lt;a href=&quot;#Road Bikes&quot;&gt;Road Bikes&lt;/a&gt;|<br /></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &lt;a href=&quot;#MTB Bikes&quot;&gt;MTB Bikes&lt;/a&gt;&nbsp; &nbsp; &nbsp; &nbsp; <br /></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &lt;a href=&quot;#clothing&quot;&gt;clothing&lt;/a&gt;&nbsp; &nbsp; |<br /></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &lt;a href=&quot;#Lights&quot;&gt;Lights&lt;/a&gt;&nbsp; &nbsp; &nbsp; &nbsp; |<br /></div></li><li class="li2"><div class="de2">&nbsp; &nbsp; &nbsp; &nbsp; &lt;a href=&quot;#Parts and Accesories&quot;&gt;Parts andAccesories&lt;/a&gt;<br /></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &lt;/p&gt;<br /></div></li><li class="li1"><div class="de1">&nbsp;</div></li><li class="li1"><div class="de1">&nbsp;</div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &lt;xsl:value-of select=&quot;Catalog/Product_Type/Name&quot;&gt;<br /></div></li><li class="li2"><div class="de2">&nbsp; &nbsp; &nbsp; &nbsp; &lt;/xsl:value-of&gt;<br /></div></li><li class="li1"><div class="de1">&nbsp;</div></li><li class="li1"><div class="de1">&nbsp;</div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &lt;/body&gt;<br /></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &lt;/html&gt;<br /></div></li><li class="li2"><div class="de2">&nbsp;</div></li><li class="li1"><div class="de1">&nbsp;</div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &lt;/xsl:template&gt;<br /></div></li><li class="li1"><div class="de1">&nbsp;</div></li><li class="li1"><div class="de1">&lt;/xsl:stylesheet&gt;<br /></div></li><li class="li2"><div class="de2">&nbsp;</div></li><li class="li1"><div class="de1">&nbsp;</div></li></ol></pre></code> </div></div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum134.html">XML, XSLT and XPATH</category>
			<dc:creator>musicmancanora4</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread121901.html</guid>
		</item>
		<item>
			<title>help regarding xsd schema</title>
			<link>http://www.daniweb.com/forums/thread121545.html</link>
			<pubDate>Tue, 29 Apr 2008 12:06:13 GMT</pubDate>
			<description><![CDATA[Hi,

this is my xml fragment

*<?xml version="1.0" encoding="ISO-8859-1"?>

<Table xmlns="urn:UMS-application" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance/UMS_APP.xsd">
<Row>
 <APP_ID>skumar</APP_ID>
 <APP_NAME>1</APP_NAME>]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
this is my xml fragment<br />
<br />
<b>&lt;?xml version=&quot;1.0&quot; encoding=&quot;ISO-8859-1&quot;?&gt;<br />
<br />
&lt;Table xmlns=&quot;urn:UMS-application&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance/UMS_APP.xsd&quot;&gt;<br />
&lt;Row&gt;<br />
 &lt;APP_ID&gt;skumar&lt;/APP_ID&gt;<br />
 &lt;APP_NAME&gt;1&lt;/APP_NAME&gt;<br />
 &lt;APP_DESC&gt;Sample test application 2&lt;/APP_DESC&gt;<br />
 &lt;ACTIVE&gt;true&lt;/ACTIVE&gt;<br />
 &lt;/Row&gt;<br />
 &lt;Row&gt;<br />
 &lt;APP_ID&gt;10&lt;/APP_ID&gt;<br />
 &lt;APP_NAME&gt;Test3&lt;/APP_NAME&gt;<br />
 &lt;APP_DESC&gt;sample test&lt;/APP_DESC&gt;<br />
&lt;ACTIVE&gt;true&lt;/ACTIVE&gt;<br />
&lt;/Row&gt;<br />
 &lt;Row&gt;<br />
 &lt;APP_ID&gt;11&lt;/APP_ID&gt;<br />
 &lt;APP_NAME&gt;Test4&lt;/APP_NAME&gt;<br />
 &lt;ACTIVE&gt;true&lt;/ACTIVE&gt;<br />
 &lt;/Row&gt;<br />
 &lt;/Table&gt; </b><br />
<br />
this is the xsd schema file for validating the above xml<br />
<br />
<b>&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;<br />
&lt;xs:schema id=&quot;UMS_APPS&quot; <br />
    targetNamespace=&quot;urn:UMS-application&quot;<br />
    xmlns=&quot;urn:UMS-application&quot; elementFormDefault=&quot;qualified&quot; <br />
    xmlns:xs=&quot;http://www.w3.org/2001/XMLSchema&quot;&gt;<br />
  &lt;xs:element name=&quot;Table&quot;&gt;<br />
    &lt;xs:complexType&gt;<br />
      &lt;xs:sequence&gt;<br />
        &lt;xs:element minOccurs=&quot;0&quot; maxOccurs=&quot;unbounded&quot; name=&quot;Row&quot;&gt;<br />
          &lt;xs:complexType&gt;<br />
            &lt;xs:sequence&gt;<br />
              &lt;xs:element name=&quot;APP_ID&quot; type=&quot;xs:positiveinteger&quot;/&gt;<br />
              &lt;xs:element name=&quot;APP_NAME&quot; type=&quot;xs:string&quot; /&gt;<br />
              &lt;xs:element minOccurs=&quot;0&quot; name=&quot;APP_DESC&quot; type=&quot;xs:string&quot; default=&quot;&quot;  /&gt;<br />
              &lt;xs:element name=&quot;ACTIVE&quot; type=&quot;xs:boolean&quot; /&gt;<br />
            &lt;/xs:sequence&gt;<br />
          &lt;/xs:complexType&gt;<br />
        &lt;/xs:element&gt;<br />
      &lt;/xs:sequence&gt;<br />
    &lt;/xs:complexType&gt;<br />
  &lt;/xs:element&gt;<br />
&lt;/xs:schema&gt;</b><br />
<br />
when I validate the xml using the xsd it is saying validation success.<br />
<br />
when I chenge the <b>appid</b> in xml to a string ,or <b>appname</b> to a integer value..still it running with out any errors.wher appid is of type integer and appname is of type string.plzz tell me whether there is any mistake in xsd file.<br />
<br />
thanks.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum134.html">XML, XSLT and XPATH</category>
			<dc:creator>santoo</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread121545.html</guid>
		</item>
		<item>
			<title>I Need a Help on WAP Application on Database connectivity</title>
			<link>http://www.daniweb.com/forums/thread120635.html</link>
			<pubDate>Wed, 23 Apr 2008 18:22:06 GMT</pubDate>
			<description>i am currently doing a wap site for a university project and i just wanted to know how to connect my site to my to a database basically SQL server, i understand that this may be a simple problem to solve, i am just unsure as to how i can do it, i cant use wml for this task. Any help would be well...</description>
			<content:encoded><![CDATA[<div>i am currently doing a wap site for a university project and i just wanted to know how to connect my site to my to a database basically SQL server, i understand that this may be a simple problem to solve, i am just unsure as to how i can do it, i cant use wml for this task. Any help would be well recieved (my e-mail is [snipped]<br />
<br />
Thanks</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum134.html">XML, XSLT and XPATH</category>
			<dc:creator>atplerry</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread120635.html</guid>
		</item>
	</channel>
</rss>
