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

learn more… | top users | synonyms

0
votes
1answer
12 views

Wite formatted xml with Xml Bean

I have created a xml with Xml bean and now it's time to write the created xml in a file. But when I am writing my file in the xml file it's unformatted. So, I need to help to write the formatted xml ...
0
votes
0answers
11 views

XMLBeans not providing access to all element names

<?xml version="1.0" encoding="UTF-8"?> <xsd:schema xmlns:soa = "http://" targetNamespace = "http://" xmlns:xsd = "http://" xmlns:co = "http://" elementFormDefault = ...
0
votes
0answers
27 views

how to add processing instruction to xml with XMLBeans

I have this question about Java XMLBeans. I want to include the following declaration at the top of the XML file: <?xml version="1.0" encoding="UTF-8"?> Is there anyway to do this natively ...
0
votes
0answers
13 views

Xmlbeans parsing issue - sonar plugin

Ok, this is a bit of a strange issue I've come up against... I have developed a sonar plugin that doesn't do an awful lot but call out to an xmlparser that returns a XML object of a defined ...
0
votes
0answers
50 views

xmlbeans: How to avoid putting *.class and *.xsb files into *-sources.jar with mvn package?

I have a maven project that contains *.xsd files only. When I compile it, it generates *.java, *.class and *.xsb files. When i run mvn install it runs xmlbeans, builds perfectly and generates ...
0
votes
2answers
66 views

How to extract information from XmlObject in JAVA without using toString()?

I have an XmlObject (org.apache.xmlbeans.XmlObject) obj . XmlObject obj; ... obj.toString(); //<xml-fragment>n2</xml-fragement> // content ="n2" String content = ...
1
vote
0answers
76 views

Why isn't XMLBeans able to parse my valid XML documents?

I have an XML schema that defines a bunch of complex types that are various commands, responses, and events. As a particular example, I have a Response complex type that consists of elements that are ...
0
votes
0answers
132 views

Removing Existing Namespace Prefixes with XmlBeans

In the past, I've used XmlOptions.setDefaultNamespace() and, if I remember correctly, that was all I needed to do to remove the namespace prefixes from the tags in the XML document. Now, I'm having ...
0
votes
0answers
34 views

Generating an XSD with anyAttribute set for all Elements in the XML

I would like to generate an XML Schema for an XML instance.I have been using XMLBeans currently, using which I am able to generate a schema, but fails compliance as my XML Instance can contain some ...
0
votes
0answers
46 views

XMLBEAN compilation issue

I don't understand why xmlbean maven plugin generates classes like this one : public abstract interface CommandeClientGpDocument { public static final SchemaType type; static { throw ...
0
votes
1answer
53 views

How to automatically add xsd:attribute to xsd:complexType in Apache XMLBeans?

We're running into some trouble with supplied XSDs of the following kind: <xsd:complexType name="foo"> ... <xsd:attribute name="version" fixed="1" /> </xsd:complexType> ...
0
votes
1answer
71 views

Adding Data in XmlObject

I have to code a Web service client, compliant to Axis2 1.5.4. The part of code giving the problem is as follows: String my_var = "some value"; MetaDataEntry metaDataEntry = ...
0
votes
0answers
225 views

java.lang.NoClassDefFoundError: javax/xml/stream/XMLStreamException while deploying on jboss

I have a weird problem that will make me crazy since 3 days. I'm generating a client stub(xmlbeans) using axis from a wsdl file then using it to call Ms CRM web service. My webservice call is working ...
0
votes
0answers
84 views

Does android.jar file contain support for xmlbeans?

Does android.jar file contain support for xmlbeans? I have experienced Conversion to Dalvik format failed with error 1 with UNEXPECTED TOP-LEVEL EXCEPTION: java.lang.IllegalArgumentException: already ...
0
votes
0answers
102 views

Java XMLBeans throws NoSuchMethod error

I have following code static { wsAuthenticate = WsAuthenticate.Factory.newInstance(); ... } which calls public static final SchemaType type = (SchemaType) ...
0
votes
1answer
96 views

Can Dalvik convert anonymous inner classes to dex format?

I am trying to build dex file from xmlbeans-2.6.0.jar and xmlbeans-2.3.0.jar.I am getting following error [2013-02-14 14:57:08 - SOSTestProject] Dx warning: Ignoring InnerClasses attribute for an ...
0
votes
0answers
69 views

