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.

learn more… | top users | synonyms

1
vote
0answers
125 views

JAXB treatment of xs:normalizedString

Suppose you have a complex type <xs:complexType name="RepeatingNormalizedStringType"> <xs:sequence> <xs:element name="repeatingNormalizedString" type="xs:normalizedString" ...
1
vote
0answers
629 views

Unmarshalling MTOM message using Camel Spring-WS and JAXB dataformat

1) Is there a way to unmarshall MTOM message using Camel Spring-WS component? 2) I tried with Camel JAXB dataformat. It didn't work. Datahandler doesn't have any content. Does JAXB dataformat support ...
1
vote
0answers
356 views

XSD lowercase enumeration, translated to jaxb object and then to json string, became UPPERCASE

I have an XSD file with enumeration in lower case e.g. <xsd:simpleType> <xsd:restriction base="xsd:string"> <xsd:enumeration value="oneTwo"/> ...
1
vote
0answers
220 views

Tomcat not using JAXB for JSON marshalling correctly?

I'm working on a RESTful web-service using Jersey v1.9.1. Some methods return JSON. When I want to debug my application I start within a grizzly server, otherwise for production I build a war file and ...
1
vote
0answers
1k views

JAXB: error unmarshalling element containing xsi:type with namespace

If I have the following schema: <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="test" xmlns="test" version="1.0" elementFormDefault="unqualified" ...
1
vote
0answers
377 views

How to generate customized XML response in Java based web service?

I want to create web service in java using Netbeans 7. I have two entities Product and Category both annotated with JAXB annotations. I have created EJBs using these entity classes and web service ...
1
vote
0answers
387 views

netbeans jaxb marshaller does not generate xsi:nil

I have next problem. My XSD schema "searchevents.xsd" is: <?xml version="1.0" encoding="UTF-8"?> <xs:schema elementFormDefault="qualified" ...
1
vote
0answers
180 views

pass subclass instances as superclass with Jaxb

I need to send/receive polymorphic objects from/to server while invoking my spring enabled restful service. Please let me know if xmlseealso annotation can be useful even when there are more than 1 ...
1
vote
0answers
219 views

JAXB-AXIS, When request xml is unmarshalled JAXB creates JAXBElement<Foo> object is creted instead of Foo Object

After doing a search abt the topic, i came to know by setting generateElementProperty=false for JAXB bindings we can avoid this. But all the solutions shows how to set this property in a binding file ...
1
vote
0answers
284 views

Ant scripting creating 2 class files

I am not sure If I am asking a very simple question but I have a project in which the developer has used "XSD" files to create java source codes. The input to the project is an XML message which will ...
1
vote
0answers
385 views

jaxb unmarshal returns empty hashmap but sets it as null

I wrote an XMLAdapter for my HashMap. On unmarshaling an empty hashmap (presented by an empty array), I initialize an empty hashmap and return it, as seen in the code. @Override public ...
1
vote
0answers
150 views

Can a JAXB-annotated class known the JAXBContext or JAXBIntrospector instance?

