Re: Java-first incomplete wsdl generated

2015-10-27 Thread Maxim Solodovnik
Thanks a million! you saved me! :))) On Wed, Oct 28, 2015 at 3:52 AM, Daniel Kulp wrote: > The WSDL is correct for what you provided. In the > applicationContext.xml, you have: > > implementor="#testWebService" > endpointName="TestServiceEndpoint" >

Re: Java-first incomplete wsdl generated

2015-10-27 Thread Daniel Kulp
The WSDL is correct for what you provided. In the applicationContext.xml, you have: ServiceName and endpointName are QNames. They need a namespace. Since you don’t have a prefix on them, they are using the default namespace for your application context (which is the spring namespace).

Re: Java-first incomplete wsdl generated

2015-10-27 Thread Maxim Solodovnik
I just have created quickstart (CXF 3.1.3) to check this out: git clone https://github.com/solomax/implonly mvn jetty:run access http://localhost:8080/services/TestService?wsdl the code is extremely simple: https://github.com/solomax/implonly/blob/master/src/main/java/com/mycompany/javafirst/Tes

Re: Java-first incomplete wsdl generated

2015-09-19 Thread Maxim Solodovnik
forgot to mention: CXF 3.1.2 On Sat, Sep 19, 2015 at 8:12 PM, Maxim Solodovnik wrote: > Hello All, > > I'm trying to create SOAP/JSON web service using java-first approach. > I would like to minimize xml files, interfaces being created and other > stuff not related to the service code. > The app

Java-first incomplete wsdl generated

2015-09-19 Thread Maxim Solodovnik
Hello All, I'm trying to create SOAP/JSON web service using java-first approach. I would like to minimize xml files, interfaces being created and other stuff not related to the service code. The application is spring based, endpoint is defined here [1] webservice is defined here [2] the issue is: