1
vote
4answers
73 views
Is there a Java XML API that can parse a document without resolving character entities?
I have program that needs to parse XML that contains character entities. The program itself doesn't need to have them resolved, and the list of them is large and will change, so I …
4
votes
2answers
57 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 inheren …
0
votes
2answers
49 views
StAX Writer Implementation for C/C++
Are there any other STaX Writer implementation for C/C++ except libxml2?
2
votes
1answer
31 views
StAX - how to set XMLInputFactory.IS_VALIDATING to true?
Hi, this is my first time using StAX for parsing XML documents (still in the learning stage). During the process to parse an XML document using XMLStreamReader and generate a copy …
3
votes
3answers
245 views
StAX parsing from Java NIO channel
I am attempting to receive a stream of XML events over a Java NIO channel. I am new to both NIO and StAX parsing, so I could very easily be overlooking something :)
My search has …
1
vote
1answer
30 views
How to do encryption/decryption in xml with StAX?
Hi,
One of the reason I use StAX is because of it low memory consumption in processing large xml files.
I've been requested to encrypt the whole xml files, and decrypt them later …
1
vote
2answers
566 views
which .jar file has javax.xml.stream.* ?
Going nuts again with my Mac running Java 1.5.... where do I get a .jar file that has javax.xml.stream.XMLInputFactory ? I want to use StAX but don't know how to get it set up righ …
2
votes
8answers
719 views
How would you use Java to handle various XML documents?
I'm looking for the best method to parse various XML documents using a Java application. I'm currently doing this with SAX and a custom content handler and it works great - zippy …
1
vote
2answers
246 views
Small modification to an XML document using StAX
I'm currently trying to read in an XML file, make some minor changes (alter the value of some attributes), and write it back out again.
I have intended to use a StAX parser (javax …
3
votes
6answers
513 views
Best StAX Implementation
My quick search reveals the reference implementation (http://stax.codehaus.org), the Woodstox implementation (http://woodstox.codehaus.org), and Sun's SJSXP implementation (https:/ …
1
vote
1answer
93 views
self-closing tags with XMLEventWriter
So the question is pretty much as stated in the title. I am doing some xml work and using XMLEventWriter. The big issue I'm having is that I need to create some self closing tags …
0
votes
2answers
171 views
Evaluating XPath Commands with java
Hi I have an xml document like this
<root>
<cert id="1">
</cert>
<cert id="2">
</cert>
<cert id="3">
</cert>
</root> …
1
vote
2answers
363 views
JAXB or StAX Message Limits
I'm current developing a WebService in a Bea Websphere 6.1 environment with Axis 2 implementation, I'm trying to respect the current standards for Web Services (JAXB, JAXWS, StAX.. …
1
vote
3answers
353 views
Logic (if any) behind Google App Engine excluding standard JDK 1.6 APIs
It looks like GAE has chosen a subset of JDK 1.6 classes, as per:
Google App Engine JDK white list
which is very unfortunate as one gets class linkage errors all over the place w …
1
vote
2answers
545 views
How do I format and read XML processing instructions using Java StAX?
First, how do I format the XML processing instruction, is it:
<?processingInstructionName attribute="value" attribute2="value2"?>
Using StAX, I then want to read it by han …
