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 (include the external XSD) and not generate its own into the WSDL?

I have tried the -createxsdimports, but that does generate its own XSD files.

Is there a Java Annotation that I can use to let CXF know where the XSD for each file/package is?

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

Try the @XmlSchema annotation. It includes a location parameter that is used to tell JAXB that a real schema exists:

@XmlSchema(location="http://www.example.com/xsds/foo.xsd")
package com.example.foo;
link|improve this answer
Thanks Blaise, how do I define an xsd file in a local project directory. I tried file:/// but CXF (2.4.1) still gives me no schemaLocation="" on the <xsd:import ...> – PlanBForOpenOffice Nov 3 '11 at 1:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.