We’re using apache cxf 2.2.2 with JaxB and I need to change the wsdl:definitions name of an exported wsdl to something else. Does anyone know how I could change it, possibly via a JAXB annotation?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Assuming you mean the
nameattribute of the<wsdl:definitions>element, that’s set by theserviceNameattribute of the@WebServiceannotation on your main implementation class. If you need any deeper configuration than that, you’ll have to tell CXF to serve up your own custom WSDL instead of that which is derived from annotations (I’ve not experimented with doing that).