Can a JAXB-annotated class known the JAXBContext or JAXBIntrospector instance which is used to marshal/unmarshal the class? Something like: @XmlType class Hello { @XmlAttribute private ...
1
vote
0answers
281 views

Does jaxb support redefine in marshalling

I have 2 XML schema, called Banner-2.2.xsd and BatchBanner-2.2.xsd. BatchBanner-2.2.xsd contains <xs:redefine schemaLocation="BannerXml-2.2.xsd" > The jaxb generates from it the classes as ...
1
vote
0answers
550 views

How can I send a JAXB-marshalled object as a parameter using the Jetty client API?

...practically I'm looking for a REST-style EJB-or-SOAP-replacement ;) This enables me to receive an JAXB-marshalled object from server Client side WebResource r = ...
1
vote
0answers
1k views

JAXB How to force xsi:type in array of subclasses? (JBoss 4.2.3)

(Please note; i'm completely new to webservices, so the following may be stupid/incorrect but please be patient) In my WebServices' @WebMethod I'm returning an array of an abstract base class (JAXB ...
1
vote
0answers
684 views

generation of java classes from xsd using jaxb

Currently working on a project in which the xsd's have been provided for data exchange. The xsd's are available isotc211. As can be seen there are a couple of them and i am interested in generation of ...
1
vote
0answers
468 views

JAXB Marshal Field that is a subclass

I have a wrapper class with a property whose type is a superclass of several subclasses. I want to marshal to JSON and have the subclass marshalled for that field. When I do it, I get error: ...
1
vote
0answers
434 views

JBoss/JaxWS/JaxB: SOAP and JSON binding to one webservice

Hello. I've written a SOAP-webservice using JAX-WS and JAX-B, running on a JBoss 5. Due to the overhead of SOAP I now try to enable the access to the webservice via JSON (but it should still be ...
1
vote
0answers
531 views

Generating wsdl using Websphere and JAXB annotated service/entities

I'm trying to generate a wsdl. The service is constructed as shown below. Nothing unusual really, but I do have the Exception I want to throw, located in a separate package, thus appearing in a ...
1
vote
0answers
306 views

How can I marshal Objects from a Socket without closing it? (JAXB Marshaling from Inputstream via Socket)

I have tried in many different ways to send my xml document over a socket connection between a server and a client without closing the socket after sending (keep the outputstream open, for sending ...
1
vote
0answers
49 views

can i make inteface in my xsd schema?

In my schema I have a base class called "TypeGroup" and a few classes that extend from it. Every class has a member "value" with a different type. In my program I got the "TypeGroup" class instance ...
1
vote
0answers
539 views

How to use CatalogResolver in JAXB

Here is a method to do that, but I'm not sure if it is a reasonable way. final SchemaFactory sf = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI); ...
1
vote
0answers
679 views

JAXB2 unmarshalling xsd:anyType Error

I am encountering a problem unmarshalling data containing xsd:anyType(ur-type) objects such as: <xsd:element name="Options" minOccurs="0"> <xsd:complexType> ...
1
vote
0answers
508 views

how to force schema compiled classes to extend specific class outside schema

I saw this thread Schema Generated Classes extending a common super class and my requirement is just one step ahead. I want my schema generated classes to extend specific external classes and not a ...
1
vote
0answers
217 views

JAXB : get classcastexception while trying to unmarshall mixed content

JAXB : get classcastexception while trying to unmarshall mixed content node i use xjc to generate jaxb classes this is a text 1234 how will i get both text aswell as item node , with out ...
1
vote
0answers
62 views

JAXB Adapters and what happens on the other end in .NET?

I've created a rather large heap of JAXB adapters to deal with immutable classes. It all works fine when both ends use the annotated Java classes. Looking at the resulting schema from CXF java2ws ...
1
vote
0answers
750 views

Get rid of extra unwanted complexTypes from code-first generated WSDL - CXF with JAXB binding

I am attempting to clean up some JAX-WS annotated code-first web services such that they produce optimal and clean wsdl files for any implementing clients. I've ran in to a problem where one of the ...
1
vote
0answers
351 views

Springframework JAXB Marshalling Exception in IE not in Firefox

Hi I get this marhshalling exception when I call a service using IE but it works fine with Firefox. DEBUG - AbstractHandlerExceptionResolver.resolveException(108) | Resolving exception from ...
1
vote
0answers
305 views

XML to DynaBeans from only xsd. Possible?

my question seems simple but I'm going crazy :) Is there a way, using JAXB, Castor or XStream to convert XML into DynaBeans, considering that I have the xsd schema but no precompiled mapping classes ...
1
vote
0answers
217 views

Substituting one node for another

I'm using docx4j, which uses JAXB. I want to change a Text node to be a Paragraph node (or delete/add in the same place). This may be more of a JAXB question .. I'm not familiar with it. I can find ...
1
vote
0answers
836 views

What the difference between JAXB and CXF?

I have tried to generate java classes from a schema xsd with JAXB2.1 and run XJC and it works. I have included the schema in a wsdl file and i generate java classes with wsdl2java command using CXF. ...
1
vote
0answers
991 views

JAXB lists namespaces in root element (-> each element)

By default, jaxb 2 lists all (all possible required) namespaces in root element during marshalling: Is there a way to describe namespace in each element instead of root element ?: ...
1
vote
0answers
230 views

JAXB type Erasure

I'm trying to create java to xsd for a java type that looks like this. public class MainRequest<E extends AParentType<Person>> extends EObject { private Transaction tran; private E e; ...
1
vote
0answers
637 views

xjc binding file for <extension base = “anyType”/> throws error

I have xsd defination <element name="primaryKey" nillable="false"> <complexType mixed="false"> <complexContent mixed="false"> <extension ...
1
vote
0answers
1k views

EJB3 Web Services Error with JAXB

Update: I checked the JBoss log and found the following errors: 2009-10-28 10:21:34,472 ERROR [org.jboss.ws.metadata.wsdl.xmlschema.JBossXSErrorHandler] (main) ...
0
votes
0answers
9 views

Not able to generate javadoc for Enum using XJC

I have a Enum defined in an XSD as : <xs:simpleType name="TestEnum"> <xs:restriction base="xs:string"> <xs:enumeration value="Value1"/> <xs:enumeration ...
0
votes
0answers
11 views

JAXB and schema

My schema is like the following <xs:element name="transactions"> <xs:complexType> <xs:sequence> <xs:element ref="abc"/> <xs:element ref="def"/> </xs:sequence> ...
0
votes
0answers
11 views

wsimport error duplicate class generation error

I tried to generate classes from wsdl using wsimport command of below from commandline. But, getting the errors. **C:\Users\Miky\Desktop>wsimport -keep -s generator Awsdl.wsdl ...
0
votes
0answers
29 views

Does Jaxb support plugins/extensions?

I'm facing a case where Jaxb doesn't support unmarshaling a piece of XML (that was poorly designed, see: Using JAXB to unmarshal xml with map-like structure to object). I'm trying to find a flexible ...
0
votes
0answers
23 views

JAXB: XML to java object converstion

XML Structure: <res> <resp1 m="w" n="x"> <A x=".7" y=".5"> some text here </A> </resp1> </res> How to create java pojo to parse this xml using JAXB. bcoz it ...
0
votes
0answers
29 views

JAXB Two classes have the same XML type name

I have an XSD schema: <element name="CanonicalizationMethod" type="ds:CanonicalizationMethodType" /> <complexType name="CanonicalizationMethodType" mixed="true"> <sequence> ...
0
votes
0answers
35 views

Unable to expose Web Service Impl class through JAX-WS annotations

I am developing a web service provider using JAX-WS. The below steps are followed. Generated stub classes including SOAPBindingImpl class and stub classes and packed as a JAR file and included the ...
0
votes
0answers
15 views

How to get the maxlenth element in my generated xsd

I have a query : ( SELECT id, empId, firstName, jobTitle, country, lastModified, talentPool, lumpsumTarget FROM User ) I get the response using web service. The query response looks something like : ...
0
votes
0answers
19 views

Does JAX-RS have a way to bind JAXB Annotations to APPLICATION_FORM_URLENCODED

So while using JAX-RS, you can automagically have your JAXB annotations output JSON or XML depending on the media type you set for your endpoint. I'm surprised to see that when I set the mediatype to ...
0
votes
0answers
15 views

how to map same value to two different fields in jaxb while marshalling and unmarshalling

I have a xml tag Hello for which there is a field like below in my java class HelloWorld{ @XmlElement private String name; } While unmarshalling this successfully assigns Hello value to name ...
0
votes
0answers
21 views

java.lang.NoSuchMethodError: com.sun.xml.bind.v2.runtime.JAXBContextImpl.<init>

When I am running the wsimport utility from ANT I am getting the following error java.lang.NoSuchMethodError: ...
0
votes
0answers
27 views

JAXB Validation error message

I am working upon a single page application wherein I am using JSF2, SPRING 2.5, JAXWS 2.0 webservice client, IBM Websphere App Server 8.5 . Basically My page has a form with multiple combo boxes. ...
0
votes
0answers
17 views

“[ERROR]” undefined simple type

Currently using JWSDP 1.6. Want to migrate to JWSDP 2.0. Running xjc (JWSDP 2.0) on JAXB schema and getting [ERROR] undefined simple type "{http://www.ifxforum.org/170/schema}ClosedEnum". line 44 of ...
0
votes
0answers
23 views

how to validate xml via xsd in java depending on value of an xml element

I am using Jaxb2Marshaller and using ValidationEventHandler-handleEvent(). i am storing any error message occurred in the process in a map. I am using xsd to validate mandatory/optional tags. So the ...
0
votes
0answers
22 views

Sample XML AutoGeneration using JAXB

I am developing a testing tool, which needs to autogenerate all possible XMLs out of a given xml schema(XSD). I am using JAXB to generate JAVA objects for the xsd. And then using java combinations ...

1 3 4 5 6 7 22