We are using CXF provided by JBoss AS 7 to publish our webservices. We have a requirement that our WSDL cannot contain schema imports, the WSDL must contain all our types in one file.
The java types representing the schemas that are being imported are Apache XML Beans generated classes and we are using the CXF XML Beans binding libraries to generate JAXB anotated classes that use these types. How can we coerce CXF into inlining these schemas? If it is not possible, could we do it by regenerated the schemas using JAXB and playing with the @XMLSchema annotations? Thanks Max
