Tagged Questions

JiBX is a tool for binding XML data to Java objects.

learn more… | top users | synonyms

5
votes
3answers
186 views

How to create Java objects from XML tags which are referring each other?

I have an XML which has tags corresponding to three types of Java objects which would be created from the XML. The objects are of the form: A - static Map<String, A> - String name - String ...
4
votes
2answers
223 views

Is it safe to use bytecode enhancement techniques on classes that might be serialized and why?

I haven't tried this yet, but it seems risky. The case I'm thinking of is instrumenting simple VO classes with JiBX. These VOs are going to be serialized over AMF and possibly other schemes. Can ...
3
votes
1answer
334 views

Jibx - how to unmarshal/marshal tag with value and attribute?

<stateData> <MyTag name="voltage">12</Mytag> <MyTag name="Fuel">72</Mytag> </stateData> Sorry Guys, I did not meant to be lazy. Ok Here is the question: I ...
2
votes
0answers
145 views

Translating XML to protobuf

I am writing a java application that takes schema-bounded XML as input and needs to translate it to a protbuf. There is no processing needed to be done; I simply need to grab a few fields from the ...
2
votes
2answers
107 views

Is it possible to auto generate annotated-mapped POJO classes using techniques like Hibernate, JIBX etc?

Hibernate can auto-generate schemas from properly annotated POJO classes. And I also know that JIBX can create a data model (set of classes) out of properly structured XML schemas. Is there a way to ...
2
votes
1answer
139 views

How to marshall an objectgraph with Java XML binding to a specific depth?

being a newbie to Java XML binding i am facing a challenge. Let say i have a scenario where my domain model is constructed and i want to marshall this domain to an xml structure. Now i want to ...
2
votes
1answer
410 views

Abstract mapping with custom JiBX marshaller

I have created a custom JiBX marshaller and verified it works. It works by doing something like the following: <binding xmlns:tns="http://foobar.com/foo" direction="output"> <namespace ...
2
votes
1answer
621 views

Marshalling Different Classes with Spring MVC and JIBX

We are trying to build some RESTful services with Spring MVC. We will be providing several representations: XML, HTML, & JSON. We would like to use JiBX as the OXM technology. We are currently ...
2
votes
1answer
287 views

XML Marshalling: How to add an attribute from another namespace to an element

I want to generate this XML: <myElement myAttribute="whateverstring" xsi:type="hardPart"/> I have this XSD: <xsd:element name="myElement"> <xsd:complexType> ...
2
votes
1answer
901 views

How to import an XML schema into the “no namespace”

