XLST Programming Software Development by WaelTheNoble Dear All, I'm a newbie to both XML and XLST. I have an XML document that has the following code [… XML Transformations Programming Software Development by hanifa …) to format B. By surfing the websites, I found that XLST can do this.But these 2 formats dun not neccesarily…-tag,tag-to-attribute etc.. So in this case is XLST should still be able to achieve the needs or should… XSLT Node-set Parameter Programming Web Development by SurveyTool … new row for each cake. I have the following: Transformer.xlst: [CODE=XLST] <?xml version="1.0" encoding="… for-each function not correct? Programming Software Development by Edward67 … XML-file that i want to clean up with an XLST-file and save it as an new XML-file. I… Remove XML tags Programming Software Development by etm9413 … idea of how to do this with C# code or XLST in C#? Thanks Transformation Programming Software Development by WebStone …;. Please help as I don't know much writing in xlst. Thanks in advance. Re: Which language to learn? Programming Computer Science by samaru … a bonus, I also recommend you to learn some XML/XLST, CSS, and XQUERY if you have time. Re: Help me to get the output for this one.. Programming Software Development by Sudarshan_Kanna [QUOTE=iamthwee;439644]Looks like you need an xml parser or regex evaluator of some kind. Linux probably has a good regex library look there.[/QUOTE] cant it be done with only shell scrip using sed and awk as m not supposed to use a xlst parser Re: XSLT and DB2 data Programming Software Development by dilasing … format. Use apache FOP framework to create PDF files with XLST. You can read more at [url]http://www.ibm.com… Re: XSLT and DB2 data Programming Software Development by dilasing … database can be transformed to the HTML format by applying XLST stylesheet. To do this, DB2 V9.5 introduces the xsltransform… Re: XPath Match Assertion problem in SoapUI Programming Software Development by iceandrews …, so is this related to schema? Or are you using XLST to check some data inside them? Re: How to create a custom validator in vb.net Programming Software Development by codeorder … With New OpenFileDialog .Filter = "Only myCool Excel Files|*.xls;*.xlst" If .ShowDialog = Windows.Forms.DialogResult.OK Then MsgBox("… Re: Changing Plain XML into Customized XML using XSLT Programming Software Development by naomimoogle This is my XLST <?xml version="1.0"?> <xsl:… Re: XLST Programming Software Development by xml_looser ther is a problem to solve tag DOC because thernnot enought tag when modify your xml datei to [CODE] <?xml version="1.0" encoding="WINDOWS-1256"?> <?xml-stylesheet type="text/xsl" href="NameEntity.xsl"?> <DOC> <Text> We are going to </Text> <ENAMEX Type=&… Re: XLST Programming Software Development by WaelTheNoble Thanks a lot for your reply. It helped me a lot. But I want to ask one more question: Is there any way that I can do this without adding the tag? I have a lot of data that is tag with the scheme that I have mentioned before. It will be hard to modify. Do you mean that the way by which the XML file is written is incorrect?. Thanks in advance, Re: XLST Programming Software Development by xml_looser use a sax parser in Java example [CODE] package javaapplication2; import java.io.*; import org.xml.sax.*; import org.xml.sax.helpers.*; import javax.xml.parsers.*; public class Main extends DefaultHandler { private boolean tag = false; private int level = 0; private String xmltext= ""; private String … Re: XLST Programming Software Development by WaelTheNoble Thanks for your great effort. XLST help Programming Software Development by xsltnewbie I have the following xml source file : [code=xml]<root> <child1></child1> <child2></child2> </root>[/code] I would like to convert it to [code=xml]<MYOWNTAG1> <CURRENTDATE>CurrentDate</CURRENTDATE> <CURRENTTIME>CurrentTime</CURRENTTIME> </MYOWNTAG1> <MYOWNTAG2> <… Re: XLST help Programming Software Development by xml_looser this is only possible with xsl parser support EXSLT not so microsoft products better not use xml tag as name xsl [CODE] <?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:datetime="http://exslt.org/dates-and-… how to extract the value of <xsl:element> within the same xlst and assign to variable Programming Software Development by lizmehta Hi, I am just a beginner to XSLT. My Input XMLs is like - <?xml version="1.0" encoding="UTF-8"?> <ABC> <filter> <name>Key Value</name> <value><![CDATA[A=344#B=123445#C=432#D=1432#E=16485]]></value> </filter> </ABC> I have made a XSLT which … How To Convert SQL Stored Procedure to XML/XLST with C# Programming Web Development by Charles.m Hello, I am getting the contents on my website from database using SQL Stored Procedure (C#). Now, I want to change the output look with XML / XSLT. How can I do this? Something like this http://forums.asp.net/t/1230093.aspx/1 but am not sure how to go about it, am new to C# .NET My sample code. SqlConnection objConn = new SqlConnection();… Re: How To Convert SQL Stored Procedure to XML/XLST with C# Programming Web Development by hericles If you want to alter the way the results look on the page you can always include HTML in your literal control and apply CSS classes. Much easier than XSLT. Or do you want to change the database output to XML? Re: How To Convert SQL Stored Procedure to XML/XLST with C# Programming Web Development by Charles.m Thank you very much hericles. I don't necessarily have to output it as XML but I think it will be the only way to add somethings I need like making my content READ MORE, I just want to alter the way the result look. [QUOTE]EXAMPLE What I have currently: Test Item 1 12/5/2011 8:02:07 PM Test Item 1 Summary Test Item 2 12/5/2011 8:… Re: XML Transformations Programming Software Development by jwenting XSLT is the tool for the job, you just need to write an XSLT stylesheet to perform the transformation you want, and away you go. How you write that XSLT is the tricky part, books have been written about it. It's a complex programming language in its own right. Re: XML Transformations Programming Software Development by MattEvans XSLT processors generally use SAX and DOM as the core parser and RAM organisation method respectively. SAX is a very low-level XML-to-event-chain parser, and DOM is just a list of interconnected nodes. XSLT is a definition language that can sit on top of that, controlling the process of turning an input DOM into an output DOM. Anything you… Re: XML Transformations Programming Software Development by jwenting [quote]Anything you write in XSLT could be implemented using SAX and DOM,[/quote] but why reinvent the wheel (as you'd effectively be making something similar to XSLT if you wanted any flexibility)... XSLT is relatively easy to learn (though hard to master), reasonably fast (if you know what you're doing), and extremely flexible. Re: XML Transformations Programming Software Development by hanifa hi guys, sorry for the late reply..Was away for a few days. Anyways, my collegue passed me a partially completed xsl file and he told me, he was using Pyana (XSL parser).. What I want to know is that how can I ensure that the xsl file will completely parse all tags and attributes..I could try tens of xml files but it still wouldnt be … Re: XML Transformations Programming Software Development by MattEvans Unless your input stylesheet is extremely simple, the XSL processor deliberately wont parse all tags in an input file. XSL is like a data filtering language... it absolutely depends on you knowing the input schema, and knowing how to translate every part of the input document into an output document. It's also quite top-down. Unless you make … Re: XSLT Node-set Parameter Programming Web Development by SurveyTool In the event someone ever comes across this problem: I eventually sorted it by using XslCompiledTransform rather than XslTransform which is apparently now obselete. XslCompiledTransform doesn't seem to be compatible with the xml web control so I got rid of it and just output my transformation to a div using StringWriter. Probably not the way … Re: for-each function not correct? Programming Software Development by fpmurphy Th output that you request is not a valid XML document i.e. [code] <?xml version="1.0" encoding="UTF-8"?> <index> <title>title 1</title> <sub> <subtitle>subtitle1</subtitle> <number>11111</number> <description>description1</description> <image>…