Dozer: Issues with Mapping

Here is the scenario 1) I have few jars given from vendor (which is generated by axis ) 2) In my code I have to map home grown Object to vendor given object(but not direct mapping, but deep mapping) ...
0
votes
0answers
67 views

Conversion to Dalvik format failed with xmlbeans.jar error

I want to run an android application with a number of .jar files added in the build path of the project.While trying to build my project I am getting following error with one of the .jar file,which is ...
0
votes
0answers
32 views

XMLBeans parsing does not create global (root) “document” type

I have these shemas: http://www.nfe.fazenda.gov.br/portal/exibirArquivo.aspx?conteudo=rwylVvLrjQ8= which I compiled with scomp in order to generate the java package so I can parse a document into a ...
0
votes
0answers
93 views

Error from Heroku app

I'm using a Jetty Heroku template and have modified it to work with my solution. I am trying to connect to a 3rd party API where I have used WSDL2JAVA to create stubs and the necessary xsd and class ...
0
votes
0answers
48 views

How can I get the xml tag name from the generated code (through XmlBeans)?

I had a xml file to parse. I created the xsd file related to that xml file manually. I created a jar file through that xsd file so that all the tags in the xml file could be taken as interfaces ...
0
votes
1answer
48 views

xmlbeans and reserve word tags

I'm trying to compile an xmlbeans jar from an xsd. The xsd was provided to me from a vendor so I cannot change it. The name attribute "CON" is causing XML beans to throw an exception as follows: ...
0
votes
1answer
68 views

I am getting error when I am compiling xmlbeans : java io.ioexception cannot run the program “javac”

I am trying to run a sample of xmlBeans to compile a xsd and create a jar corresponding to that but I am getting this error again & again java.io.Exception: Cannot run program ...
0
votes
0answers
43 views

preveryfying XMLBean generated jar file for BlackBerry 7.1

I am trying to preverify a jar file generated by XMLBeans -2.6.0 to include in a BlackBerry project. When I run the preverify command against the jar file. The following error is noticed: Error ...
9
votes
2answers
114 views

Which Framework, Tool or Plugin mandates the hardcoded 'database.xsd' filename?

I inherited a CXF/Hibernate/JBoss based project that includes a filename named database.xsd. I combed the project to find out which subsystem/component in the system uses database.xsd but that yielded ...
0
votes
1answer
41 views

Prevent XmlBeans from trimming whitespaces

have a little problem with XmlBeans. It seems that it automatically is trimming the whitespaces of Strings that I am trying to add to the XML. For example. I have a list of codes and values. Each code ...
1
vote
1answer
268 views

xmlbeans-maven-plugin not finding javac

I am trying to setup xmlbeans-maven-plugin 2.3.3 in my Eclipse and while everything seems to go OK, It fails with an java.io.IOException due to inability to find the file ...
0
votes
0answers
38 views

Scomp generates the following Error creating temp dir java.io.IOException in eclipse

I am using Windows 7 platform while generating the source code from a xsd using scomp command in xmlBeans and during which the following error is generated in the console Error creating temp dir ...
-5
votes
1answer
58 views

Use GDate to calculate period between dates [closed]

I am new to java and am wondering how to use GDate as specified at the JavaDocs. Can anyone give a simple example how to calculate the time period between two date using GDate?
0
votes
2answers
47 views

xmlBeans dependancy in Fuse source ESB - how to resolve?

We are trying to transform data coming into a route from java objects to XML. For this we need xmlBeans and there is a dependancy on DataFormatResolver. When we try to deploy the project, the package ...
0
votes
0answers
140 views

client authentification with plentymarkets, axis2 with xmlbeans representation of plenty markets soap wsdl

I'd like to ask if someone is in here, to be familiar with plentymarkets soap api? I generated code from the wsdl using the xmlbeans representation. The problem sincerly is, I have not yet ...
0
votes
1answer
215 views

Is it possible to manage duplicate element names with Axis2/XmlBeans

We are using thirdparty wsdl files that we are generating java files with using axis2. Now we have a problem that there are duplicate elements in different files but with the same namespace. Example: ...
0
votes
0answers
130 views

Running out of memory using XmlBeans and Spring Batch

I am having a bit of trouble with an application of mine that uses XmlBeans and Spring Batch, it seems that my application runs out of memory and I am having trouble figuring out why. I have my ...
0
votes
2answers
540 views

