2
votes
1answer
52 views

Ignoring root element using JAXB

I am using Spring and it's REST template to bind XML from a webservice to a domain object using JAXB. The XML returned from the web service is as follows: <response> <user> ...
1
vote
1answer
55 views

HTTP message converter of Spring 3.0.5 generate inconsistent object when concurrent request

I am following HTTP message converters of spring 3.0.5, for automatically getting java object at controller level. It works fine for sequential request. But getting inconsistency in java object when ...
2
votes
1answer
35 views

xsd -xml regex validation not working for me using JAXB

I have written a simple XSD where I have written following XSD pattern <xsd:element name="xx"> <xsd:simpleType > <xsd:restriction base="xsd:string"> <xsd:pattern ...
0
votes
0answers
29 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. ...
5
votes
3answers
133 views

How to configure Spring Controller and/or JAXB to help prevent SQL / XSS injection

I have a Controller in Spring with a method like the following @RequestMapping(value = "/v1/something", method = RequestMethod.POST, headers = "content-type=application/xml") @Valid public void ...
1
vote
0answers
36 views

How do I use Apache Camel's Spring Remoting Proxy with XML as the transport?

I am using Apache Camel's Spring Remoting, version 2.11.0. I have the following in my beans.xml: <camel:camelContext id="camel-client"> <camel:dataFormats> <camel:jaxb ...
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
2answers
86 views

I am able to write a javax.jws.WebService successfully. However I do not know exactly how to write a web service client for same in java

I have written Webservice in java which has successfully created WSDL. I am stuck in writing a webservice client for my webservice in java. I would like to use my webservice from some jsp classes. How ...
0
votes
0answers
130 views

javax.servlet.ServletException: Unable to locate object to be marshalled in model exception

I am running spring jax-ws in Apache tomcat.It is throwing javax.servlet.ServletException: Unable to locate object to be marshalled in model error. Unable to get answer for the same question. Please ...
0
votes
0answers
59 views

JaxWsPortProxyFactoryBean not marshaling JAXBElement

I'm using spring and the JaxWsPortProxyFactoryBean to unmarshall a response for a webservice. I can see the response getting to the service and that the response is correctly being returned, but one ...
0
votes
0answers
42 views

Jersey GenericEntity Not Working with Spring Data Page

I'm new to Jersey/JAXB. Through a lot of searching I was able to solve this problem for application/json but not for application/xml. I'm trying to implement paging on some of my REST services. I've ...
0
votes
1answer
84 views

Mixing and extending Spring XML configuration

I have a Spring MVC project using XML for the main config, including registering JAXB classes. I'm now making this into a multi-module app, and have a separate project that creates an optional JAR ...
1
vote
1answer
207 views

JAXB2Marshaller not unmarshaling xml element into Character

I am having problem unmarshalling xml element into character using JAXB2Marshaller. My XML input contains one element <dateCheckFlag>Y</dateCheckFlag>: when I try to get dateCheckFlag ...
0
votes
0answers
161 views

How to configure Spring's RestTemplate to return null when HTTP status of 404 is returned

I am calling a REST service that returns XML, and using Jaxb2Marshaller to marshal my classes (e.g. Foo, Bar, etc). So my client code looks like so: HashMap<String, String> vars = new ...
2
votes
1answer
86 views

@XmlSeeAlso Inheritance

First, I am a newbie in the JAXB and Spring world so if I missed something very obvious I would really appreciate it if someone can point it out instead of not replying. :) I tried searching for a ...
0
votes
1answer
294 views

Spring WS Client using JAXB Marshaller

Is there a way i can refer to a XSD in my Spring WS Client project and not generate the POJO's from the XSD and still be able to refer the JAXB Objects, build request and call a webservice using ...
1
vote
1answer
192 views

Jaxb2Marshaller xsd schema validation query

I am using spring 3.0.6 Jaxb2Marshaller using below configuration, <bean id="jaxbMarshaller" class="org.springframework.oxm.jaxb.Jaxb2Marshaller"> <property name="contextPaths"> ...
1
vote
1answer
217 views

