Woodstox XML processor project home is at http://woodstox.codehaus.org, and documentation can be found from http://wiki.fasterxml.com/WoodstoxHome.
9
votes
6answers
6k views
StAX XML formatting in Java
Is it possible using StAX (specifically woodstox) to format the output xml with newlines and tabs, i.e. in the form:
<element1>
<element2>
someData
</element2>
</element1>
...
4
votes
2answers
718 views
How do I serialize / deserialize a class in XML with Woodstox StAX 2
I'm pretty much trying to archive, what has been done in how-to-serialize-deserialize-simple-classes-to-xml-and-back (C#) in Java. If possible, I would like to avoid writing a serialize / deserialize ...
2
votes
2answers
141 views
How to catch Attribute-events with a StAX XML-parser?
I try to parse an XML file with a StAX XML-parser. It give me START_ELEMENT and END_DOCUMENT events but no ATTRIBUTE events. How can I receive ATTRIBUTE events with the StAX parser?
My XML:
...
2
votes
1answer
805 views
JAXB to use Woodstox parser for performance?
Is it possible switch the native parser, which I believe is based on Java reflection. We have some performance issues and wondering whether we can switch the implementation.
Your advise is highly ...
2
votes
4answers
368 views
XMLEventWriter: how can I tell it to write empty elements?
I do not see an option within javax.xml.stream.XMLEventWriter or javax.xml.stream.XMLOutputFactory to set either up in a way so that empty elements are written (instead of explicit start and end ...
1
vote
1answer
445 views
How do I configure JAXB to use Woodstox on JBoss 6?
I'm deploying a Java EE 6 JAX-RS web service on JBoss 6, and I'd like to use Woodstox instead of whatever SAX/StAX parser is currently being used. Since some stack traces list classes in (among other ...
1
vote
2answers
577 views
Woodstox stax and java stax conflict
I'm facing a weird runtime conflict between Woodstox STAX and java 1.6 STAX implementation. Since I'm using CXF,its pulling Woodstox jar as part of its dependency. Here's a sample code I'm using.
...
1
vote
1answer
315 views
Comparison between woodstox and sjsxp
Has anyone used the Stax implementation by Woodstox http://woodstox.codehaus.org and sjsxp https://sjsxp.dev.java.net/. I encountered a wierd issue with sjsxp ...
1
vote
1answer
312 views
How should I use Stax2 Validation API against a W3 Schema
I am using com.ctc.wstx.stax.WstxOutputFactory to generate XML.
I am running wstx-asl-3.2.4
I need to start validating the generated XML against a W3 Schema.
When I create an instance of ...
1
vote
1answer
770 views
Can I can configure cxf to use a specific XML parser?
Is there a way to specify which XML parser cxf uses? Either through the cfx.xml file or programmatically?
Our app has the Woodstox parser on its classpath, and cxf seems to be using that by default. ...
0
votes
1answer
274 views
How to specify which stax parser to use
I have a woodstox and and java SE 1.6 stax parser in the classpath but woodstox seems to get selected by default.
However in certain cases I'd like to use the default Java stax parser. Is there any ...
0
votes
3answers
436 views
Stax considers Text+CDATA+Text to be a single CHARACTERS section
Using Stax, I'm surprised to find that an XML block such as:
<badger>
<![CDATA[Text about a badger]]>
</badger>
is treated as if it were:
START_ELEMENT (badger)
CHARACTERS ( ...
0
votes
1answer
190 views
How to choose an implementation sjsxp and wstx if both of them are in the classpath
Axis2 relies on woodstox's wstx while other part of my project has tested heavily with sjsxp and we can't afford to rerun the same test. Now, there is a problem with parsing SOAP message with axis2 ...