1
vote
1answer
12 views

jaxb getter with parameter

I've requirement where I've to pass a parameter in the getter method(in my case another object). Wondering if thats possible and how can I achieve this? I'm implementing jaxws and this is my server ...
0
votes
0answers
8 views

Web Service Client fails JAXB Error

I am trying to get a response from my webservice and i get a java.lang.ClassCastException. When i try to reach my WSDL(SOAP) webservice from my local host it works fine, but when i deploy the web ...
0
votes
1answer
13 views

How to retrieve the values from the service which is returning List<Object> using jax-ws

I have a service which returns the List, this object varies depends on different scenario. Can somebody suggest me does jax-ws support this behaviour or do we have any alternative option.
0
votes
0answers
28 views

Changing type of webparam

So my question is basically the following: I've got a xsd that I need to use as reference to create a server with a webservice. The xsd that I've got as reference is more or less the following: ...
2
votes
1answer
46 views

JAX-WS web-service defined by WSDL with abstract global elements

Here is a WSDL containing abstract global element named paramName: <wsdl:definitions name="AdapterSessionManagerService" targetNamespace="http://companyname.org/" ...
0
votes
0answers
44 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
1answer
21 views

How to Avoid CXF Generating Separate class rather than use exiting XMLRootElement Class(JAXB Class)

