vote up 9 vote down star
3

I converted my whole site to XML/XSL and I would like to know all of the current issues with performing Client-side XSLT.

Here are the ones i already know of (from first-hand experience):

  • Cross-domain XSL files (this is a security issue and not cross browser)
  • disable-output-escaping (this does not work in FF... they consider it a security issue)

Also as for browser support this is all i know of:

  • Opera 9+
  • FF 1.0+
  • SF 2.0 + (i may be wrong on this)
  • Chrome
  • IE 6.0 +

Any others would be helpful too :)

flag

75% accept rate
I'm very curious about this too. I really like using client side xslt, and I have never had any problems with it, but I always wondered if there were any downsides to it. – Zifre May 8 at 18:52
Its too good to be true :). The ability to offload all template generation to the client... And letting them cache the template... Its totally genius. In 2004 it was almost cross browser supported, in 2009... it is, from what i understand. – Chad Scira May 8 at 19:03
Why not just use XHTML as your base and then apply transformations from there? Why start with XML? Also will you be using other web standards like CSS or things like JavaScript and basic images? Every extra file will cause performance issues until it's cached on the client side. – JamesEggers May 14 at 23:41
You did the conversion before asking for the pitfalls? – Manni May 16 at 13:13
yea, someone had to do it :P. I can show you a demo if you would like – Chad Scira May 16 at 21:08

5 Answers

vote up 7 vote down check
  • Speed: The browser needs to apply the XSLT transformation before rendering the HTML, thus the user will have to wait longer to see the page. The XSLT engines used by the browsers might not be top-notch. On Mac OS X, the browser might freeze while the XML is transformed and cause the "spinning beach ball" cursor, thus the user might punch the screen and injure him or herself.

  • Accessibility: What about the browsers not in that set, such as screen-readers? Do those users matter to you?

link|flag
1  
Were offloading all template generation to the client (thus saving a huge amount of CPU), I have a list of browsers that i know XSLT work s with so i send them the actual XML/XSL. If a browser is not on the white list then the server performs the XSLT for them and sends HTML. Thanks though, i will be adding this to my pros/cons list. – Chad Scira May 8 at 19:01
vote up 1 vote down

I found passing parameters to xsltfiles difficult to keep crossbrowsing able. I now support FF and IE but Chrome fell out because of it..

link|flag
do you have a codeblock as an example, i was able to get this to work fine in chrome. – Chad Scira May 8 at 19:06
Yes I have, but Chrome was not too important for us, so I just left it out. for (i = 0; i < parameters.length; i++) { xsltProcessor.setParameter(null, "p" + i, parameters[i]); for nonIE and for (i = 0; i < parameters.length; i++) { processor.addParameter("p" + i, parameters[i]); } for IE – Peter May 8 at 19:14
2  
Maybe I'm off but when I read "client-side XSLT", I assumed the question referred to simple XML -> XHTML translation with a static XSLT linked via an <?xml-stylesheet ?> rather than the JavaScript XSLT engine. If so, passing parameters is irrelevant since the only input set is XML documents. – Jeff Mc May 14 at 14:46
jeff is correct i was speaking of the the xml-stylesheet method – Chad Scira May 16 at 2:42
vote up 1 vote down

The XSLT file is another object which needs to be downloaded and the browser will only fetch 2 or 3 items in parallel. My experience is that the overall performance (download and generation) is noticably slower.

Also, depending on the complexity and redundancy of the data, you might be downloading much more than you really need to - ie. if the HTML had already been rendered.

link|flag
I dont think this is a valid argument. Do you not use CSS because its another file to be downloaded? It can be cached just like CSS. – Chad Scira May 14 at 5:10
@Chad Are you saying your XSLT will not hold actual web standards like CSS then? Will the XSLT transform your XML file into HTML and a table-based design or will it use CSS? This is a very valid argument in my opinion since if you are taking XML and converting it into HTML yet not using web standards, then you may be doing it wrong. Also, if your goal is to convert your HTML content into a different format, perhaps using XHTML first and then transforming it may be a better option. – JamesEggers May 14 at 23:39
I would be using all web technologies. CSS (Design), XSL/XHTML (Structure), XML (Data), JS (Behavior). The amount of data separation is beautiful. – Chad Scira May 15 at 15:50
The questioner wanted to discuss the issues - I think this is an issue. I'm all for data separation but if the performance becomes a problem then I'd be pragmatic – paul May 17 at 8:28
depends on how you use the technology. global.css, {pagespecific}.css (both get cached...), use the same method for XSL – Chad Scira May 19 at 17:01
vote up 1 vote down

On the performance front... consider that the majority of clients these days have 2 CPU's and 2 GB of RAM each, and that most servers don't... Have two CPU's + 2 GB per client that is. So it's certainly logical that offloading the XSLT transforms should improve scalability, and caching CSS + XSLT + JS should reduce overall traffic.

Having said that I've tried using XSLT to produce XHTML containing SVG in the past, and had an epic-fail. The largest page was simply too big (3,000+ entries in an index), and IE uses a DOM to do the XSLT transform, which causes it to start trashing. The same transforms done in xerces-j (on the server, on the same dev box) was about 1000 times faster.

It's high-time the browser-monkeys got with the program ;-)

An interesting discussion. Thanks for raising it.

Cheers. Keith.

link|flag
I have yet to try SVG, because its not cross browser. I know there is a plugin that adobe provides, its such a beautiful technology. raphaeljs.com <- soo cool... – Chad Scira May 19 at 16:59
vote up 0 vote down

i have worked about 1 year at a project where we used xslt+xml-> html (although server-side only)

the major drawback i encountered: there are no good tools for xslt generation which lean towards web developement. no previewing of html. no validation. the resulting xslt was a total mess noone could understand. that was not so much the xslt designers fault, but rather results from the xslt processing model.

the layering between xslt/xml/urls becomes more complicated than it should be. there is no way you could program component-oriented.

often multiple xslt files were needed, this would lead to many downloads on the client-side. otherwise it would lead to massive code duplication thoughout the project.

i would see this as a form of early optimisation. you shoud start by using a "normal" web framework like wicket, jsf, tapestry, gwt etc.., later if it turns out your servers preformance is cpu-bound you might ocnsider rewriting the most often used parts of the apllication that way.

otoh, it has real benefits if you need to provide both an xml api + a html interface.

link|flag
2  
basically I replaced smarty (a PHP templating engine) with client-side XSLT. And in doing so i had to totally isolate the data, which is a wonderful thing. For example i could write an mobile interface easily now, because everything is separated. So far id say there is a learning curve but your basically future proofing your application if you use this method. – Chad Scira May 19 at 16:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.