I generated java sources from wsdl file using CXF wsdl2java command :
wsdl2java -impl -server -d <path_to_wsdl> <path_to_generated_java_source>
but the generated comments are in French. How is possible to change the comments language (I want the comments in English). I could not find the option in CXF wsdl2java Documentation.
Thanks very much in advance for your answers.
Unfortunately there is not yet an option to change the language, see JAXB jira issue. If the generated output language (e.g. german) causes encoding problems you can at least specify the encoding of the generated files (since version 2.5.4):
wsdl2java ... -encoding UTF-8 ....