9
votes
9answers
617 views
XSLT Transform Efficiency
I am a support engineer and our company's product allows XSLT transforms to customize outputs.
I made a xsl transform for this purpose. It works well for source files of typical size (several 100k), …
4
votes
2answers
61 views
Can XSLT processors be multi-threaded?
Hi everyone,
I'm fishing for approaches to a problem with XSLT processing.
Is it possible to use parallel processing to speed up an XSLT processor? Or are XSLT processors inherently serial?
My …
4
votes
4answers
796 views
Open-source java XSLT 2.0 implementation?
I'm currently looking into using XSLT 2.0, but I cannot find any open-source java implementations (Saxon-B seems to fit the bill, but isn't schema-aware).
Am I missing something?
4
votes
4answers
419 views
What is the best XSLT engine for Perl?
I would like to know what of the many XSLT engines out there works well with Perl.
I will use Apache (2.0) and Perl, and I want to obtain PDFs and XHTMLs.
I'm new to this kind of projects so any …
3
votes
5answers
141 views
How do I run an XSLT file?
Alright this seems like a stupid question but I can't figure it out. I'm writing an XSLT file to translate an XML document into an XHTML document. I've used both Visual Studio and XML Notepad 2007 to …
3
votes
6answers
995 views
Is there any online XSLT processing service available?
(This might not seem strictly programming related, but I figure it's about deployment of an XSLT solution, and XSLT is a programming language, right?)
I have this cunning plan for customizing a …
2
votes
2answers
385 views
Java XSLT processors supporting XPath 2.0
What are the currently available XSLT processors supporting XPath 2.0 standard?
2
votes
1answer
130 views
can you get XmlCompiledTransform progress?
Hello,
I want to read an xml file, apply a transform, then write to another file. The best way I can think of is this:
using (XmlTextReader reader = new XmlTextReader(new FileStream(_source, …
1
vote
4answers
53 views
Multiple PHP Warnings in XSLTProcessor::importStylesheet()
Errors:
Warning: XSLTProcessor::importStylesheet() [xsltprocessor.importstylesheet]:
Undefined variable in /transform.php on line 24
Warning: XSLTProcessor::importStylesheet() …
1
vote
2answers
44 views
Why don’t all XSLT templates get executed at once?
Refer to: http://stackoverflow.com/questions/1613454/retrieving-one-element-and-filter-by-another
In the above linked posting, I don't understand why the two template blocks don't get executed upon …
1
vote
1answer
91 views
PHP Warning in XSLTProcessor::importStylesheet() despite near empty XSL stylesheet
Hi,
I'm trying to use the following code
# LOAD XML FILE
$XML = new DOMDocument();
$XML->loadXML( $exporteddatatransformed );
# START XSLT
$xslt = new XSLTProcessor();
$XSL = new DOMDocument();
…
1
vote
1answer
295 views
SAXON.NET XSLT 2.0 Processor
I am using the open source Saxon XSLT processor for .NET to execute some 2.0 transforms.
I reference the saxon9api.dll as I would any other dll, and can compile code against this. However Visual …
1
vote
2answers
329 views
mozilla client side XSLT not displaying. (Using jQuery too)
I want to use firebug to debug and help be quickly finish some XSLT layout issues, but I cannot get the following code to perform and display the client side XSLT in Firebox (everything is fine in …
0
votes
1answer
50 views
No XSLTProcessor() support in Safari?
For whatever reason, I can't get XSLTProcessor() to work all the time.
Here is my JS:
... xsltProcessor = new XSLTProcessor();
xsltProcessor.importStylesheet(xmlRequest.responseXML);
// Pass …
0
votes
1answer
38 views
XSLT parsing multiple lines
<data>
<Attributes>
<Attribute name='somethingelse' value='blah'/>
<Attribute name='forms'>
<List>
<String>xform</String>
…
