1
vote
0answers
93 views

NullPointerException in grails rendering plugin if HTML tag id is set

I am using Grails rendering plugin/service to create PDF. PDF data can be previewed by the user in the browser (then he clicks "download" button and gets PDF). Some of the templates for PDF and for ...
0
votes
0answers
35 views

What is best practice for setting an xmlns attribute using SAX?

I'm using Xalan-C++ to create an XML document. My code is based on the DocumentBuilder sample, so I'm using SAX to create the document. It's mostly working, but I'm unsure how an xmlns attribute ...
0
votes
1answer
272 views

Looking options for xalan TransformerFactoryImpl

I m using SAX based xml parser, things are working fine but i m getting following warning message in log com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl is Sun proprietary API ...
0
votes
1answer
69 views

When I parse an XSLT in a context where the input and output are SAX, is a DOM tree created behind the scenes?

Here is example code I am referring to: http://xml.apache.org/xalan-j/usagepatterns.html#sax First, notice that everything that can be SAX-based is SAX-based in this code: both the input and the ...