For issues relating to the JAXB XML binding architecture, version 2.
1
vote
1answer
472 views
JAXB - marshal java object with XML string field
suppose i have an object with String property that has an XML string. like:
class myObject {
String xml;
@XmlElement(name = "xml", type = String.class)
public String getXml() {
...
1
vote
0answers
85 views
Spring unmarshal and wire XML into bean
Given a static XML (as defined below) can you configure spring to unmarshal and load the bean without using a factory method. More specifically is it possible to in some way configure it in ...
1
vote
1answer
217 views
Type of substitution group or any of its subclasses are not known to this context
I can't seem to get all the JAXB magic right with regard to the abstract super-class generated from a substitution group. I'm using the reference implementation of JAXB.
Here's the class hierarchy:
...
0
votes
0answers
117 views
JBoss 7 - RestEasy JAXBMarshalException
I'm developing a webservise using Jobss RestEasy. There i got a Marshal Exception
*org.jboss.resteasy.plugins.providers.jaxb.JAXBMarshalException: javax.xml.bind.MarshalException
- with linked ...
1
vote
1answer
49 views
Jaxb Element Annotation
How do i annotate my class to archive this xml structure:
<elementTag attribute="false">Testvalue</elementTag>
I tried to put elementTag into a seperate class, but then "Testvalue" is ...
0
votes
1answer
142 views
CXF Web service plus JAXB generated classes from another jar?
I have a java archive, schema.jar, containing classes generated from an XSD using xjc. I need to create a CXF web service (jax-ws) with web methods that create and return objects from the set of ...
1
vote
1answer
42 views
How do I (un)marshall a list or array as the root element with JAXB2?
I would like to marshall and unmarshall documents with JAXB2 annotations that are structured as follows:
<mylist>
<element />
<element />
<element />
</mylist>
...
1
vote
0answers
107 views
Spring Webservice Client - Problems creating
I am new to Spring, so my apologies if this seems obvious. I am trying to create a JUnit test case that calls my webservice. I think I finally got the gist of wat I am suppose to do, but keep getting ...
1
vote
1answer
235 views
Jaxb2Marshaller fails to unmarshall in the presence of '&'
I am using org.springframework.oxm.jaxb.Jaxb2Marshaller to unmarshall my request xml. The unmarshalling fails because of the presence of '&' (ampersand) in the request even though the encoding is ...
2
votes
2answers
113 views
Line number of individual XML element while unmarshalling using jaxb
I have a class Person with attributes name and address. I display it in a XML. While unmarshalling from XML will it be possible to get line number for name and address separately.
I tried using ...
0
votes
1answer
137 views
Validate an XML generated using JAXB Classes (not by XSD)
If XML is generated by JAXB classes(not by XSD), I don't have an XSD to validate. How do I validate the XML? Does the JAXB does validation of XML automatically before it starts unmarshalling?
1
vote
0answers
214 views
Jackson/JAXB serialize List without the wrapper element
I am trying to use Jackson's XML annotations to serialize a Map to XML. I am converting the Map to a List in order to use the map keys as the element names and the values as the element values, and I ...
0
votes
0answers
372 views
Maven configure. Java WS project using Eclipse - Apache CXF, JAXB, JAX-WS
I am trying to avoid the highlighting errors in a maven project with JAXB and JAX-WS using Elicpse
With JAXB, Eclipse shows me the next class as unknown
@XmlSeeAlso({
MyClass.class
})
And I have ...
1
vote
0answers
58 views
Missing create methods for generated classes in ObjectFactory
We use jaxb2-plugin to generate some classes and we depend on Object factory while creating JaxbContext.
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
...
0
votes
2answers
231 views
JAXB/xjc: Generate classes from child elements and load them based on class types
I have a configuration file in XML, which looks something like:
<configuration>
<database>
<host></host>
<port></port>
...
0
votes
2answers
206 views
how to use jaxb2 maven plugin with inline XSD?
I am trying to generate marshalling and unmarshalling objects using maven jaxb2 plugin.
But I dont have the .xsd file for the .wsdl.
the schema definition is inline.
Please let me know how to proceed ...
0
votes
1answer
47 views
MOXy generating readable XML
I would like to know if there is a convenient way to customize the output xml of MOXy?
Specifically, in some classes I would like to print the attributes in separate lines.
For example:
...
1
vote
2answers
277 views
JAXB - marshalling with recursive dependency
is anybody try to marshal JAXB object with recurisive referency? I have following class:
public class A {
private Long id;
private String name;
private List<A> aList;
}
and I'd ...
1
vote
1answer
93 views
Apply external custom binding to included schema
I am using binding.xjb to apply custom binding to main.xsd. Works fine.
I want to break down main.xsd to include say "common.xsd" but doing that breaks my binding.xjb.
example: below is my ...
1
vote
2answers
86 views
Hide a value in xml that can be retrieved only when unmarshalling
Is it possible to hide a value in XML such that it can be retrieved only when unmarshalling.
1
vote
1answer
164 views
@XmlTransient marked value returns null when unmarshalling
I am using @XmlTransient for hiding some Strings in output XML file. It works fine while marshalling and the XML is fine. However when I unmarshall the XML, the @XmlTransient marked values appear as ...
1
vote
1answer
989 views
Remove standalone=“yes” from jaxb generated xml
public final String getMessage() {
JAXBContext jaxbContext;
StringWriter sw = new StringWriter();
try {
jaxbContext = ...
1
vote
2answers
373 views
JAXB generates faulty classes
after generating some classes from a xsd file, the classes are faulty.
a @xmlElementRef is used with required="false" and that attribute is not allowed.
My .xsd I'm using:
<xs:schema ...
1
vote
1answer
37 views
Unmarshalling XMLs generated from two XSDs
Here are two xsd definitions, both of them are almost 90% similar.Below are the skeleton of the first xsd:
XSD1 :
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element ...
0
votes
1answer
245 views
XSD(maxOccurs=(specify large value))- java.lang.OutOfMemoryError: Java heap space
when we deploy the application on tomcat server I have been facing java.lang.OutOfMemoryError issue because we specify large values for "maxOccurs" attribute(i.e. maxOccurs="999999")in the schema ...
0
votes
1answer
364 views
xjc / jaxb2-commons interface binding issue, customization attached to the wrong place
I'm trying to add an interface using the jaxb2-basics artifact from the jaxb2_commons maven group.
My pom.xml contains the following dependencies
<dependency>
...
1
vote
1answer
95 views
JAXB Parsing of similar xml files
I have different XML returns that I want to parse with JAXB with annotated classes. Many of the XML files share a similar top structure and with the contents of an inner tag that can vary. Since we ...
1
vote
1answer
384 views
UnmarshalException in Spring 3.1 Restful Service Using xml Request
i use spring web 3.1.1 and spring oxm 3.1.1.
when jaxb2marshaller attempt to unmarshall xml source to object
blow Exception occured.
2012-12-03 ...
1
vote
1answer
258 views
CXF wsdl2java: Validation of XML restriction in generated stubs
Question: Using CXFs wsdl2java, is it possible to include restrictions of the schema elements and types in the generated Java stubs?
Use case:
if my WSDL includes the following type:
...
0
votes
0answers
89 views
Generate classes from XSD into separate packages with maven-jaxb2-plugin
I just took over a project which used an Ant build script to generate classes from XSDs. All XSDs are in a single directory and the script used to generate each class individually using XJC.
Yet, the ...
2
votes
1answer
535 views
Jaxb2Marshaller's classesToBeBound property
I am trying to configure Jaxb2Marshaller like below:
<bean id="jaxbMarshaller" class="org.springframework.oxm.jaxb.Jaxb2Marshaller">
<property name="classesToBeBound">
...
3
votes
1answer
330 views
JAXB unmarshallling fail when runnin on WAS 7 (succeed on a standalone test)
JAXB unmarshallling fails when runnin on WAS 7 (succeed on a standalone test)
[21/11/12 16:47:55:690 CET] 00000025 DefaultMessag W org.springframework.jms.listener.AbstractMessageListenerContainer ...
0
votes
0answers
45 views
restlet file extension content negotiation using JAXB
I try to properly enable file extension negotiation in a Restlet application. i need to return a bean annotated with the relevant JAXB annotations as json or xml. I reference Jaxb and Jackson Restlet ...
2
votes
1answer
274 views
Can we generate JAXB classes for a set of xsd in multiple packages?
I have an xsd which has several child XSD s embedded (using "xsd:include".) in it (but each xsd belongs to the same namespace). I was asked to generate jaxb classes in separate sub packages (one sub ...
1
vote
2answers
467 views
JAXB 2: unmarshalling xml without xml declaration
Good time!
I have an xml:
<fieldSet name="Test" desc="Test">
<field name="id">
<fieldinfo>
<name>id</name>
<type>String</type>
...
1
vote
0answers
156 views
Generating JAXB classes with multiple prefixes using an external binding
I have a group of XSD files, as follows:
http://www.iana.org/assignments/xml-registry/schema/contact-1.0.xsd
http://www.iana.org/assignments/xml-registry/schema/domain-1.0.xsd
...
1
vote
1answer
190 views
JAXB use String as it is
I use REST and i was wondering if i can tell jaxb to insert a string field "as-it-is" into the outgoing xml.
Certainly i count unpack it before returning, but i would like to save this step.
...
0
votes
1answer
39 views
JAXB2 annotations: troubles rendering a value in a list
Ihave some issues trying to render the following xml code with JAXB2 annotations:
....
<bizTransactionList>
<bizTransaction type="urn:epcglobal:fmcg:btt:po">
...
1
vote
1answer
267 views
JAXB: Ignore order of elements while using xs:extension
We are using JAXB for Java-xml binding.We initially created domain class and then using schemagen commandline tool the following schema has been generated. But generated schema is not valid, giving ...
2
votes
1answer
182 views
Error unmarshalling jaxb objects
I have jaxb objects against an XML schema. That xml schema can have different root element. Which is working perfectly fine in the main project. Based on those generated objects, I am trying to write ...
0
votes
0answers
87 views
Unmarshalling a schema to JAXB objects
Folks,
I'm trying to unmarshall the following example of an XSD schema. The problem I have is that we have a dynamic database, so we can't support concrete classes that would get created if I ...
0
votes
0answers
100 views
IncompatibleClassChangeError while running JAXB on Unix AIX
I get a java.lang.IncompatibleClassChangeError when i try to run my project on AIX machine.
The project generate XML files using JAXB API (2.0).
The development environment installed in Windows XP ...
0
votes
1answer
526 views
Posting JSON via Jersey
I have this code
ClientConfig config = new DefaultClientConfig();
Client client = Client.create(config);
client.addFilter(new HTTPBasicAuthFilter(adminUser, adminPass));
...
1
vote
1answer
149 views
JAXB mixing episodes and xjc:javaType in jar library
If got a Java library which other projects depend on (.jar dependancy through Maven). In this library there is an XSD-file which defines some xs:simpleTypes which are also annotated with xjc:javaType ...
1
vote
1answer
229 views
Unmarhshalling a tricky CDATA element using JAXB
I want to use JAXB to unmarshal the following into a 'Tag' object. This is how the client passes the results to me -
<Tag type="a">
<![CDATA[html text here]]>
</Tag>
Note ...
1
vote
1answer
413 views
JAXB XmlElementRef lookup into entire classpath
Hi can someone please explain how to solve following problem.
i have class structure like this..
public class RequestWrapper implements Seriallizable
{
private List<Request> requests = ...
1
vote
2answers
383 views
Jaxb XmlElementRef parent class tag
i need some help in jaxb XmlElementRef tag generation. I have classes like following,
@XmlRootElement(name = "Request")
public class BaseRequest
{
@XmlAttribute(name = "requestid")
private ...
4
votes
1answer
519 views
Can xjc -version be trusted?
I've spent the day debugging an issue with JAXB getting namespaces wrong or missing (possibly related to Marshaller.JAXB_FRAGMENT, but that's not the point here).
I found the problem occurs with JAXB ...
1
vote
1answer
377 views
Creating an XML with attributes and dynamic values using JAXB
I want to Create an XML using JAXB.
It should have attributes in it whose values have to come from a property defined in corresponding class.
The current output is giving a property as a child tag, ...
2
votes
1answer
571 views
Convert nil=“true” to null during unmarshal operation
I am receiving XML from a server whose schema specifies nearly every element as:
<xs:element name="myStringElementName" type="xs:string" nillable="true" minOccurs="0"/>
<xs:element ...

