-1
votes
1answer
32 views

namespace issue on web service with Apache CXF

I'm using Apache CXF 2.7.3, and running into a namespace issue that I really don't understand. I've tried extensively to search on this, but most of the results that I find are for different ...
0
votes
0answers
161 views

How to use Annox to Add @XmlRootElement When Generating JAXB Model from WSDL?

I have the following WSDL <?xml version='1.0' encoding='UTF-8'?> <wsdl:definitions xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" ...
0
votes
0answers
82 views

How to filter/block some useless complexTypes in wsdl?

I am building a POC code-first JAX-WS server application. I defined 3 xsds for all my POJOs, Request1, Request2 and RequestMeta. Both Request1 and Request2 extends RequestMeta. RequestMeta: ...
0
votes
1answer
143 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 ...
0
votes
0answers
376 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
1answer
260 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: ...
3
votes
1answer
158 views

Generate source using jaxb from an xsd that is in my classpath

I'm trying to generate java classes using JAXB from a schema in my class path. For CXF I generated java classes from a wsdl in my classpath like so: <wsdlOptions> <wsdlOption> ...
2
votes
1answer
189 views

Could I add XmlAdapter to JAXB from runtime (w/o annotation)?

In all cases XmlAdapter mentioned in pair with @XmlJavaTypeAdapter. Is it possible add my XmlAdapter from runtime API (necessary for CXF @XmlJavaTypeAdapter workaround)?
2
votes
1answer
425 views

How do you call a web service in Java with only XSD and NO WSDL?

I have a web service outside of my company that provides no WSDL for their service. They do provide: a detailed document on how to POST to their service what a SoapEnvelope should look like and ...
3
votes
2answers
473 views

CXF java2ws: how to include external xsd files?

I generate WSDL files for several web services (from the server service definitions) where I have already XML schemas (*.XSD) for the beans used as parameters. How do I tell java2ws to reference these ...
1
vote
0answers
3k views

WebResult vs RequestWrapper Annotations with Polymophism

I have a class such as the following: @XmlRootElement(namespace = "http://foo.com/model", name = "Person") @XmlAccessorType(XmlAccessType.FIELD) @XmlType(namespace = "http://foo.com/model", name = ...