Hi, I am trying to generate the WSDL using the java2ws tool.for the SEI given at
http://cwiki.apache.org/CXF20DOC/developing-a-service.html [Example8: Fully Annotated SEI] I have given my implementation of Quote, which contains an integer quote, along with a method to fetch it, namely fetchQuote(). java2ws -d . -wsdl com.xyz.anntn.QuoteReporter [ Here, QuoteReporter is the SEI class.] Now in the generated WSDL the response message contains only part name, without reference to any type/element.. <wsdl:message name="getStockQuoteResponse"> <wsdl:part name="updatedQuote"> </wsdl:part> </wsdl:message> Is there anything that I am missing? Regards, Harbhanu