Spring xml in response via JAXB

I am using spring 3.1, and my application is already set up to send and receive data in json format. Now I need to provide one request API that should return the same data but in xml format. Please ...
0
votes
1answer
191 views

Spring-ws client mtom

I'm trying to call a web service and add an attachment to my request using mtom. Mtom is enabled on the web service I'm calling and I can call the service ok using soapui. The schema for the request ...
1
vote
1answer
156 views

XML Message (JAXB) sent via JMS is null

I want to send XML generated from an object using Springs Jaxb2marshaller and jmsTemplate.convertAndSend(object) to oracle queue (AQ). For some reason when I send the message, null is inserted into ...
2
votes
2answers
221 views

How does Spring relate to JAXB?

I am in the process of learning the CXF framework and I know that it uses both Spring and JAXB. My understanding is that CXF utilizes Spring for IoC and AOP and that it uses JAXB as the default data ...
1
vote
1answer
38 views

How do limit xml from being displayed using JAXB

Using Spring, I'm building a RESTful web service and have an object that is being marshalled (Jaxb2Marshaller), this is tied to MYSQL database that has @OneToMany and @ManyToOne annotations. How do I ...
0
votes
1answer
103 views

Spring can't unmarshall bean when using Spring security

I have a bean which extends from org.springframework.security.core.userdetails.User and using this bean with openID. The bean looks like: package com.employee; import java.util.Collection; import ...
0
votes
1answer
181 views

Bound a JSON object to JavaBean class in Spring MVC, I have some things unclear

in this period I am studying the Spring MVC showcase example. About the request mapping I have a litle doubt, I have the following situation: In a view I submit a form, submitting this form start ...
0
votes
1answer
204 views

Multiple marshallers/unmarshallers with Spring OXM

I have a legacy web service project that receives two different XML schemas, but with the same attribute name (including the root element). I'm using Spring, OXM and JAXB2 for ...
0
votes
1answer
135 views

Spring WS with jaxb null object in request

I have Spring WS to which i am sending request of Object Request.java class, if i hardcode value in jaxb class it is ok ( but this is not it..) my soap request i test in SoapUI: <soapenv:Envelope ...
2
votes
1answer
547 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"> ...
2
votes
1answer
278 views

415 Unsupported Media type JAXB in Spring

I'm a bit of stuck here. I am trying to POST from firefox's poster a small snippet of XML. <IntellexEvent> <RuleName>a rule name</RuleName> </IntellexEvent> Simple ...
0
votes
0answers
161 views

Web Service Transport Exception 404

Thus anyone encountered error or warning below INFO: FrameworkServlet 'sunlink-ws': initialization started Oct 17, 2012 10:51:13 AM org.springframework.context.support.AbstractApplicationContext ...
2
votes
2answers
886 views

WebServiceTransportException: Not Found [404]

I'm currently implementing a spring web service using jaxb. But when I trying to consume the web service created a WebServiceTransportException: Not Found [404] error is encountered. I did try to ...
2
votes
1answer
233 views

Spring3 Unmarshalling XML to Java

I am having trouble connecting all the pieces that would allow xml sent from an ajax client to be unmarshalled into Java objects. I am using Jquery for the ajax client, Spring3, and JAXB. Here are ...
0
votes
1answer
364 views

Using injection in JAXB XmlAdapters for Spring RESTful Controller

