Adding an xml-stylesheet Processing Instruction to a document
jason adam
Chicken Farmer ()
Ranch Hand
Joined: May 08, 2001
Posts: 1932
posted
0
I need to set a stylesheet processing instruction to an XML document at the time of creation, before the root tag. I've considered ingesting a "template" xml document that would have the stylesheet and root already defined, but I was wondering if there is a way to do this when the file is actually generated instead. I've looked through the API and see the ProcessingInstruction interface, as well as the fact that Node has a PROCESSING_INSTRUCTION_NODE field, but I can't seem to figure out how to create a ProcessingInstruction Node and associated to a Document object. Any pointers to either a tutorial or code example would be great. Thanks!
jason adam
Chicken Farmer ()
Ranch Hand
Joined: May 08, 2001
Posts: 1932
posted
0
Answered my own question... isn't that fun! Just in case anyone else has the problem, here is my sample code:
Not sure if this is the "correct" way, but it works.
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.
subject: Adding an xml-stylesheet Processing Instruction to a document