Tagged Questions
1
vote
2answers
159 views
How to get EclipseLink MOXy working in WebLogic in a JAX-WS based web service?
I want to use EclipseLink in WebLogic 10.3.6.0 to host web-services using JAX-WS. This works perfectly in Tomcat.
Environment:
Java 1.6
WebLogic 10.3.6.0
EclipseLink 2.4.0.v20120608-r11652
JAXWS ...
1
vote
0answers
136 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 ...
1
vote
0answers
117 views
Using Eclipselink (MOXy) with SoapHandler will strip CDATA tags
EclipseLink JAXB (MOXy) has the @XmlCDATA annotation for handling CDATA.
When using Moxy and annotating a String value such as
@XmlCDATA
private String payload;
If I run this web service it will ...
1
vote
1answer
159 views
How to use Moxy XPath annotated beans in web services?
I have a bean
@XmlRootElement(name = "alpha")
public class MyBean {
private String thetaValue;
@XmlPath("beta/theta/text()")
public String getThetaValue() {
return ...
2
votes
2answers
1k views
Jax-WS - To Remove Empty Tags from Request XML
I'm trying to consume a web service exposed by a provider. The Provider has a strict checking at his end that the request xml should not contain tags which don't have values.
I'm using Jax-WS. If i ...
2
votes
1answer
255 views
XmlInverseReference, Hibernate, JAXWS and Moxy
I can not seem to get moxy working with JAX-WS web services and hibernate. Despite what I do, @XMLInverseReference does not work. I'd expect it to fill in the application variable on a Site. What am I ...
1
vote
1answer
2k views
My jax-ws webservice client returns only empty objects
I have a third party webservice for which I generate a client using wsimport. Each call to the webservice completes successfully, but the response object I get back has all its fields set to null. ...