My application requires instances of the JAXB XmlAdapter such as public class CategoryTypeAdapter extends XmlAdapter<String, Category> { @Autowired protected CategoryService ...
3
votes
2answers
472 views

How to marshall non-string objects with JAXB and Spring

I was trying to follow this tutorial in order to create my own restful web-service using Spring framework. The client do a GET request to, let's say http://api.myapp/app/students and the server ...
1
vote
1answer
256 views

How to structure Spring code for JAXB marhalling and proccessing of XML

The Question I'm new to Java and spring and I'd like to know how to structure code which marshals different objects from XML and then processes them. I'm converting some code JAVA code from before my ...
1
vote
2answers
205 views

JSON response: Spring with JAXB

Tech Stack: Java 1.6, JAXB, Spring 3, JAX-RS (RESTEasy), XSD Hello, I am using Spring with JAX-RS to create RestFul Webservice. Everything is working fine except that the generated responses ...
1
vote
1answer
415 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
388 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 ...
1
vote
0answers
318 views

JAX-RS: Request validation using XSD, JAXB

Tech Stack: Java 1.6, JAXB, Spring 3, JAX-RS (RESTEasy) I've written a web service (REST) and now I want to validate the request using a schema. I've a working code as seen here for validation. My ...
2
votes
1answer
2k views

Registrer MappingJackson2HttpMessageConverter in Spring 3.1.2 with JAXB annotations

I have a number of entities with JAXB annotations that I would like to convert to JSON using a message-converter. I know that my ObjectMapper that reads the JAXB annotations works: String ...
0
votes
0answers
169 views

Jaxb Marshal error - warning can't determine superclass of missing type com.ibm.xml.xlxp2.jaxb.marshal.MarshallerProxy

I am trying to marshall a Java class into an xml using Jaxb's javax.xml.bind.Marshaller. The Java class and its properties have been marked with bind annotations. But I am getting the below exception ...
0
votes
0answers
99 views

Having issues with a simple Spring-ws using JAXB

Im trying out spring-ws using JAXB. And i am generating a client using the ws-import tool. But whenever i call the web service, the marshaling returns null on the object in question. I have uploaded ...
1
vote
1answer
696 views

Generate JSON output using MOXy JAXB in Spring

I have a requirement to marshal both json and xml outputs. But, how to generate JSON output using MOXy JAXB in Spring? I can generate the xml file as shown in the example at: ...
1
vote
1answer
367 views

Spring jaxb WebServiceGatewaySupport implementation java.lang.IllegalArgumentException

i working on jaxb with Spring i am trying to write custom unmarshalling process using WebServiceGatewaySupport. following is my class problem is with response when i call following method ...
0
votes
0answers
215 views

using Spring REST JAXB misunderstanding

I have a domain class: package org.buddies.domain; @Entity @Table(name = "PERSON") @XmlRootElement(name = "persons") public class Person implements Serializable { private static final long ...
1
vote
1answer
186 views

Java Spring jaxb webServiceTemplate

My question is simple. for Unmarshalling i want to write custom unmarshaller but for marshelling i have wsdl I have following method which returns unmarshalled object but i want xml string to use ...
1
vote
4answers
597 views

Please advise the best pattern for serialising JAXB Lists

There have been many questions as to how why list types are not serialising, however I'm questioning what is a good practice to serve a list type of beans in a simple way. So far I have been creating ...
0
votes
0answers
198 views

Mix Spring WS response types to be either application/xml ( Non-MTOM/SAAJ ) or Multipart/Related ( MTOM/SAAJ )

I have a Spring WS web service that is used for a number of services. The responses it returns can be one of the following: An xml document An xml document with an attachment I have configured the ...
1
vote
0answers
472 views

CDATA in JAXB inside CXF

I am writing a JAX-RS webservice . Which returns a Reponse back in form of application/xml .In that I have to produce CDATA sections . I have researched a lot and I have seen many blogs . But I am ...
0
votes
0answers
185 views

Is Axis wsdl2Java JAXB compliant?

I am generating web service client stubs using Axis Wsdl2Java. I'm invoking the service using org.springframework.ws.client.core.WebServiceTemplate. The marshaller I'm supplying to the ...
2
votes
1answer
224 views

JAXB classes: reuse for REST

Tech Stack: Java 1.6, JPA (Hibernate 3), Spring 3, Oracle 11g Hello, We are currently refactoring our code to move away from SOAP based web-services to REST. I've got loads of XSD, these were used ...

1 2 3