Tagged Questions

XMLBeans is a technology for accessing XML by binding it to Java types.

learn more… | top users | synonyms

13
votes
12answers
2k 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 to other suggestions. ...
5
votes
1answer
114 views

converting Object -HashMap to XMLObject

I have created a webservice which takes a HashMap as parameter. I generated the stubs/skeletion using XMLBeans and I am trying to set the values in the parameter and pass it to the webservice. The ...
4
votes
3answers
1k views

Within CXF, why use any other binding than JAXB? (MTOM attachments, Aegis, XMLBeans,…)

I have been playing around with Apache CXF, in particular the various data bindings it supports: JAXB (the default), MTOM, Aegis and XMLBeans. Since all of these are supported, I suppose each has its ...
3
votes
3answers
144 views

How to generate two xmlbeans in one pom file

I tried to generate two xmlbeans in one project. Each one, for example, gets participant object, so I can't put them in one configuration. The way I did was using two excution, here is my pom file: ...
3
votes
1answer
361 views

Java Enum with XML Beans?

When using Apache XML Beans to generate types from xsd:enumeration types, XMLBeans generates custom classes that are not Java 5 enums but some kind of special class to represent the enumeration. This ...
3
votes
2answers
235 views

using xsd:any for extensible schema

Until now, I've been handling extensions by defining a placeholder element that has "name" and "value" attributes as shown in the below example <root> <typed-content> ... ...
3
votes
3answers
2k views

How to add a node to XML with XMLBeans XmlObject

My goal is to take an XML string and parse it with XMLBeans XmlObject and add a few child nodes. Here's an example document (xmlString), <?xml version="1.0"?> <rootNode> <person> ...
3
votes
3answers
2k 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 packaging a runtime ...
2
votes
1answer
146 views

xmlbeans.xmlexception. illegal XML character 0x0

I create an xml document in C# by converting a string to bytes via System.Text.UTF8Encoding(). I then send this to my java program for xmlbeans to parse via a TCP connection. No matter what i try, i ...
2
votes
2answers
186 views

XSD date types with minOccurs set to 0 now has a value of “<xml-fragment…” (nillable defaults to false)

Forgive me in advance if I don't provide enough information, this is an issue I am seeing and tasked with fixing but I did not personally write this code originally (the person who did has moved on). ...
2
votes
3answers
435 views

Problem with maven and source files encoding (Eclipse + Windows)

I am working on a project and I can't compile it. This project generates xmlbeans from a wsdl. The files are generated ok, but when I want to compile the project, I have problems with a few classes. ...
2
votes
1answer
255 views

Getter on xmlbeans generated class returning null and it shouldn't

Using this simplified XSD (simplified, but still verbose as all XSDs tend to be): <?xml version="1.0"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" ...
2
votes
1answer
314 views

Axis2 with XMLBeans data binding - Problem with a java client generated from a XSD schema with anyType

I have generated a client using Axis2 framework with XMLBeans as the data binding method. The XSD schema is the following: <xsd:schema> <xsd:element name="profile" type="anyType"/> ...
2
votes
0answers
87 views

has anyone got xmlbeans to work with GSON?

Basically as above. Gson gson = new Gson(); ErrorsDocument er = ErrorsDocument.Factory.newInstance(); er.setError("monkey escaped"); System.out.println(gson.toJson(er)); craps out with: ...
2
votes
2answers
2k views

How to include automatically xmlbeans generated code into maven jar?

I have a project which uses Apache Xmlbeans for databinding. Currently it is very simple it only has some Schema-Files in src/main/xsd and xsdconfig in src/main/xsdconfig. I want to include the ...
2
votes
1answer
249 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 the XmlObject, but ...
2
votes
2answers
388 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:element ...
1
vote
1answer
47 views

how to specify external schema in processContents=lax

I have a generic schema that defines a section like this: <xs:element name="detail"> <xs:annotation> <xs:documentation> </xs:documentation> ...
1
vote
2answers
98 views

Which design pattern should be used in this use case?

I am working on app where I have to write custom validation on some xmlbean oject, basically to see so and so fields with proper values exist or not. Now those objects are generated from diff schema. ...
1
vote
0answers
81 views

Unmarshalled Objects null with XMLBeans on Glassfish 2.1 with JDK 1.6

I am using XJC Maven plugin with XMLBeans binding to generate code from WSDL + XSD. The code is deployed on Glassfish 2.1.1 running on JDK 1.6 I am trying to parse a XML String using the generated ...
1
vote
1answer
140 views

Mixed and restricted element fails validation with Xmlbeans

while working with Xmlbeans, I have noticed that when an element is defined as a restriction from a mixed type, if there is some text in this element the Xmlbeans validation fails.However the same xml ...
1
vote
5answers
443 views

Convert xml to java bean

How can I covert a an xml file to a simple java bean? Its a simple xml file without any xsd, which was generated from a java bean, which I don't have access to. I tried using xmlbeans to first ...
1
vote
4answers
124 views

How to upcast and use child specific methods

I have the following problem: //class XmlObject is part of org.apache.xmlbeans public class DepartmentType extends XmlObject; // getName method is defined in this class public class OrganizatiopnType ...
1
vote
1answer
296 views

Who is using XML Schema 1.1 version? Which parser versions support it? etc

The XML Schema 1.1 version of very good interesting features that are invaluable for my use cases. However, it seems to be relatively new. So I would like to get your feed back on the below questions ...
1
vote
2answers
289 views