I have a schema here where I am trying to include/import another schema that has no namespace (and this cannot be changed because it comes from another vendor and it would no longer validate their ...
2
votes
1answer
763 views

JiBX binding DTD schema in Eclipse

I have warnings in binding xml files: No grammar constraints (DTD or XML schema) detected for the document. I have done as is written in the answer here: ...
2
votes
4answers
3k views

Simple Java Xml to POJO mapping/binding?

I'm trying to figure out the simplest way to map an xml file to to a plain old java object. Note: That in my example the xml doesn't quite match up with my intended POJO. ///////// THE XML ...
2
votes
1answer
206 views

JiBX bind value with getter only

I have a class with a complex method which returns boolean (no property field or setter for this field provided). I need to bind this class with JiBX so result of the method would be marshalled to XML ...
2
votes
2answers
285 views

Jibx always gives “Error during validation: null”

I'm really stumped on this incredibly simple mapping. It looks just like one of the examples even. If I comment out the internal structure, it'll run the binding compiler successfully. If I put the ...
2
votes
2answers
2k views

JiBX: How do I keep using interfaces in my code?

How can I keep my using interfaces in classes I want to use JiBX binding with? Example: I have this very simple model in java: public interface A { B getB(); void setB(B b); } public ...
2
votes
3answers
681 views

JiBX on Android (or any other build-time bytecode manipulating library)

I'm considering the use of JiBX for a project that will have to run on both Blackberry and RIM. While it seems like J2ME use of JiBX has been considered by the community (as per JiBX jira tickets), ...
1
vote
0answers
117 views

How to disable namespace validation in JiBX?

I have a JiBX binding file that specifies namespaces. However, I want to turn off namespace validation so that even an XML message with invalid namespace could be unmarshalled. I have a binding file ...
1
vote
1answer
114 views

jibx: Missing required object exception

I'm useing JiBX to marshall some Classes. It works well, until i get a IllegalStateException java.lang.IllegalStateException: Missing required object at ...
1
vote
3answers
501 views

JAXB - Creating modules for reuse

Does JAXB support modular code generation? Most of my background is with JibX for XML marshalling, but for legacy reasons our firm is using JAXB. One feature that was available for JIBX was modular ...
1
vote
1answer
1k views

JiBX unmarshalling - is it possible to tell JiBX to ignore the order of elements?

Is there a way to get by this? For example, my XML: <group> <idExt>new group idext</idExt> <user-id>1</user-id> <parent-id>2</parent-id> ...
0
votes
1answer
15 views

Maven Mulitmodule jibx Project

I have a Multimodule project like this: parent entities jibx-exporter I have configured jibx in the pom of jibx-exporter like this: <plugin> <groupId>org.jibx</groupId> ...
0
votes
0answers
19 views

JIBX is blowing up on xml:lang

I have to admit I'm at a loss here. I've been googling around and I haven't found anything that fully answers this. JIBX command: java -cp lib/jibx1.2.3/jibx-tools.jar ...
0
votes
1answer
44 views

How to add an attribute to the element in XSD

I'm using jibx to create a xml. the requirement i have is to get Xml as below <report> <info> <meta name="acntNo">11111111</meta> <meta ...
0
votes
1answer
35 views

jibx how to bind collection

I need to map the following XML string to an object using Jibx: <Domains> <DomainName>fdfsdfdsfds</DomainName> <DomainName>fdfsdfdsfds</DomainName> ...
0
votes
0answers
98 views

JIBX | Issues with using Abstract Classes in Schema(XSD)

We are using JIBX 1.2.3 in our project. We have created following three classes in our XSD: A. An abstract class named - "Customer.java" &lt;XS:complexType name="Customer" ...
0
votes
1answer
76 views

Making data model classes serializable

I am using JiBX for XML-Java data binding. The current configuration generates classes pretty well but I want these generated classes to implement java.io.Serializable. Here is maven plugin ...
0
votes
1answer
150 views

jibx 1.2.3 modular schema to code generation - binding compilation causes Internal error - cannot modify class

I have a maven multi-module project having hierarchy: parent + ota-module + ota-common + ota-veh-avail-rate OTA2003B ( ...
0
votes
1answer
193 views

JiBX Code-Gen Error: Duplicate name on format element at

I am trying to generate code (with customizations applied) for OTA schema available at [OTA2003B] ( http://www.opentravel.org/Specifications/SchemaIndex.aspx?FolderName=2003B ) using JiBX Code Gen ...
0
votes
2answers
128 views

jibx-maven-plugin 1.2.3 schema-codegen goal <schemaLocation> value ignored

I am trying to use jibx-maven plugin 1.2.3 for generating Java Source Code from a Schema file. Following is the plugin config in my pom.xml <build> <plugins> <!-- To use ...
0
votes
1answer
130 views

JiBX: How to create xml schema (xsd) based on xml document(s) with help of JiBX?

Currently I have a bunch of XML files. Unfortunately, there is no XSD or any other schema file. Within my program (Java) I use JiBX to (un-)marshal XML files from/to POJOs. Consequently, my question ...
0
votes
0answers
53 views

How to read multiple objects as array from an XML document using JiBX

I use JiBX to map the content of an XML-file to Java objects. Within that document there are several elements, each representing a Java object. Now the question: how can I read and map one element ...
0
votes
1answer
72 views

Using JIBx to generate XSD from binding.xml

Is there a way to generate an XSD document automatically from the binding.xml used by JIBx? This is mainly to allow offline validation of the XML documents will be unmarshalled eventually. I ...
0
votes
0answers
37 views

JIBX cdata in unnamed structure

I need to put cdata into a structure that does not have a name. I tried this, but am getting a JIBX exception. Is this allowed? <mapping name = "m" class="com.something.MRequest"> <value ...
0
votes
0answers
50 views

maven - jibx codegen - storing binding.xml

Sorry this repeats previous content that was truncated. I'm using maven to build a jar containing generated code from an schema file using jibx. To do this I'm using the jibx-maven-plugin with the ...
0
votes
3answers
175 views

maven - jibx codegen - storing binding.xml

I'm using maven to build a jar containing generated code from an schema file using jibx. To do this I'm using the jibx-maven-plugin with the schema-codegen goal. I want to include the generated ...
0
votes
0answers
266 views

Exporting a runnable jar from big eclipse Java project with JIBX too, works in Eclipse but cant figure out how to export it

I am working with a large Java web service-communicating project with many dependencies to C++ Libraries and which uses a tool I am not too familiar with called JIBX. Due to some updates at the ...
0
votes
0answers
21 views

org.apache.bcel.classfile.FieldOrMethod build error

When I build some code with maven, I get the following build error: [INFO] [jibx:bind {execution: default}] [INFO] Running JiBX binding compiler (single-module mode) on 3 binding file(s) Running ...
0
votes
1answer
36 views

Jetty and Jibx-ws web services

I've read the SOAP Service documentation and example in te Jibx-ws website but how do I configure my Jetty Server object to serve it? Thanks!
0
votes
1answer
45 views

JiBX trim-whitespace ambiguiti

I was trying to add a trimming feature to my JiBX bindings. From what the documentation said I can either add custom converters and then add in the bindings OR I can add a trim-whitespaces="true" ...
0
votes
0answers
53 views

How can I handle xs:anytype with Jibx?

Jibx does not seem to support elements with type="xs:anyType" in the xml schema. The code generator simply skips this element in the schema. Is there a workaround or do I have to move to another ...
0
votes
1answer
136 views

soap tags using JiBX

I am a web services developer. In all of my XML requests I send to a different webservice, I need to add soap envelope, soap header, soap body tags. and in the response I need to ignore those and ...
0
votes
1answer
108 views

How to set a default value when a field is null in jibx binding?

I would like to set a default constant value to a particular value node in JiBX when the corresponding field value is null. Is this possible and if so, how?
0
votes
1answer
80 views

JiBx error when inlcuding other schema

Here is the schema I am using for JiBx to codegen and bind. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://www.abc.com/abc/service/APIService" ...
0
votes
1answer
358 views

JiBx Maven build issues

I have a pom.xml which I use to generate sources from schema and bind and compile. <!-- <plugin> <groupId>org.jibx</groupId> ...
0
votes
1answer
96 views

jibx adding members to a collection via multiple xml files

We're using jibx for our configurations and everything works well so far. I'd like to take one of my mapped objects and have a collection currently configured on that object be configurable by ...
0
votes
0answers
193 views

Specifying a custom marshaller for JiBX BindGen

I'm trying to create a JiBX binding using BindGen (JiBX version 1.2.3), but am running into problems with a java.util.Map that has String keys: Exception in thread "main" ...
0
votes
1answer
228 views

How do I get IntelliJ 10 to deploy a project that uses JiBX?

I have a multi module maven project (a war) on of these modules utilized executes a post-compile step to update JiBX bindings. I would like to use IntelliJ to build and deploy this project. However I ...
0
votes
1answer
554 views

How do I get Jibx to add two different objects implementing the same interface in a collection?

Like the title says, I have two different objects that implement the same interface and I want to add them to the same collection. My XML looks like: <root> <item-list> ...
0
votes
1answer
413 views

JiBX: How to run codegen on a schema that imports into the no-namespace schema

I have a schema here where I am trying to include/import another schema that has no namespace (and this cannot be changed because it comes from another vendor and it would no longer validate their ...
0
votes
1answer
368 views

JIBX MAVEN Problem

I am trying to use JIBX maven plugin in my Spring Web Service project, My project has diferent layers (API-DAO-SERVICE vsvs..) these layers are individual projects and has maven dependency each ...

1 2