Is XSLT worth it? - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T03:21:57Zhttp://stackoverflow.com/feeds/question/78716http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/78716/is-xslt-worth-it24Is XSLT worth it?nickf2008-09-17T00:43:50Z2009-10-08T18:55:46Z
<p>A while ago, I started on a project where I designed a html-esque XML schema so that authors could write their content (educational course material) in a simplified format which would then be transformed into HTML via XSLT. I played around (struggled) with it for a while and got it to a very basic level but then was too annoyed by the limitations I was encountering (which may well have been limitations of my knowledge) and when I read a blog suggesting to ditch XSLT and just write your own XML-to-whatever parser in your language of choice, I eagerly jumped onto that and it's worked out brilliantly.</p>
<p>I'm still working on it to this day (<em>I'm actually supposed to be working on it right now, instead of playing on SO</em>), and I am seeing more and more things which make me think that the decision to ditch XSLT was a good one.</p>
<p>I know that XSLT has its place, in that it is an accepted standard, and that if everyone is writing their own interpreters, 90% of them will end up on DailyWTF. But given that it is a <a href="http://en.wikipedia.org/wiki/Functional_programming" rel="nofollow">functional style language</a> instead of the procedural style which most programmers are familiar with, for someone embarking on a project such as my own, <strong>would you recommend they go down the path that I did, or stick it out with XSLT</strong>?</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/78736#787360Answer by spoon16 for Is XSLT worth it?spoon162008-09-17T00:48:11Z2008-09-17T00:53:15Z<p>The <a href="http://www.w3.org/TR/xslt" rel="nofollow">XSLT specification</a> defines XSLT as "a language for transforming XML documents into other XML documents". If you are trying to do any thing but the most basic data processing within XSLT there are probably better solutions.</p>
<p>Also worth noting that the data processing capabilities of XSLT can be extended in .NET using custom extension functions:</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/system.xml.xsl.xsltargumentlist.addextensionobject.aspx" rel="nofollow">MSDN Documentation</a></li>
<li><a href="http://www.csharpfriends.com/Articles/getArticle.aspx?articleID=64" rel="nofollow">CSharpFriends: Tutorial</a></li>
</ul>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/78747#787470Answer by Tom Martin for Is XSLT worth it?Tom Martin2008-09-17T00:51:12Z2008-09-17T01:56:47Z<p>I still believe that XSLT can be useful but it is an ugly language and can lead to an awful unreadable, unmaintainable mess. Partly because XML is not human readable enough to make up a "language" and partly because XSLT is stuck somewhere between being declarative and procedural. Having said that, and I think a comparison can be drawn with regular expressions, it has it's uses when it comes to simple well defined problems.</p>
<p>Using the alternative approach and parsing XML in code can be equally nasty and you really want to employ some kind of XML marshalling/binding technology (such as JiBX in Java) that will convert your XML straight to an object.</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/78748#787483Answer by Tom Leys for Is XSLT worth it?Tom Leys2008-09-17T00:51:22Z2008-09-17T00:51:22Z<p>Personally I used XSLT in a totally different context. The computer game that I was working on at the time used tons of UI pages defined using XML. During a major refactor shortly after a release we wanted to change the structure of these XML documents. We made the game's input format follow a much better and schema aware structure.</p>
<p>XSLT seemed the perfect choice for this translation from old format -> New format. Within two weeks I had a working conversion from old to new for our hundreds of pages. I was also able to use it to extract lots of information on the layout of our UI pages. I created lists of which components were imbedded in which relatively easily which I then used XSLT to write into our schema definitions.</p>
<p>Also, coming from a C++ background, it was a very fun and interesting language to master.</p>
<p>I think that as a tool to translate XML from one format to another it is fantastic. However, it is not the only way to define an algorithm that takes XML as an input and outputs <em>Something</em>. If your algorithm is sufficiently complex, the fact that the input is XML becomes irrelevant to your choice of tool - i.e roll your own in C++ / Python / whatever.</p>
<p>Specific to your example, I would imagine the best idea would be to create your own XML->XML convert that follows your business logic. Next, write a XSLT translator that just knows about formatting and does nothing clever. That might be a nice middle ground but it totally depends what you are doing. Having a XSLT translator on the output makes it easier to create alternative output formats - printable, for mobiles, etc.</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/78761#787610Answer by Shmoggle for Is XSLT worth it?Shmoggle2008-09-17T00:55:30Z2008-09-17T00:55:30Z<p>XSLT is not the end-all be-all of xml transformation. However, it's very difficult to judge based on the information given if it would have been the best solution to your problem or if there are other more efficient and maintainable approaches. You say the authors could enter their content in a simplified format - what format? Text boxes? What kind of html were you converting it to?
To judge whether XSLT is the right tool for the job, it would help to know the features of this transformation in more detail.</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/78763#787630Answer by Jason Jackson for Is XSLT worth it?Jason Jackson2008-09-17T00:56:00Z2008-09-17T00:56:00Z<p>I have spent a lot of time in XSLT and found that while it is a useful tool in some situations, it is definitely not a fix all. It works very well for B2B purposes when it is used for data translation for machine-readable XML input/output. I don't think you are on the wrong track in your statement of its limitations. One of the things that frustrated me the most were the nuances in the implementations of XSLT. </p>
<p>Perhaps you should look at some of the other markup languages available. I believe Jeff did an article about this very topic concerning Stack Overflow.</p>
<p><a href="http://www.codinghorror.com/blog/archives/001116.html" rel="nofollow">Is HTML a Humane Markup Language?</a></p>
<p>I would take a look at what he wrote. You can probably find a software package that does what you want "out of the box", or at least very close instead of writing your own stuff from the ground up.</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/78786#787860Answer by fd for Is XSLT worth it?fd2008-09-17T01:00:11Z2008-09-17T01:00:11Z<p>I too have made forays into the world of XSLT and I found it to be a little awkward in places. I think my main issue was in the difficulty in converting "pure data" XML into a complete HTML page. In hindsight, perhaps using XSLT to generate a page fragment that could be composed together with other fragments using Server Side Scripting (eg SSI) would have solved many of my issues.</p>
<p>One of the possible mistakes was to try and construct a common page layout to surround my data by importing XHTML or other XML data in using the document() function.</p>
<p>The other mistake was trying to do programatic things like create a general template to generate tables on XML data with logic that did things like use different background row colours for rows with certain values and allow you to specify some columns to be filtered out. </p>
<p>Not to mention trying to construct a string list of values from XML data that seemed only to be solvable using recursive template calls.</p>
<p>What did I gain? Well, the page source is XML data right there and available to the viewer. Data and presentation are neatly separated.</p>
<p>Would I do it again? Probably not, unless I really wanted data/presentation separation on a <strong>static</strong> page. Otherwise, I'd probably write a Rails or JEE app that could generate an XML view or an HTML view using templating - all the benefits, but with a much more natural (for me) programming language at my fingertips.</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/78805#788056Answer by Crusty for Is XSLT worth it?Crusty2008-09-17T01:03:34Z2008-09-17T01:03:34Z<p>I remember all the hype around XSLT when the standard was newly released. All the excitement around being able built an entire HTML UI with a 'simple' transform. </p>
<p>Let’s face it, it is hard to use, near impossible to debug, often unbearably slow. The end result is nearly always quirky and less than ideal.</p>
<p>I will sooner gnaw off my own leg than use an XSLT while there are better ways to do things. Still it has its places, its good for simple transform tasks. </p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/78812#788120Answer by bhiggins for Is XSLT worth it?bhiggins2008-09-17T01:04:22Z2008-09-17T01:04:22Z<p>I enjoy using XSLT only for changing the tree structure of XML documents. I find it cumbersome to do anything related to text processing and relegate that to a custom script that I may run before or after applying an XSLT to an XML document.</p>
<p>XSLT 2.0 included a lot more string functions, but I think it's not a good fit for the language, and there's not many implementations of XSLT 2.0.</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/78819#788191Answer by Mashed Potato for Is XSLT worth it?Mashed Potato2008-09-17T01:05:35Z2008-09-17T01:05:35Z<p>I maintain an online documentation system for my company. The writers create the documentation in SGML ( an xml like language ). The SGML is then combined with XSLT and transformed into HTML.</p>
<p>This allows us to easily make changes to the documentation layout without doing any coding. Its just a matter of changing the XSLT.</p>
<p>This works well for us. In our case, its a read only document. The user isn't interacting with the documentation.</p>
<p>Also, by using XSLT, you are working closer to your problem domain (HTML). I always consider that to be good idea.</p>
<p>Lastly, if your current system WORKS, leave it alone. I would never suggest trashing your existing code. If I was starting from scratch, I would use XSLT, but in your case, I would use what you have.</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/78841#788412Answer by mcherm for Is XSLT worth it?mcherm2008-09-17T01:09:42Z2008-09-17T01:09:42Z<p>I have found XSLT to be quite difficult to work with.</p>
<p>I have had experience working on a system somewhat similar to the one you describe. My company noted that the data we were returning from "the middle tier" was in XML, and that the pages were to be rendered in HTML which might as well be XHTML, plus they'd heard that XSL was a standard for transforming between XML formats. So the "architects" (by which I mean people who think deep design thoughts but apparently never code) decided that our front tier would be implemented by writing XSLT scripts that transformed the data into the XHTML for display.</p>
<p>The choice turned out to be disastrous. XSLT, it turns out, is a pain to write. And so all of our pages were difficult to write and to maintain. We would have done much better to have used JSP (this was in Java) or some similar approach that used one kind of markup (angle brackets) for the output format (the HTML) and another kind of markup (like <%...%>) for the meta-data. The most confusing thing about XSLT is that it is written in XML, and it translates from XML to XML... it is quite difficult to keep all 3 different XML documents straight in one's mind.</p>
<p>Your situation is slightly different: instead of authoring each page in XSLT as I did, you only need to write ONE bit of code in XSLT (the code to convert from templates to display). But it sounds like you may have run into the same kind of difficulty that I did. I would say that trying to interpret a simple XML-based DSL (domain specific language) like you are doing is NOT one of the strong points of XSLT. (Although it CAN do the job... after all, it IS Turing complete!)</p>
<p>However, if what you had was simpler: you have data in one XML format and wanted to make simple alterations to it -- not a full page-description DSL, but some simple straightforward modifications, then XSLT is an excellent tool for that purpose. It's declarative (not procedural) nature is actually an advantage for that purpose.</p>
<p>-- Michael Chermside</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/78862#788620Answer by Larry OBrien for Is XSLT worth it?Larry OBrien2008-09-17T01:13:32Z2008-09-17T01:13:32Z<p>I think you did the right thing. In my experience, XSLT developers are among the very hardest to hire, because it's a language that never caught on either with Web developers nor with casual programmers.</p>
<p>So you end up having to pay the "advanced programmer who knows a language outside the mainstream" premium, but for a language that is probably not that programmer's favorite. </p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/78920#7892029Answer by Steve Jessop for Is XSLT worth it?Steve Jessop2008-09-17T01:26:23Z2008-09-17T01:26:23Z<p>Advantages of XSLT:</p>
<ul>
<li>Domain-specific to XML, so for example no need to quote literal XML in the output.</li>
<li>Supports XPath/XQuery, which can be a nice way to query DOMs, in the same way that regular expressions can be a nice way to query strings.</li>
<li>Functional language.</li>
</ul>
<p>Disadvantages of XSLT:</p>
<ul>
<li>Can be obscenely verbose - you don't have to quote literal XML, which effectively means you do have to quote code. And not in a pretty way. But then again, it's not much worse than your typical SSI.</li>
<li>Doesn't do certain things which most programmers take for granted. For instance string manipulation can be a chore. This can lead to "unfortunate moments" when novices design code, then frantically search the web for hints how to implement functions they assumed would just be there and didn't give themselves time to write.</li>
<li>Functional language.</li>
</ul>
<p>One way to get procedural behaviour, by the way, is to chain multiple transforms together. After each step you have a brand new DOM to work on which reflects the changes in that step. Some XSL processors have extensions to effectively do this in one transform, but I forget the details.</p>
<p>So, if your code is mostly output and not much logic, XSLT can be a very neat way to express it. If there is a lot of logic, but mostly of forms which are built in to XSLT (select all elements which look like blah, and for each one output blah), it's likely to be quite a friendly environment. If you fancy thinking XML-ishly at all times, then give XSLT 2 a go.</p>
<p>Otherwise, I'd say that if your favourite programming language has a good DOM implementation supporting XPath and allowing you to build documents in a useful way, then there are few benefits to using XSLT. Bindings to libxml2 and gdome2 should do nicely, and there's no shame in sticking to general-purpose languages you know well.</p>
<p>Home-grown XML parsers are usually either incomplete (in which case you'll come unstuck some day) or else not much smaller than something you could have got off the shelf (in which case you're probably wasting your time), and give you any number of opportunities to introduce severe security issues around malicious input. Don't write one unless you know exactly what you gain by doing it. Which is not to say you can't write a parser for something simpler than XML as your input format, if you don't need everything that XML offers.</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/78948#789481Answer by SpongeJim for Is XSLT worth it?SpongeJim2008-09-17T01:32:18Z2008-09-17T01:32:18Z<p>It comes down to what you need it for. Its main strength is the easy maintainability of the transform, and writing your own parser generally obliterates that. With that said, sometimes a system is small and simple and really doesn't need a "fancy" solution. As long as your code-based builder is replaceable without having to change other code, no big deal.</p>
<p>As for the ugliness of XSL, yes it's ugly. Yes, it takes some getting used to. But once you get the hang of it (shouldn't take long IMO), it's actually smooth sailing. Compiled transforms run quite quickly in my experience, and you can certainly debug into them.</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/79025#790253Answer by Nat for Is XSLT worth it?Nat2008-09-17T01:43:08Z2008-09-17T01:43:08Z<p>I would definitely reccomend to stick it out. Particularly if you are using visual studio which has built in editing, viewing and debugging tools for XSLT. </p>
<p>Yes, it is a pain while you are learning, but most of the pain is to do with familiarity. The pain does diminish as you learn the language.</p>
<p>W3schools has two articles that are of particular worth:
<a href="http://www.w3schools.com/xpath/xpath_functions.asp" rel="nofollow">http://www.w3schools.com/xpath/xpath_functions.asp</a>
<a href="http://www.w3schools.com/xsl/xsl_functions.asp" rel="nofollow">http://www.w3schools.com/xsl/xsl_functions.asp</a></p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/190971#1909710Answer by Murphy for Is XSLT worth it?Murphy2008-10-10T11:59:43Z2008-10-10T11:59:43Z<p>I need to work with XSLT here because some one thought it is a good idea to solve a given problem: We need to extract some data from multiple XML-Files and join it together to different output formats for different tools that do further processing.</p>
<p>Fisrt I thought XSLT is a very nice idea, because it is a standard you can rely on. This is true for simple formating tasks where you do not need to much programming logic or algorithms in your code.</p>
<p>But: It is quite a step learning curve, as it is <em>not</em> procedural. If you got used to procedural programming (C,Java,Perl,PHP, etc) you are going to miss a lot of common structs or you will wonder about things that just luck cubersome and sometimes not really readable by an untrained eye.
For example writing "resuseable" code: If you need to do something over and over again in different places, in procedural programming, you would define a function to do so. You may achive such things in XSLT as well, but its for more code to write and is not as readable/understandable as a normal function would be.</p>
<p>The main problem I have, is that many people comming from a procedural background worked on the XSLT-Files by now, and almost everyone just "emulated" what he needed.</p>
<p>So as a conclusion: I don't see XSLT as "the ultimate" solution anymore. In fact it is pain to read or write some constructs in XSLT. For most cases you will have to think about the application: For simple transformation I will probably use XSLT again. But for more complex software I will not use it again.</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/190981#1909813Answer by David Robbins for Is XSLT worth it?David Robbins2008-10-10T12:05:41Z2008-10-10T12:05:41Z<p>XSLT is difficult to work with, but once you conquer it you will have a very thorough understanding of the DOM and schema. If you also XPath, then you on your way to learning functional programming and this will expose to new techniques and ways about solving problems. In some cases, successive transformation is more powerful than procedural solutions.</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/228838#2288380Answer by Goran for Is XSLT worth it?Goran2008-10-23T07:22:34Z2008-10-23T07:22:34Z<p>I'm currently tasked with scraping data from a public site (yeah, i know). Thankfully it conforms to xhtml so I'm able to use xslt to gather the data I need. The resulting solution is readable, clean and easy to change if need occurs. Perfect!</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/228853#2288530Answer by Midhat for Is XSLT worth it?Midhat2008-10-23T07:31:44Z2008-10-23T07:31:44Z<p>Talking about interoprability, XML is a standard for information storage. A whole lot of tools produce output in XML, and what better(or easier) way to present it than embed a browser in your app and format the XML and put it into the browser.</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/264501#2645010Answer by Vinh for Is XSLT worth it?Vinh2008-11-05T06:47:48Z2008-11-05T06:47:48Z<p>In my opinion Yes.</p>
<p>For a great example of a really cool use of XSLT, check out blizzard's world of warcraft armory.</p>
<p><a href="http://www.wowarmory.com" rel="nofollow">http://www.wowarmory.com</a></p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/301475#30147520Answer by annakata for Is XSLT worth it?annakata2008-11-19T10:27:11Z2008-11-19T10:27:11Z<p>So much negativity!</p>
<p>I've been using XSLT for a good few years now, and genuinely love it. The key thing you have to realise is that <em>it's not a programming language it's a templating language</em> (and in this respect I find it indescribably superior to asp.net /spit).</p>
<p>XML is the de facto data format of web development today, be it config files, raw data or in memory reprsentation. XSLT and XPath give you an <em>enormously</em> powerful and very efficient way to transform that data into any output format you might like, instantly giving you that MVC aspect of separating the presentation from the data. </p>
<p>Then there's the utility abilities: washing out namespaces, recognising disparate schema definitions, merging documents.</p>
<p>It <em>must</em> be better to deal with XSLT than developing your own in-house methods. At least XSLT is a standard and something you could hire for, and if it's ever really a problem for your team it's very nature would let you keep most of your team working with just XML.</p>
<p>A real world use case: I just wrote an app which handles in-memory XML docs throughout the system, and transforms to JSON, HTML, or XML as requested by the end user. I had a fairly random request to provide as Excel data. A former colleague had done something similar programatically but it required a module of a few class files and that the server had MS Office installed! Turns out Excel has an XSD: new functionality with minimum basecode impact in 3 hours.</p>
<p>Personally I think it's one of the cleanest things I've encountered in my career, and I believe all of it's apparent issues (debugging, string manipulation, programming structures) are down to a flawed understanding of the tool.</p>
<p>Obviously, I strongly believe it is "worth it".</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/1270581#12705810Answer by silky for Is XSLT worth it?silky2009-08-13T07:39:14Z2009-08-13T07:39:14Z<p>No I don't use XSLT.</p>
<p>No I'd never advise anyone to use it.</p>
<p>No I don't consider it useful.</p>
<p>Yes I'd be happy to never see it, or most forms of XML, again.</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/1270602#12706021Answer by 280Z28 for Is XSLT worth it?280Z282009-08-13T07:47:04Z2009-08-13T07:47:04Z<p>I've used XSLT before. The group of 6 .xslt files (refactored out of one large one) was about 2750 lines long before I rewrote it in C#. The C# code is currently 4000 lines containing lots of logic; I don't even want to think about what that would have taken to write in XSLT.</p>
<p>The point where I gave up is when I realized not having XPATH 2.0 was significantly hurting my progress.</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/1270604#127060413Answer by Bill Karwin for Is XSLT worth it?Bill Karwin2009-08-13T07:47:16Z2009-08-13T07:47:16Z<p>XSLT is an example of a <a href="http://en.wikipedia.org/wiki/Declarative%5Fprogramming" rel="nofollow">declarative programming</a> language. </p>
<p>Other examples of declarative programming languages include regular expressions, Prolog, and SQL. All of these are highly expressive and compact, and usually very well designed and powerful for the task for which they are designed.</p>
<p>However, software developers generally hate such languages, because they are so different from more mainstream OO or procedural languages that they're hard to learn and debug. Their compact nature generally makes it very easy to do a lot of damage inadvertently.</p>
<p>So while XSLT is an efficient mechanism to merge data into presentation, it fails in the ease-of-use department. I believe that's why it hasn't really caught on.</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/1270612#12706120Answer by Aaron Digulla for Is XSLT worth it?Aaron Digulla2009-08-13T07:49:34Z2009-08-13T07:49:34Z<p>I did use XSLT extensively ... for a couple of hours. It's cool for things like changing element names or filtering an input document (stripping stuff away that you don't need).</p>
<p>Anything else gets complex very quickly. This inherit complexity plus the lack of most things you're used from any other programming languages (like variables) and the easy ways to make XPath expressions unreadable, really hurt.</p>
<p>In the end, XSLT suffers from a schisma: Programmers don't like it because of the limitations and everyone else can't use it at all (say, web designers or any other non-programmer type). </p>
<p>If XSLT had been promoted as some kind of SQL for XML, things would be a bit different. First, people wouldn't have even bothered to look at it. And those who did wouldn't have been surprised by the pain.</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/1270614#12706140Answer by Darknight for Is XSLT worth it?Darknight2009-08-13T07:49:40Z2009-08-13T11:26:50Z<p>I think the concept is sound, perhaps the execution is not as 'clean' as it could be.</p>
<p>However I think it should be treated as a tool, it may not be wise to use it in every instance, however one should never ignore a tool when solving solutions.</p>
<p>I have seen very good XSLT, and also very bad use of XSLT, and I conclude some of it may be down to the skill of the developer. I think its one that requires for the developer to think in multiple domains at the same time.</p>
<p>Is it the future? maybe not, maybe there are better solutions..</p>
<p>I don't know what new technology is going to come along, but at least its best to learn it, increasing ones own tool set can't be a bad thing surely?</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/1270628#12706284Answer by Alohci for Is XSLT worth it?Alohci2009-08-13T07:52:01Z2009-08-13T08:00:44Z<p>Yes, I use it a lot. By using different xslt files, I can use the same XML source to create multiple polyglot (X)HTML files (presenting the same data in different ways), a RSS feed, an Atom feed, a RDF descriptor file and fragment of a site map.</p>
<p>It's not a panacea. There are things it does well, and things it doesn't do well, and like all other aspects of programming, it's all about using the right tool for the right job. It's a tool that's well worth having in your toolbox but it should used only when it's appropriate to do so.</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/1270634#12706341Answer by Dawie Strauss for Is XSLT worth it?Dawie Strauss2009-08-13T07:53:18Z2009-08-13T07:53:18Z<p>To answer your three questions:</p>
<ol>
<li>I've used XSLT once some years ago.</li>
<li>I do believe XSLT could be the right solution in certain circumstances. (Never say never)</li>
<li>I tend to agree with your assesment that it is mostly useful for 'simple' transformations. But I think as long as you understand XSLT well, there is a case to be made for using it for bigger tasks like publishing a website as XML transformed into HTML.</li>
</ol>
<p>I believe the reason many developers dislike XSLT is because they do not understand the fundamentally different paradigm it is based on. But with the recent interest in functional programming we might see XSLT making a comeback...</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/1270665#12706655Answer by bendin for Is XSLT worth it?bendin2009-08-13T08:01:28Z2009-08-13T08:01:28Z<p>I use XSLT (for lack of better alternative), but not for presentation, just for transformation:</p>
<ol>
<li><p>I write short XSLT transformations to do mass edits on our maven pom.xml files.</p></li>
<li><p>I've written a pipeline of transformations to generate XML Schemas from XMI (UML Diagram). It worked for a while, but it finally got too complex and we had to take it out behind the barn.</p></li>
<li><p>I've used transformations to refactor XML Schemas.</p></li>
<li><p>I've worked around some limitations in XSLT by using it to generate an XSLT to do the real work. (Ever tried to write an XSLT that produces an output using namespaces that aren't known until runtime?)</p></li>
</ol>
<p>I keep coming back to it because it does a better job round-tripping the XML it's processing than other approaches I've tried, which have seemed needlessly lossy or simply misunderstand XML. XSLT is unpleasant, but I find using <a href="http://www.oxygenxml.com/" rel="nofollow">Oxygen</a> makes it bearable.</p>
<p>That said, I'm investigating using <a href="http://clojure.org/" rel="nofollow">Clojure</a> (a lisp) to perform transformations of XML, but I haven't gotten far enough yet to know if that approach will bring me benefits.</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/1270668#127066815Answer by Adam Batkin for Is XSLT worth it?Adam Batkin2009-08-13T08:02:09Z2009-08-13T08:02:09Z<p>We use XSLT extensively for things like documentation, and making some complex configuration settings user-serviceable.</p>
<p>For documentation, we use a lot of DocBook, which is an XML-based format. This lets us store and manage our documentation with all of our source code, since the files are plain text. With XSLT, we can easily build our own documentation formats, allowing us to both autogenerate the content in a generic way, and make the content more readable. For example, when we publish release notes, we can create XML that looks something like:</p>
<pre><code><ReleaseNotes>
<FixedBugs>
<Bug id="123" component="Admin">Error when clicking the Foo button</Bug>
<Bug id="125" component="Core">Crash at startup when configuration is missing</Bug>
<Bug id="127" component="Admin">Error when clicking the Bar button</Bug>
</FixedBugs>
</ReleaseNotes>
</code></pre>
<p>And then using XSLT (which transforms the above to DocBook) we end up with nice release notes (PDF or HTML usually) where bug IDs are automatically linked to our bug tracker, bugs are grouped by component, and the format of everything is perfectly consistent. And the above XML can be generated automatically by querying our bug tracker for what has changed between versions.</p>
<p>The other place where we have found XSLT to be useful is actually in our core product. Sometimes when interfacing with third-party systems we need to somehow process data in a complex HTML page. Parsing HTML is ugly, so we feed the data through something like <a href="http://home.ccil.org/~cowan/XML/tagsoup/" rel="nofollow">TagSoup</a> (which generates proper SAX XML events, essentially letting us deal with the HTML as if it were properly written XML) and then we can run some XSLT against it, to turn the data into a "known stable" format that we can actually work with. By separating out that transformation into an XSLT file, that means that if and when the HTML format changes, the application itself does not need to be upgraded, instead the end-user can just edit the XSLT file themselves, or we can e-mail them an updated XSLT file without the entire system needing to be upgraded.</p>
<p>I would say that for web projects, there are better ways to handle the view side than XSLT today, but as a technology there are definitely uses for XSLT. It's not the easiest language in the world to use, but it is definitely not dead, and from my perspective still has lots of good uses.</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/1270673#12706730Answer by Totonga for Is XSLT worth it?Totonga2009-08-13T08:03:35Z2009-08-13T08:03:35Z<p>I use XSLT to correct errors in very complexe xml files. So instead of handling the errors in the xml I use xslt to correct them.</p>
<p>This is great. Because the language is so powerful and it fits the xml use case.
To do the same things in an ususal programming language it would took me real long time to adapt my code every time a new flavour arises.</p>
<p>Its also usefult to migrate visual studio solutions without letting microsoft decide which things to change. So convert one solution. Check what changed. Revert the things you do not want to change and run the xslt script doing the job on all files.</p>
<p>So I never used it to do web presentations or something like this but it helps me in my xml based problems. And to solve these issues its really really powerful and really worth having a look on it.</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/1270707#12707074Answer by Pavel Minaev for Is XSLT worth it?Pavel Minaev2009-08-13T08:10:11Z2009-08-13T08:10:11Z<p>I've used XSLT (and also XQuery) extensively for various things - to generate C++ code as part of build process, to produce documentation from doc comments, and within an application that had to work with XML in general and XHTML in particular a lot. The code generator in particular was in excess of 10,000 lines of XSLT 2.0 code spread around about a dozen separate files (it did a lot of things - headers for clients, remoting proxies/stubs, COM wrappers, .NET wrappers, ORM - to name a few). I inherited it over another guy who didn't really understand the language well, and the older bits were consequently quite a mess. Newer stuff that we wrote was mostly kept sane and readable, however, and I do not recall any particular problems with achieving that. It was certainly not any harder than doing it for C++.</p>
<p>Speaking of versions, dealing with XSLT 2.0 definitely helps keep you sane, but 1.0 is still alright for simpler transforms. In its niche, it is an extremely handy tool, and the productivity you get from certain domain-specific features (most importantly, dynamic dispatch via template matching) is hard to match. Despite the perceived wordiness of XSLT's XML-based syntax, the same thing in LINQ to XML (even in VB with XML literals) was usually several times longer. Quite often, however, it gets undeserved flack because of unnecessary use of XML in some case in the first place.</p>
<p>To sum it up: it is an incredibly useful tool to have in one's toolbox, but it is a very specialized one, so it is good so long as you use it properly and for its intended purpose. I really wish there was a proper, native .NET implementation of XSLT 2.0. </p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/1270733#12707330Answer by Jack Ryan for Is XSLT worth it?Jack Ryan2009-08-13T08:17:36Z2009-08-13T08:17:36Z<p>One place where xslt really shines is in generating reports. I've found that a 2 step process, with the first step exporting the report data as an xml file, and the second step generating the visual report from the xml using xslt. This allows for nice visual reports while still keeping the raw data around as a validation mechanism if needs be.</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/1270746#12707462Answer by Eamon Nerbonne for Is XSLT worth it?Eamon Nerbonne2009-08-13T08:21:09Z2009-08-13T08:21:09Z<p>I use XSLT extensively, for a custom MVC style front-end. The model is "serialized" to xml (not via xml serializaiton), and then converted to html via xslt. The advantage over ASP.NET lie in the natural integration with XPath, and the more rigorous well-formedness requirements (it's much easier to reason about document structure in xslt than in most other languages).</p>
<p>Unfortunately, the language contains several limitations (for example, the ability to transform the output of another transform) which mean that it's occasionally frustrating to work with.</p>
<p>Nevertheless, the easily achievable, strongly enforced separation of concerns which it grants aren't something I see another technology providing right now - so for document transforms it's still something I'd recommend.</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/1270757#12707572Answer by Phil Nash for Is XSLT worth it?Phil Nash2009-08-13T08:24:24Z2009-08-13T08:24:24Z<p>If you can use XSLT in a declarative style (although I don't entirely agree that it is declarative language) then I think it is useful and expressive.</p>
<p>I've written web apps that use an OO language (C# in my case) to handle the data/ processing layer, but output XML rather than HTML. This can then be consumed directly by clients as a data API, or rendered as HTML by XSLTs. Because the C# was outputting XML that was structurally compatible with this use it was all very smooth, and the presentation logic was kept declarative. It was easier to follow and change than sending the tags from C#.</p>
<p>However, as you require more processing logic at the XSLT level it gets convoluted and verbose - even if you "get" the functional style.</p>
<p>Of course, these days I'd probably have written those web apps using a RESTful interface - and I think data "languages" such as JSON are gaining traction in areas that XML has traditionally been transformed by XSLT. But for now XSLT is still an important, and useful, technology.</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/1270863#12708632Answer by Sam for Is XSLT worth it?Sam2009-08-13T08:55:06Z2009-08-13T08:55:06Z<p>I used XML, XSD and XSLT on an integration project between very dis-similar DB systems sometime in 2004. I had to learn XSD and XSLT from scratch but it wasn't hard. The great thing about these tools was that it enabled me to write data independent C++ code, relying on XSD and XSLT to validate/verify and then transform the XML documents. Change the data format, change the XSD and XSLT documents not the C++ code which employed the Xerces libraries.</p>
<p>For interest: the main XSD was 150KB and the average size of the XSLT was < 5KB IIRC.</p>
<p>The other great benefit is that the XSD is a specification document that the XSLT is based on. The two work in harmony. And specs are rare in software development these days.</p>
<p>Although I did not have too much trouble learning the declarative nature XSD and XSLT I did find that other C/C++ programmers had great trouble in adjusting to the declarative way. When they saw that was it, ah procedural they muttered, now that I understand! And they proceeded (pun?) to write procedural XSLT! The thing is you have to learn XPath and understand the axes of XML. Reminds me of old-time C programmers adjusting to employing OO when writing C++.</p>
<p>I used these tools as they enabled me to write a small C++ code base that was isolated from all but the most fundamental of data structure modifications and these latter were DB structure changes. Even though I prefer C++ to any other language I'll use what I consider to be useful to benefit the long term viability of a software project.</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/1271075#12710752Answer by Schneider for Is XSLT worth it?Schneider2009-08-13T09:52:18Z2009-08-13T09:52:18Z<p>I used to think XSLT was a great idea. I mean it <em>is</em> a great idea.</p>
<p>Where it fails is the execution.</p>
<p>The problem I discovered over time was that programming languages in XML are just a bad idea. It makes the whole thing impenetrable. Specifically I think XSLT is very hard learn, code and understand. The XML on top of the functional aspects just makes the whole thing too confusing. I have tried to learn it about 5 times in my career, and it just doesn't stick.</p>
<p>OK, you could 'tool' it -- I think that was partly the point of it's design -- but that's the second failing: all the XSLT tools on the market are, quite simply ... crap!</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/1271269#12712690Answer by Tfga for Is XSLT worth it?Tfga2009-08-13T10:53:39Z2009-08-13T11:04:54Z<p>In terms of sheer productivity you would be better off using one of the jQuery-style libraries - pyQuery, phpQuery etc. Most XML libraries suck and XSLT is essentially just another XML library packaged as a full-fledged language but without a decent set of tools. jQuery makes it insanely easy to traverse and manipulate XML style data in your language of choice.</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/1272337#12723371Answer by Gamecat for Is XSLT worth it?Gamecat2009-08-13T14:32:25Z2009-08-13T14:32:25Z<p>At a previous company we did a lot with XML and XSLT. Both XML and XSLT big.</p>
<p>Yes there is a learning curve, but then you have a powerful tool to handle XML. And you can even use XSLT on XSLT (which can sometimes be useful).</p>
<p>Performance is also an issue (with very large XML) but you can tackle that by using smart XSLT and do some preprocessing with the (generated) XML.</p>
<p>Anybody with knowledge of XSLT can change the apearance of the finished product because it is not compiled.</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/1273366#12733663Answer by newt for Is XSLT worth it?newt2009-08-13T17:14:50Z2009-08-13T17:14:50Z<p>I have to admit a bias here because I teach XSLT for a living. But, it might be worth covering off the areas that I see my students working in. They split into three groups generally: publishing, banking and web.</p>
<p>Many of the answers so far could be summarised as "it's no good for creating websites" or "it's nothing like language X". Many tech folks go through their careers with no exposure to functional/declarative languages. When I'm teaching, the experienced Java/VB/C/etc folk are the ones who have issues with the language (variables are variables in the sense of algebra not procedural programming for example). That's many of the people answering here - I've never gotten on with Java but I'm not going to bother to critique the language because of that.</p>
<p>In many circumstances it is an inappropriate tool for creating websites - a general purpose programming language may be better. I often need to take very large XML documents and present them on the web; XSLT makes that trivial. The students I see in this space tend to be processing data sets and presenting them on the web. XSLT is certainly not the only applicable tool in this space. However, many of them are using the DOM to do this and XSLT is certainly less painful.</p>
<p>The banking students I see use a DataPower box in general. This is an XML appliance and it's used to sit between services 'speaking' different XML dialects. Transformation from one XML language to another is almost trivial in XSLT and the number of students attending my courses on this are increasing.</p>
<p>The final set of students I see come from a publishing background (like me). These people tend to have immense documents in XML (believe me, publishing as an industry is getting very into XML - technical publishing has been there for years and trade publishing is getting there now). These documents need to be processing (DocBook to ePub comes to mind here).</p>
<p>Someone above commented that scripts tend to be below 60 lines or they become unwieldy. If it does become unwieldy, the odds are the coder hasn't really got the idea - XSLT is a very different mindset from many other languages. If you don't get the mindset it won't work. </p>
<p>It's certainly not a dying language (the amount of work I get tells me that). Right now, it's a bit 'stuck' until Microsoft finish their (very late) implementation of XSLT 2. But it's still there and seems to be going strong from my viewpoint.</p>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/1535693#15356931Answer by brianary for Is XSLT worth it?brianary2009-10-08T04:51:18Z2009-10-08T18:55:46Z<p>I personally like XSLT, and you may want to give the <a href="http://www.w3.org/TR/xslt#result-element-stylesheet" rel="nofollow">simplified syntax</a> a look (no explicit templates, just a regular old HTML file with a few XSLT tags to spit values into it), but it just isn't for everyone.</p>
<p>Maybe you just want to offer your authors a simple Wiki or Markdown interface. There are libraries for that, too, and if XSLT isn't working for you, maybe XML isn't working for them either.</p>