Tagged Questions

6
votes
12answers
851 views

Java XML Binding

What are you using for binding XML to Java? JAXB, Castor, and XMLBeans are some of the available choices. The comparisons that I've seen are all three or four years old. I'm open t …
1
vote
1answer
80 views

What does the org.apache.xmlbeans.XmlException with a message of “Unexpected element: CDATA” mean?

I'm trying to parse and load an XML document, however I'm getting this exception when I call the parse method on the class that extends XmlObject. Unfortunately, it gives me no ide …
1
vote
2answers
138 views

RuntimeException from xmlbeans - can’t find compiled schema

I'm getting a RuntimeException while executing some code that depends on generated xmlbeans classes. I can't figure out if this is: me missing something during code-generation or …
1
vote
1answer
56 views

How to get line number information from XMLBeans’ XMLError

The subject basically says it all. XmlBeans' XmlError.getLine() always returns -1. Is there any way to get at least an approximate position for an error? I have already tried th …
1
vote
1answer
245 views

How to insert XmlCursor content to DOM Document

Some API returns me XmlCursor pointing on root of XML Document. I need to insert all of this into another org.w3c.DOM represented document. At start: XmlCursor poiting on <a& …
0
votes
1answer
38 views

Are there any tools similar to XML Beans for 834 files in JAVA

I love the pleasure of dealing with XML files with XMLBeans objects... Now working with 834 files, i wonder if its a similar tool for 834 files A flat file object will be helpful …
0
votes
0answers
226 views

Using xmlbeans bindings for cxf wsdl2java

I am getting started with using apache CXF 2.1.5 and xmlbeans to generate a web service client. The FAQ page shows how to use jaxb bindings to have java.util.Date binding for xsd:d …
0
votes
2answers
55 views

Using XMLBeans on Andoid

Hi Everyone. I was just wondering if anyone had any success in getting XMLBeans (or any other generator) to work on android. It would be very nice if I could use it because I have …
0
votes
3answers
76 views

order of parsed elements is lost in XMLBeans

I have a XML structure somewhat like this: <root> <a/> <b/> <b/> <a/> <a/> </root> My XSD looks like this: <xs: …
0
votes
1answer
161 views

Saxon XMLBeans Tomcat

We recently updated our Tomcat web service. The only things we really updated were that we updated XMLBeans to version 2.4 and Saxon to version 9. Running it Netbeans and eclips …
0
votes
2answers
144 views

xmlbeans - set content of a complex type

My xsd file contains: <xs:sequence> <xs:element name="Book"> <xs:complexType> …
0
votes
1answer
115 views

Mapping XPath 1.0 data types to java

I'm using XPath 1.0 to process incoming web services messages. This can be quite hard to get right if schema data types are used, because XPath 1.0 does not recognize them (XPath 2 …
0
votes
2answers
507 views

How to get all Enum values in XMLBeans?

Hello Apache XMLBeans can be used to generate Java classes and interfaces from XML Schema Definition files (XSD). It also generates Enums based on StringEnumAbstractBase and Strin …
0
votes
2answers
274 views

Importing and using external schema using XML Beans

Hello, I have a bit of a problem. I wrote an API a long time ago for our production system, and it used Apache XML Beans. The schema was homogeneous (ie no imports, everything w …