Java Architecture for XML Binding is the Java standard for working with XML as domain objects. It provides an easy mechanism for mapping Java classes to XML representations.
1
vote
0answers
82 views
XJC and <xs:choice>
I'm having trouble dealing with xjc and its way of handling the .
I'll explain :
<xs:element name="catalog">
<xs:complexType>
<xs:choice minOccurs="1" ...
1
vote
0answers
89 views
Does GlassFish Web Profile supports Web Services?
We prefer the light version of Glassfish (Web Profile), but also need web services support.
They say here that only the Full version has JAX-WS 2.2 and JAXB 2.2 which are, AFAIN, the fundamentals of ...
1
vote
0answers
158 views
Modifying JAXB generating classes from XML and customizing JAXB unmarshalling
There is few elements in my XML/XSD like <TestElement tc="222">SomeValue</TestElement>. As per the XSD tc and its value belongs to another element which has just key value pair.
...
1
vote
0answers
289 views
Sun sTax, JAXB and turning off validation against DTD/XSD/schema
We are using JAXB in conjuction with sTAX XMLEventReaderAPI to parse and extract data xml retrieved by making a REST Call.
InputStream responseStream = response.getEntityInputStream();
if ...
1
vote
0answers
118 views
Will JAXB handle file locking for me?
I would like to make sure that no other process modifies the xml file while reading it. This is my code:
final File file = new File(configFilePath);
final FileChannel channel = new ...
1
vote
0answers
99 views
is there a jackson listener akin to jaxb's Unmarshaller.Listener?
Does Jackson provide a listener to intercept de-serialization? The object being serialized and de-serialized contains some standard objects that are stored in MySql. Rather than creating redundant ...
1
vote
0answers
35 views
Retrieving choice vlues from xsd
here is the part of xsd-scheme:
<xsd:complexType name="TGroups">
<xsd:choice>
<xsd:element name="GROUP1"/>
<xsd:element name="GROUP2"/>
</xsd:choice>
...
1
vote
0answers
163 views
Handle Soap Fault Using JaxBElement
Problem is
WSDL we have used for generating JAXBElement does not contain SOAP Faults where as the service can return Soap Faults in response.
Now when the service is returning faults and I use my ...
1
vote
0answers
91 views
Creating tag references that just work in SOAP 1.2
According to this site about SOAP 1.2, multi-reference values may be encoded in-place. How do I get CXF/Jaxb to marshall and unmarshall this kind of content?
Jaxb's IDRef annotation is treated as a ...
1
vote
0answers
73 views
Finding JAXB generated class for root element
I am new to using JAXB. I need to generate an xml file from its schema, where the schema and element values are input from the user.
My problem is, if I don't know the name of the elements beforehand, ...
1
vote
0answers
133 views
MOXy jaxb binding error for redefine element
Can any one help me ?
In my project, I need to pares some schema files, and need to generate xml files base on these schemas. Now ,I want to user MOXy to generate empty xml files base on these schemas ...
1
vote
0answers
1k views
XJC: migrating ant task from JAXB to JDK 1.6
We have migrated to Java 1.6 and as part of the there is a re-write of the ant tasks that used the older xjc ant task to use the executable: xjc.exe provided in Java 1.6
We also need to retain older ...
1
vote
0answers
53 views
How do JAXB handles attribute in tag?
Suppose I have the following xml:
<root>
<tag1>value1</tag1>
<tag2 attr1="somevalue"></tag2>
</root>
I want to know how the JAXB handles the attribute of any ...
1
vote
0answers
159 views
Prevent JAXB to escape HTML markup within my element
Say I have an object with a description field. This field could have a String value with some html markup.
"Say <b xmlns="http://www.w3.org/1999/xhtml">Hello</b> Wold"
When this Object ...
1
vote
0answers
591 views
Using JAXB annotations with RestEasy
I'm trying to use JAXB annotations with RestEasy in order to choose names and elements order in my JSON output.
Somehow, it isn't working, even if the RestEasy doc says it's possible.
Here some ...
1
vote
0answers
246 views
UnmarshalException: unexpected element while parsing xml of referenced type
The Exception:
javax.xml.bind.UnmarshalException: unexpected element (uri:"http://xxx.com/xxxServices/response", local:"A"). Expected elements are ...
1
vote
0answers
161 views
run jaxb1 code on jdk1.6
I have old jaxb1 code that I am trying to run on JDK1.6(u 31).
It compiled fine. When I try to run I get the error -
Error constructing QTIResultsProcessingV12:Input is not a well formed document: ...
1
vote
0answers
119 views
JAXB @XmlSeeAlso being overwritten
I've defined a few types in a common.xsd I have multiple XSDs which have types that extend from the same type in common. When I generate the classes the @XmlSeeAlso attribute keeps getting updated to ...
1
vote
0answers
162 views
Java/JAXB: Unmarshall XML with inheritance
I need help to annotate my classes so I will be able to map correctly all the attributes/elements to the right classes.
I have the following xml:
<?xml version="1.0" encoding="UTF-8"?>
...
1
vote
0answers
140 views
Refactoring XSDs and/or generating java code
I have been given a legacy set of XSDs for services my app is providing that are in DIRE need of refactoring. As some of the consumer apps have no development team, I cannot change the resultand ...
1
vote
0answers
433 views
Any Way to Speed Up JAXB Marshalling?
Is there any way to speed up a call to the JAXB Marshaller.marshal(Object, OutputStream)?
The project I'm working on is using JAXB to [un]marshal objects with a fairly large XML schema. The call ...
1
vote
0answers
114 views
avoid generating a jaxb enum class for this simpleType…(or use string instead)
We have a 10,000 enum that someone put in the xsd which generates a 60,000 line file in java which can't compile saying the code is too large
[ERROR] Failed to execute goal ...
1
vote
0answers
204 views
Mule IDE unable to generate JAX-WS client
Using Mule IDE version 3.2.3 to invoke JAX-WS web service. In the "Import WSDL" dialogue after entering the WSDL URL and package name the JAX-WS client generation fails with error message
Error ...
1
vote
0answers
2k views
Error: JAXB 2.1 API is being loaded from the bootstrap classloader, but this RI needs 2.2 API
I am trying to deploy a Java web service into a Tomcat 5.5.20 server. I have the web service packaged in a .war file in Tomcat's webapps directory, and I can see that the .war file gets extracted ...
1
vote
0answers
316 views
jaxws noSuchMethodError in javax/wsdl/Operation.getExtensibilityElements
When I create a ws client in IBM WAS 6.1 as a dynamic project the client works just fine.
But when we do the same thing and try to integrate the client in an existing project which has many other ...
1
vote
0answers
171 views
How to inject cxf bus a custom JAXB context?
I have a server exposing multiple web services.
The objects of the services are scattered in several packages.
From my understanding if you have inheritance and a service can return a number of ...
1
vote
0answers
239 views
gwt and jaxb error
I am using eclipse galileo with gwt.
I'm getting the following errors:
No source code is available for type javax.xml.namespace.QName; did you forget to inherit a required module?
No source code is ...
1
vote
0answers
449 views
JAXB binding simple types
I'm trying to generate classes from an xsd but I'm getting the following exception when trying to customize a simple type:
com.sun.istack.SAXParseException2: A type safe enum customization is ...
1
vote
0answers
296 views
Missing class for indicator field value - EclipseLink exception
I am getting the follow error:
Exception [EclipseLink-43] (Eclipse Persistence Services - 2.3.2.v20111125-r10461): org.eclipse.persistence.exceptions.DescriptorException
Exception Description: ...
1
vote
0answers
390 views
(Jersey + Jackson) XmlAdapter
I have a class Foo which has a variable Map bar. But as a requirement, I need to be able to represent it as an Object.
So I use a GenericXmlAdapter which in turn does an instanceof check and invokes ...
1
vote
0answers
281 views
Enforcement of attribute order in JAXB value constructor
I'm using the Maven jaxb2 plugin to generate a default value constructor for my generated JAXB classes. The problem that I'm having is that the ordering of the attributes/fields changes on different ...
1
vote
0answers
171 views
prevent xml entity expansion attack with jaxb2marshaller
I have looked at @BlaiseDoughan's blog entry Preventing Entity Expansion Attacks in JAXB, and I am trying to look at ways to prevent XMLentity expansion attacks while parsing incoming web service ...
1
vote
0answers
201 views
How can we disable JAXB schema validation in Axis 1.4?
IS there any way the schema validation can be disabled in Axis 1.4, so that client won't break if there is a change in wsdl?
1
vote
0answers
296 views
JAXB Map with Lists
I must apologize, I swore to my self not asking this since is a common subject but despite all the similar questions I'm still having issues.
Update: I found some errors in my code that I fixed but ...
1
vote
0answers
119 views
Generate QName for a java class using JAXB
I am trying to write a routine that given java.lang.Class as input would return the right QName for it. Does JAXB expose any hooks that we can make use of? I tried using JAXBIntrospector but that ...
1
vote
0answers
313 views
Could use more clarification of classloader issues with “doesnt contain ObjectFactory.class or jaxb.index”
Just so it's clear, I've implemented and verified a solution for the error we were getting, but I'd just like to understand the innards of what's going on here. I've looked at similar instances of ...
1
vote
0answers
196 views
java.lang.LinkageError: JAXB version mismatch issue with CXF 2.3 and JBoss 4.2.3
I am developing a REST web service with Apache CXF 2.3 and deploying in JBoss 4.2.3 GA. When I try to access my web service, I am getting this following error
java.lang.LinkageError: JAXB 2.0 API is ...
1
vote
0answers
189 views
JAXB marshall ignore interfaces
I'm trying to marshall a class with an interface in it. I got an error saying "JAXB can't handle interfaces.". I've seen several solutions for handling the interfaces, but I think my case is slightly ...
1
vote
0answers
176 views
org.jvnet.jaxb2.maven2 Generated Serializable Classes
I am using org.jvnet.jaxb2.maven2. I have a set of XSDs that I like the generated classes implements java.io.Serializable.
How should I configure my pom.xml
Regards,
Nami
1
vote
0answers
347 views
Migrating from JAXB 1.0 to JAXB 2.2.4
I am trying to migrate an application from an older version of jaxb to a recent version (2.2.4)
This is the difference in generation of enums.
Generated code from old version
public class Type {
...
1
vote
0answers
163 views
@XmlJavaTypeAdapter throws IllegalArgumentException on parameter
I have an XML adapter which I have specified on a method parameter, but I'm getting an IllegalArgumentException when I start my app up.
I can't find any examples of this anywhere, what am I doing ...
1
vote
0answers
274 views
XML Validation with CXF, with Specific MinOccurs and MaxOccurs
I use cxf 2.1 and let cxf validates the soap request by setting
<jaxws:properties>
<entry key="schema-validation-enabled" value="true" />
</jaxws:properties>
I have xml schema ...
1
vote
0answers
95 views
How do I assign a xsd location in JaxB
I'm using JaxB 2.2, can't use MOXy or other JaxB implementations due restrictions.
Is there a way to assign a created xsd to a Xml Element or Class in Eclipse? For example if I have an xsd in ...
1
vote
0answers
186 views
Errors when using JAXB to generate classes from portlet-app_2_0.xsd
I'm trying to generate classes for the portlet schema, found in http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd using JAXB (version 2.2.5) xjc tool but am getting the following errors:
...
1
vote
0answers
271 views
Generated Eclipse JAXB classes / no namespace
I use Eclipse (right-click -> JAXB Classes) to generate JAXB classes out of an existing XSD.
The XSD has a namespace definition.
Unfortunately in the generated classes the namespace definitions are ...
1
vote
0answers
936 views
JAXB Marshall a Map structure of generic type
Following this example (http://blog.bdoughan.com/2010/07/xmladapter-jaxbs-secret-weapon.html) of Blaise Doughan that works, i am trying to generalize it to any type using generics.
I obtained :
...
1
vote
0answers
88 views
How to marshall a complex HashMap structure
i have this class :
@XmlRootElement(name="maps")
class MyClass{
private Map<Date, Map<String,AnotherClass>> struct=new
HashMap<Date,Map<String,AnotherClass>>();
//getters ...
1
vote
0answers
277 views
How to add jaxb binding when creating SOAP webservice stubs using Eclipse
I have some conflicts from a wsdl that another company wrote, but I should be able to correct them with a custom jaxb binding file.
When I go to create a new Web Service Client, I don't see how to do ...
1
vote
0answers
176 views
JAXB namespaces, what are the rules for elements and attributes?
in the pile of specs I can't find the most basisc question:
I can/must always,
annotate the default namespace element with @XmlElement(name="myElement")?
annotate foreign namespace element with ...
1
vote
0answers
524 views
xjc unknown location - xsds to java error using JAXB XJC
I am in process to convert multiple xsds to java using JAXB, I am using Jdeveloper version 10.1.3.4 as my IDE. JAXB 1.0 version, Xerces-J 2.6.2
Following is the sequence of the build targets and ...