Why do I get a “DOM Level 3 Not implemented” error at run-time?

I am currently working on the development of an Apache CXF Web Service with XMLBeans binding instead of the default JAXB binding. I am compiling and running the code with Java 1.6. I get a "DOM Level ...
1
vote
0answers
76 views

Use Spring Data mongodb to store XMLBeans as BSON objects

I am looking into using Spring Data mongodb and so far I like what I see. However, when I try to store more complicated objects, for example one created using APache XMLBeans, I get a ...
0
votes
0answers
128 views

Axis 2 client sets http header protocol of “POST /SOAP/ HTTP/1.1” which is problematic

I'm have written an Axis2 client with XMLBeans binding and everything seems to work fine as far as creating the soap message. However, the http header has the protocol set to "POST /SOAP/ HTTP/1.1" ...
1
vote
1answer
57 views

Explain how XMLBeans Handles '-' Character

I have a file with an XSD element which contains a '-' character. This is a recent change to the XSD file and after compiling the file I am seeing no change to the accessor method used in my java ...
0
votes
0answers
20 views

How do I use the “xmlbeans” to sbt?

I added the following dependency val xmlbean = "org.apache.xmlbeans" % "xmlbeans" % "2.3.0" Using sbt-xmlbeans, how do I compile the xsds and generate the java source files?
1
vote
2answers
365 views

wsdl2java xmlbeans databinding issue

I've generated java-class file with wsdl2java and used xmlbeans databinding. Can't compile resulting file because of numerous errors like: error: cannot find symbol [javac] ...
0
votes
2answers
580 views

“java.lang.NoSuchMethodError” exception in reading xmlbeans

I am trying to read XLSX file.its showing this error Exception in thread "main" java.lang.NoSuchMethodError: ...
0
votes
0answers
473 views

javax.mail.MessagingException: Missing start boundary

Can you please explain why I get the following exception? org.apache.axis2.AxisFault: javax.mail.MessagingException: Missing start boundary I am doing the following: ...
1
vote
2answers
703 views

Apache CXF (2.6.1): Client gets “Content is not allowed in prolog”

I'm using Apache CXF (2.6.1) in my java application to consume 3rd party Web Service. But I have a problem with it, in particular if I use JAXB for databinding while stubs generation my client will ...
0
votes
0answers
59 views

How can i create XSD from XML, by restricting all the values in XSD to the ones in the XML?

Say, My XML is, <ITRForm:IncomeFromSal>1500000</ITRForm> <ITRForm:TotalIncomeOfHP>-10000</ITRForm:TotalIncomeOfHP> ...
1
vote
0answers
114 views

how to read value for Complex Text-Only Elements using XMLBean

I have created a Complex Text-Only element as:- <xs:element name="trackingidtag" type="tagtype"/> <xs:complexType name="tagtype"> <xs:simpleContent> <xs:extension ...
0
votes
0answers
160 views

XMLBeans: tweaking the generated code

XMLBeans treats schema 'attributes' and 'elements' the same way for generating code. E.g. <element name="submitOrderRequest"> <complexType> <sequence> ...
0
votes
2answers
241 views

How to stub/mock XMLBeans object for testing?

I'm working with an application using Apache XMLBeans (interfaces for XML structure elements extending org.apache.xmlbeans.XmlObject, implementations for those interfaces extending ...
-1
votes
1answer
203 views

“mangling” namespaces/package names for xml beans classes

I have an xml that I need to consumde form java code,a nd think xml beans makes a lot of sense. The input xml file has no namespaces, and I cannot modify the xml input format. I used trang to ...
0
votes
0answers
162 views

Malformed UTF-8 character XmlBeans

I am getting an interesting error when using XmlBeans. My goal is to upgrade an Xml object to a newer version. So I start with MyXmlObject v1.0 and want to go to MyXmlObject v2.0. Heres my code. ...
2
votes
2answers
544 views

Compiling shared schema used by 2 WSDL using XMLBeans

I have this following directory structure Root CommonSchema 1.xsd 2.xsd Service1 XSD 3.xsd ( importing 1 and 2 xsd ) WSDL A.wsdl ( importing 3.xsd ) ...
1
vote
2answers
361 views

how to generate XML from XML schema in java and feed data in it?

I am developing part of a web app which takes an XML schema as input to generate an XML file. There is also data to be put into the XML tags in an ordered way. for example, I will have an ArrayList ...

1 2 3