Sum values in HTML page using XQuery / XPath 2.0

I have an HTML page like: <html> <head><title>Hello</title></head> <body> <div id="foo"> <h6>9</h6> <h6>3</h6> ...
1
vote
2answers
209 views

Using reflection to create instance when using xmlbeans

I've got a xsd file with over 100 types defined in it. I generated java code with xmlbeans binding, and then I can use MyType.Factory.newInstance(); to get the class instance. But since there are ...
1
vote
0answers
413 views

xmlbeans could not locate schema resource when repacking xml beans jar into my own jar

I am writing an application that needs to be contained in a jar. The program needs to validate and grab data from an excel spreadsheet. Therefore I am using the Apache POI libraries which are ...
1
vote
2answers
160 views

How to get rid of generics warnings in code generated from xmlbeans-maven-plugin?

I have some code generated from xsd files by xmlbeans-maven-plugin. Unfortunately generated code uses raw collection types, like: java.util.List targetList = new java.util.ArrayList(); ...
1
vote
0answers
306 views

xmlbeans and namespaces attributes

I'm trying to use xmlbeans to parse Google geocoder xml responses. I have an xsd which defines a subset of the KML returned by the geocoder. For reference here is an example geocoder response: ...
1
vote
1answer
248 views

Dealing with shared namespaces with multiple WSDL's (xmlbeans)

I have five WSDL's that share namespaces, but not all of them. I generate client code out of them (databinding with XMLBeans). Seperately they compile fine. I create JAR files out of each generated ...
1
vote
1answer
92 views

Easy way to convert an org.apache.xmlbeansXmlObject to nu.xom.Element

I have used the scomp tool from XMLBeans to generate java classes and then populated the fields in an XmlObject (I wrote this code some time ago). I now need to convert this object into the Element ...
1
vote
1answer
572 views

Adding namespace definition to xml using apache xmlbeans

I need to add namespace defintion to an element since its not getting added when when xml is generated using apache xmlbean. How do I acheieve this using xmlbeans API?
1
vote
1answer
1k views

Compiling multiple XSD into single JAR using XMLBeans

I have the following directory structure: schema1 schema1.xsd schema1.xsdconfig schema2 schema2.xsd schema2.xsdconfig schema3 schema3.xsd schema3.xsdconfig I am trying to ...
1
vote
1answer
355 views

Accessing XMLBeans generated schemas.jar in Maven project

I have a schemas.jar supplied to me and am trying to access it from within a simple Maven project. I have put the schemas.jar file in my src/main/resources directory, which is in my classpath. When ...
1
vote
1answer
608 views

Create and fill an xml document with xmlbeans

Some time ago, I was using XmlBeans at work and had to create programmatically an xml from a schema. Back then, I compiled the schema using XmlBeans and then used some XmlBeans functionality (I cannot ...
1
vote
2answers
2k 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 ideas of what element ...
1
vote
1answer
2k 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:dateTime: ...
1
vote
4answers
923 views

Using XMLBeans on Android

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 a very large schema that I would ...
1
vote
1answer
744 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 eclipse, our project now ...
1
vote
2answers
2k views

How to get all Enum values in XMLBeans?

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 StringEnumAbstractBase.Table to ...
1
vote
1answer
1k 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> <b> ...
0
votes
0answers
21 views

namespace information missing in xsd generated

I am using XMLBeans to generate an XSD file. I do not see the namespace in the generated XSD file. I'm using the command as: inst2xsd -enumerations never WebProductUpdate.xml -outPrefix ...
0
votes
1answer
53 views

Why do I have XML-Related Apache classes throwing exceptions?

It seems like whenever I try to use XML-related classes in my Dynamic Web Projects in Eclipse and I try to run a class with a main method just for testing, I'm getting errors like AbstractMethodError ...
0
votes
1answer
96 views

Error when using XmlBeans generated classes

I've generated classes with XMLBeans from an xsd file and packed them in a jar file. then I've added that jar to the project classpath in eclipse and everything compiles and runs fine. I built a stand ...
0
votes
0answers
36 views

how i can manage the client's Stubs generated from WSDL to connect to webservice with soapUi option xmlbeans

I have created client's Stub from WSDL to invoke the webservice with soapUi option xmlbeans. Unfortunately in the Stub generated, I have the follow code: //Create the desired XmlObject and provide it ...
0
votes
0answers
68 views

xmlbeans to pojo mapping [closed]

xmlbeans+dozer+axis2 references?
0
votes
0answers
32 views

Dozer with Xmlbeans or writing manual mapper class [closed]

Can you provide an example of using dozer with xmlbeans?
0
votes
4answers
83 views

comparing two XmlBeans Objects for equality

I've an XML Beans Interface called SynonymsRequest with: public interface SynonymsRequest extends org.apache.xmlbeans.XmlObject {...} I want to test two instances of SynonymsRequest for equality: ...
0
votes
1answer
111 views

Passing XmlBean.XmlObject to MessageDrivenBean

I have a Process from within Weblogic 10.3 that takes in an XmlObject, writes some values from that XmlObject into a table, then will be passing that xml to a JMS queue. public void ...
0
votes
1answer
44 views

Maven2:List return type methods not getting generated from .xsd files while using xmlbeans plugin

I am tring to build my project using maven2.This project was succesfully build using ANT in netbeans IDE. Now the problem is, I am able to generate the .java files from .xsd files using xmlbeans maven ...

1 2