I'm newbie to CXF and JAXB. I'm trying to generate WSDL from Java class(Bottom up Approach) using eclipse on CXF. Created the Interface as fellows. @WebService(name = "EBMData", targetNamespace = ...
1
vote
1answer
33 views

Disable special treatment of a List<T> implementor during JAXB marshaling

I have a @XmlTransient class called ListBase<T> which implements List<T>. I then subclass that list into @XmlType StringList, @XmlType PersonList, etc. It seems that JAXB treats such ...
0
votes
1answer
31 views

Is it possible to modify method through reflections before webservice is created?

I have a webservice that uses immutable classes in action parameters (that's because of other devs working on the project) -- which means no public setters. No public setters means that webservice ...
1
vote
1answer
57 views

Use interfaces in JAX-WS web methods

I need to use an interface as a parameter and as a return type in a JAX-WS web method. When starting my server I receive an IllegalAnnotationsException, which tells me that JAXB cannot handle ...
0
votes
0answers
50 views

Java-WS XML serialization failed before JAXB unmarshaling occured

In my environment, I have client (java 6) call wcf (.Net 3.5) wcf service using JAX-WS and basicHttpBinding. I have some invalid xml characters return from wcf service as string values. I added ...
5
votes
2answers
165 views

JAX-WS duplicates complex type when generating wsdl

I'm developing a web service with several methods taking as input identical complex data types. The data types have JAXB annotations and setters and getters, and the web service class has JAX-WS ...
0
votes
1answer
35 views

java.lang.NoSuchMethodError with XML

I have the following XML @XmlRootElement @XmlType(propOrder = { "name", "transforms", "qualitycontrols"}) @XmlAccessorType(XmlAccessType.NONE) public class Process { @XmlElement private String name; ...
0
votes
2answers
70 views

Java Webservice based on Object

I'm using web services and I want to step it up a notch. I'm using Axis2 with JAX-WS. I'm thinking of transfering objects instead of String[]. After I googled a bit, I found that JAXB is the right ...
1
vote
0answers
108 views

java.util.Date property rendered as xs:string in xsd using JAX-WS (Apache CXF / Metro)

I generated some model classes based on a WSDL using apache cxf. I then added a jaxb bindingfile to convert all xs:dateTime and xs:date elements to java.util.date (instead of the default ...
0
votes
0answers
82 views

Is it possible to ensure valid JAX-WS client marshaling for invalid xml symbols for SOAP binding?

I have java (1.6) client, built over JAX-WS, JAXB, SOAP binding, calling wcf (3.5) service (basicHttpBinding). When I'm trying to call the server with soap-invalid character (for example, ...
1
vote
1answer
116 views

Add default namespace to an element within soap body

I have generated a web-service client (JAX-WS) and model from wsdl and xsd. I have problem with namespaces within soap body. Lets assume we have two classes: @XmlRootElement(namespace="aNamespace") ...
0
votes
1answer
182 views

JAX-WS nillable schema validation for string does not seem to work

I have java code generated by apache CXF wsdl2java tool. I turn on schema validation by setting: <jaxws:properties> <entry key="schema-validation-enabled" value="true" /> ...
0
votes
0answers
232 views

JAXWS wsimport catalog to resolve “element” already defined Error

We are trying to consume a web service which is hosted by the third party. When I tried to generate the artifcats & JAXB classes using wsimport, I ran in to following errors. Please note that ...
0
votes
0answers
64 views

JAX-WS and JAXB date property

I have a bean that I generate into XML to be consumed elsewhere that is annotated with JAXB annotations. It has a date property. This same bean is exposed via a JAX-WS web service as the parameter ...
3
votes
2answers
749 views

Applying external JAXB binding file to schema elements imported from WSDL

The XPath expression in my external binding files can't target the elements in my XML schemas which are imported into my WSDL. Everything runs if I do inline binding customization but I really wanted ...
0
votes
0answers
56 views

JAXB code generation, are isNilField / setNilField methods configurable?

I'm using apache cxf-codegen-plugin to generate java code from a wsdl. (So, given I have the wsdl, I'm doing "contract first"). Here is the relevant part of the configuration in maven: ...
1
vote
1answer
209 views

xs:int unmarshalled to null for decimal values

I've got a problem related to the unmarshalling process in a JAX-WS based WebService. In WSDL file there is an element defined as <element name="quantity" nillable="true" type="int" /> In ...
1
vote
1answer
77 views

How to return SOAPFault from XMLAdapter?

I'm developing a SOAP based WebService (JAX-WS) and dates come with specific format "yyyymmdd". My WSDL defines the date as string but I would like to return a SOAP fault response when the expected ...
0
votes
0answers
91 views

wsimport not generating package-info for enums

I have a WSDL file that imports external schema : <schema> <import schemaLocation="http://localhost:8080/xxxxxxxx_webservices/services/DiagnosisService?xsd=5" ...
1
vote
1answer
120 views

Java-WS: is it possible to use raw XML for one argument and still use JAXB objects for the rest?

I'm writing a Java webservice client that will be running on WebSphere. I created a new "Web Service Client" project in RAD Developer, gave it my WSDL, specified "Top down Java Bean", and it ...
1
vote
2answers
146 views

Error while unmarshalling Web Service response

I'm calling a web service using JAX-WS. I want to convert the content into a Java Object. Here is the content portion of the web service response. <header xmlns=""> <store> ...
0
votes
0answers
77 views

Adding dynamically new elements to a JAXWS service JAXB context

I'm using CXF to expose a huge model which contains more than 3000 classes. In most scenarios the customer will use only 100 classes out of the 3000 but I don't know in advance which ones will be ...
0
votes
3answers
75 views

Webservice - response to different server

Is it possible for a Java webservice to build and return a response to a different server? For example, client (A) on domain (A) makes a POST request to a Java webservice (B) on domain (B) which ...
0
votes
0answers
94 views

Webservices / dynamic class generation / flow

My question probably sounds all wrong since I'm not sure what to ask exactly. I'm very new to web services in general but get a very high level idea. I'm looking at some code where the classes/methods ...
1
vote
1answer
75 views

What is the default binding of wsimport?

I used wsimport to generate my client stubs. My code for wsimport is like this: wsimport -wsdllocation webservice.wsdl -keep webservice.wsdl -B-XautoNameResolution What binding do I use? Am I using ...
0
votes
0answers
88 views

Soap ignore annotation @XmlType

I have some structure looks like : user contains cars and car have one carType. My web service return: <?xml version="1.0" encoding="UTF-8"?> <S:Envelope ...
7
votes
1answer
1k views

Supplying a different version of JAXB for JAX-WS in Java 1.6

I have a third party jar that ships with a jaxb-impl.jar and includes it in its manifest classpath. The problem is, it seems as though supplying your own version of JAXB (regardless of which version ...
0
votes
1answer
166 views

Why does wsimport have trouble with server object having @XmlRootElement annotation?

I was completing work on a web service using JAX-WS on the server side. In many of the domain objects I used @XmlRootElement to help facilitate the unmarshaling of XML files into the service using ...
0
votes
1answer
202 views

cxf-java2ws-plugin and jaxb annotated classes

I'm trying to generate wsdl from java. The plugin generates schema information for those classes included in the same project but seems not for classes in dependency packages. <xs:element ...
1
vote
0answers
132 views

Configure CXF JAX-WS service to work with MOXY

Although I've added a jaxb.properties with MOXY factory and I see that the JAXB was switched to moxy, CXF has a method named createRIContext in the JAXBUtils class which loads hard coded the sun JAXB ...
4
votes
2answers
1k views

JAX-WS error on WSDL file: “Error resolving component 's:schema'”

The Error I am using wsimport in a Java project to generate sources for three SOAP web services. The first two work fine: I use the JAX-WS Maven plugin to grab the WSDL file and generate ...
0
votes
0answers
104 views

JAXB WebMethod return complext type

I want to make WebMethod which will return complex type list or array but when I return array it is looks like this: - <S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"> - ...
0
votes
1answer
192 views

Transformation of generic classes to XML Schema for Java web services

In my application I have many tables with pagination, so I created a class to hold the partial list of results and the total number of results for a paginated query: @XmlRootElement(name = ...
2
votes
1answer
140 views

Why does JAX-WS freeze while deploying any service using JAXB databinding?

I'm attempting to create a JAX-WS service that uses JAXB databinding of objects generated from the very large (900+ classes) set of Opentravel Alliance schemas. I am able to successfully deploy a ...
0
votes
2answers
786 views

“Missing SEI” when generating artifacts with WSGEN

I am a beginner in the development of web services. I want to generate artifacts using wsgen.exe. Here is my code: package com.calc.ws; import javax.jws.WebService; @WebService public ...
0
votes
1answer
575 views

java.lang.LinkageError: JAXB 2.1 API is being loaded from the bootstrap classloader with JAX-WS web service

I know this is the very basic example of jax-ws web services but I am not able to resolve this error. I am following this tutorial ...
3
votes
1answer
645 views

Preven XXE Attack with JAXB

Recently, we had a security audit on our code, and one of the problem is that our application is subject to the Xml EXternal Entity (XXE) attack. Basically, the application is an calculator that ...
7
votes
3answers
2k views

Customising JAX-WS prefix of a SOAP response

Goal I'm implementing a web service for quite an old (but sadly unchangeable) interface. I have an issue where the client that is calling my service expects a certain namespace in the SOAP response ...
0
votes
1answer
557 views

wsdl with conflicting xsd imports

I tried to find a solution for some time to the following problem. I have a wsdl file containing several (6) xsd imports. I cannot change these xsd's because they are external to my project. There are ...
4
votes
1answer
377 views

Reuse CXF jaxb context between multiple services

I have multiple services which can return results out of thousands of classes. Since each CXF service contains a private almost identical JAXB context, it causes a huge memory waste. Is there a way to ...
1
vote
1answer
471 views

XmlAdapter Not Being Used in CXF

I have an external (i.e. unmodifiable) com.external.Money class that has a java.util.Currency field with getters and setters. In my CXF jaxws web service, I have a request object like the one below: ...
1
vote
0answers
170 views

@XmlJavaTypeAdapter unmarshaled Object is null

My question is: how does jax-ws generate the unmarshal code associated with the @XmlJavaTypeAdapter? I don't see the adapter class(es) in the client code (instead they are broken out into their ...
0
votes
2answers
158 views

Sample Example for JSONView to Prevent Deserialization of Default values

I have a simple class for giving out count and db cursor information. public class Cursor { public String cursor = null; public int count = -1; } I do not wish to send count and cursor ...
1
vote
1answer
170 views

How to marshall and un marshall HashMap<String, ArrayList<String>>

I have a javabean which have HashMap (String, ArrayList(String) ) hashMap attribute. i have generated a jax ws client . But i am not able to access ArrayList from hashMap as it has converted to some ...

1 2 3 4 5