You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Lalit Dilip Markande (JIRA)" <ji...@apache.org> on 2007/09/28 08:16:50 UTC

[jira] Created: (CXF-1075) interop with .NET : Probelm while accessing .net service with xfire java client

interop with .NET : Probelm while accessing .net service with xfire java client
-------------------------------------------------------------------------------

                 Key: CXF-1075
                 URL: https://issues.apache.org/jira/browse/CXF-1075
             Project: CXF
          Issue Type: Bug
          Components: Core
    Affects Versions: 2.0
         Environment: Windows XP, JDK 1.5 and .net 2005
            Reporter: Lalit Dilip Markande


When xfire java client is used with xfire java server, its working fine. But getting error while accessing .net server with xfire java client.

<error message="org.apache.cxf.service.factory.ServiceConstructionException:
 Could not find definition for service {http://hello.com/hello/wsdl/HelloWorld/service}HelloWorldService." 
type="javax.xml.ws.WebServiceException">javax.xml.ws.WebServiceException:
 org.apache.cxf.service.factory.ServiceConstructionException: 
Could not find definition for service {http://hello.com/hello/wsdl/HelloWorld/service}HelloWorldService.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (CXF-1075) interop with .NET : Probelm while accessing .net service with xfire java client

Posted by "Lalit Dilip Markande (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CXF-1075?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Lalit Dilip Markande updated CXF-1075:
--------------------------------------

    Description: 
When xfire java client is used with xfire java server, its working fine. But getting error while accessing .net server with xfire java client.

Error message is :
http://localhost/HelloWorld/service.asmx?wsdl
Exception in thread "main" javax.xml.ws.WebServiceException: org.apache.cxf.service.factory.ServiceConstructionException: Could Could not find definition for service {http://apache.org/hello_world_soap_http}SOAPService.
    at org.apache.cxf.jaxws.ServiceImpl.<init>(ServiceImpl.java:103)
    at org.apache.cxf.jaxws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.java:55)
    at javax.xml.ws.Service.<init>(Service.java:57)
    at org.apache.hello_world_soap_http.SOAPService.<init>(SOAPService.java:37)
    at demo.hw.client.Client.main(Client.java:28)
Caused by: org.apache.cxf.service.factory.ServiceConstructionException:  Could not find definition for service {http://apache.org/hello_world_soap_http}SOAPService.
    at org.apache.cxf.wsdl11.WSDLServiceFactory.create(WSDLServiceFactory.java:114)
    at org.apache.cxf.jaxws.ServiceImpl.initializePorts(ServiceImpl.java:110)
    at org.apache.cxf.jaxws.ServiceImpl.<init>(ServiceImpl.java:101)
    ... 4 more
Java Result: 1


  was:
When xfire java client is used with xfire java server, its working fine. But getting error while accessing .net server with xfire java client.

<error message="org.apache.cxf.service.factory.ServiceConstructionException:
 Could not find definition for service {http://hello.com/hello/wsdl/HelloWorld/service}HelloWorldService." 
type="javax.xml.ws.WebServiceException">javax.xml.ws.WebServiceException:
 org.apache.cxf.service.factory.ServiceConstructionException: 
Could not find definition for service {http://hello.com/hello/wsdl/HelloWorld/service}HelloWorldService.


Please find the attached Zip file. The Zip file has source code for CXF Service, CXF Client, .Net server and .Net client. The Zip file has Readme.txt to provide information about building, deploying & running CXF service, CXF service client, .net service and .net client. 

As reported in above bug, we are not able to invoke .net service using CXF client. However CXF client and .Net client are able to invoke CXF service.

We are not sure what is going wrong. So we have attached the source code for CXF & .Net service and client. 

> interop with .NET : Probelm while accessing .net service with xfire java client
> -------------------------------------------------------------------------------
>
>                 Key: CXF-1075
>                 URL: https://issues.apache.org/jira/browse/CXF-1075
>             Project: CXF
>          Issue Type: Bug
>          Components: Core
>    Affects Versions: 2.0
>         Environment: Windows XP, JDK 1.5 and .net 2005
>            Reporter: Lalit Dilip Markande
>
> When xfire java client is used with xfire java server, its working fine. But getting error while accessing .net server with xfire java client.
> Error message is :
> http://localhost/HelloWorld/service.asmx?wsdl
> Exception in thread "main" javax.xml.ws.WebServiceException: org.apache.cxf.service.factory.ServiceConstructionException: Could Could not find definition for service {http://apache.org/hello_world_soap_http}SOAPService.
>     at org.apache.cxf.jaxws.ServiceImpl.<init>(ServiceImpl.java:103)
>     at org.apache.cxf.jaxws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.java:55)
>     at javax.xml.ws.Service.<init>(Service.java:57)
>     at org.apache.hello_world_soap_http.SOAPService.<init>(SOAPService.java:37)
>     at demo.hw.client.Client.main(Client.java:28)
> Caused by: org.apache.cxf.service.factory.ServiceConstructionException:  Could not find definition for service {http://apache.org/hello_world_soap_http}SOAPService.
>     at org.apache.cxf.wsdl11.WSDLServiceFactory.create(WSDLServiceFactory.java:114)
>     at org.apache.cxf.jaxws.ServiceImpl.initializePorts(ServiceImpl.java:110)
>     at org.apache.cxf.jaxws.ServiceImpl.<init>(ServiceImpl.java:101)
>     ... 4 more
> Java Result: 1

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (CXF-1075) Interoperability Issue - CXF based client unable to access .Net based Service

Posted by "Jeff Yu (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CXF-1075?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12533345 ] 

Jeff Yu commented on CXF-1075:
------------------------------

phew... after spending couple of hours in setting the environment, and then I found the error is caused by the test code itself, not the CXF.

In your codes:
1. .Net wsdl service name is different from the java's, so I guess you mis-read it.
  <wsdl:service name="Service">
    <wsdl:port name="ServiceSoap" binding="tns:ServiceSoap">
      <soap:address location="http://10.129.9.196/hw/service.asmx" />
    </wsdl:port>
    <wsdl:port name="ServiceSoap12" binding="tns:ServiceSoap12">
      <soap12:address location="http://10.129.9.196/hw/service.asmx" />
    </wsdl:port>
  </wsdl:service>

Pay attention to the port name, it is "ServiceSoap", instead of "SoapService".

2. I don't know whether you are using the CXF's wsdl2java tool to generate the stub, but if you used the tool, as I did. ( I am using the cxf-2.0.2, but I am guessing cxf-2.0 did the same thing). You will find
The generated code called: Service.java, ServiceSoap.java

So look at the cxf client that you used, It definitely uses the wrong class, I am guess.

Below is the code that I am testing, and it works great: (Rename the Service.java to TheSOAPService for not confusing).

       TheSOAPService soapService = new TheSOAPService();
       ServiceSoap service = soapService.getServiceSoap();
       String resp;
       System.out.println("Invoking greetMe...");
       resp = service.greetMe("This is big mistake");
       System.out.println("Server responded with: " + resp);
       System.out.println();



> Interoperability Issue - CXF based client unable to access .Net based Service
> -----------------------------------------------------------------------------
>
>                 Key: CXF-1075
>                 URL: https://issues.apache.org/jira/browse/CXF-1075
>             Project: CXF
>          Issue Type: Bug
>          Components: Core
>    Affects Versions: 2.0
>         Environment: Windows XP, JDK 1.5 and .net 2005
>            Reporter: Lalit Dilip Markande
>         Attachments: helloworld.zip
>
>
> When xfire java client is used with xfire java server, its working fine. But getting error while accessing .net server with xfire java client.
> Error message is :
> http://localhost/HelloWorld/service.asmx?wsdl
> Exception in thread "main" javax.xml.ws.WebServiceException: org.apache.cxf.service.factory.ServiceConstructionException: Could Could not find definition for service {http://apache.org/hello_world_soap_http}SOAPService.
>     at org.apache.cxf.jaxws.ServiceImpl.<init>(ServiceImpl.java:103)
>     at org.apache.cxf.jaxws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.java:55)
>     at javax.xml.ws.Service.<init>(Service.java:57)
>     at org.apache.hello_world_soap_http.SOAPService.<init>(SOAPService.java:37)
>     at demo.hw.client.Client.main(Client.java:28)
> Caused by: org.apache.cxf.service.factory.ServiceConstructionException:  Could not find definition for service {http://apache.org/hello_world_soap_http}SOAPService.
>     at org.apache.cxf.wsdl11.WSDLServiceFactory.create(WSDLServiceFactory.java:114)
>     at org.apache.cxf.jaxws.ServiceImpl.initializePorts(ServiceImpl.java:110)
>     at org.apache.cxf.jaxws.ServiceImpl.<init>(ServiceImpl.java:101)
>     ... 4 more
> Java Result: 1

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (CXF-1075) interop with .NET : Probelm while accessing .net service with xfire java client

Posted by "Lalit Dilip Markande (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CXF-1075?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Lalit Dilip Markande updated CXF-1075:
--------------------------------------

    Attachment: helloworld.zip

Attached Zip file has source code for helloworld service and client implement in .Net and CXF. The purpose is to report interroperability issue. The issue is CXF client is not able to access .Net version of service.

> interop with .NET : Probelm while accessing .net service with xfire java client
> -------------------------------------------------------------------------------
>
>                 Key: CXF-1075
>                 URL: https://issues.apache.org/jira/browse/CXF-1075
>             Project: CXF
>          Issue Type: Bug
>          Components: Core
>    Affects Versions: 2.0
>         Environment: Windows XP, JDK 1.5 and .net 2005
>            Reporter: Lalit Dilip Markande
>         Attachments: helloworld.zip
>
>
> When xfire java client is used with xfire java server, its working fine. But getting error while accessing .net server with xfire java client.
> Error message is :
> http://localhost/HelloWorld/service.asmx?wsdl
> Exception in thread "main" javax.xml.ws.WebServiceException: org.apache.cxf.service.factory.ServiceConstructionException: Could Could not find definition for service {http://apache.org/hello_world_soap_http}SOAPService.
>     at org.apache.cxf.jaxws.ServiceImpl.<init>(ServiceImpl.java:103)
>     at org.apache.cxf.jaxws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.java:55)
>     at javax.xml.ws.Service.<init>(Service.java:57)
>     at org.apache.hello_world_soap_http.SOAPService.<init>(SOAPService.java:37)
>     at demo.hw.client.Client.main(Client.java:28)
> Caused by: org.apache.cxf.service.factory.ServiceConstructionException:  Could not find definition for service {http://apache.org/hello_world_soap_http}SOAPService.
>     at org.apache.cxf.wsdl11.WSDLServiceFactory.create(WSDLServiceFactory.java:114)
>     at org.apache.cxf.jaxws.ServiceImpl.initializePorts(ServiceImpl.java:110)
>     at org.apache.cxf.jaxws.ServiceImpl.<init>(ServiceImpl.java:101)
>     ... 4 more
> Java Result: 1

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (CXF-1075) Interoperability Issue - CXF based client unable to access .Net based Service

Posted by "Jeff Yu (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CXF-1075?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12533315 ] 

Jeff Yu commented on CXF-1075:
------------------------------

Which CXF version are you using? 
if it is not the cxf-2.0.2, can you test it against cxf-2.0.2, since I remember there are some interoperation issues have been fixed in that release...

> Interoperability Issue - CXF based client unable to access .Net based Service
> -----------------------------------------------------------------------------
>
>                 Key: CXF-1075
>                 URL: https://issues.apache.org/jira/browse/CXF-1075
>             Project: CXF
>          Issue Type: Bug
>          Components: Core
>    Affects Versions: 2.0
>         Environment: Windows XP, JDK 1.5 and .net 2005
>            Reporter: Lalit Dilip Markande
>         Attachments: helloworld.zip
>
>
> When xfire java client is used with xfire java server, its working fine. But getting error while accessing .net server with xfire java client.
> Error message is :
> http://localhost/HelloWorld/service.asmx?wsdl
> Exception in thread "main" javax.xml.ws.WebServiceException: org.apache.cxf.service.factory.ServiceConstructionException: Could Could not find definition for service {http://apache.org/hello_world_soap_http}SOAPService.
>     at org.apache.cxf.jaxws.ServiceImpl.<init>(ServiceImpl.java:103)
>     at org.apache.cxf.jaxws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.java:55)
>     at javax.xml.ws.Service.<init>(Service.java:57)
>     at org.apache.hello_world_soap_http.SOAPService.<init>(SOAPService.java:37)
>     at demo.hw.client.Client.main(Client.java:28)
> Caused by: org.apache.cxf.service.factory.ServiceConstructionException:  Could not find definition for service {http://apache.org/hello_world_soap_http}SOAPService.
>     at org.apache.cxf.wsdl11.WSDLServiceFactory.create(WSDLServiceFactory.java:114)
>     at org.apache.cxf.jaxws.ServiceImpl.initializePorts(ServiceImpl.java:110)
>     at org.apache.cxf.jaxws.ServiceImpl.<init>(ServiceImpl.java:101)
>     ... 4 more
> Java Result: 1

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Issue Comment Edited: (CXF-1075) interop with .NET : Probelm while accessing .net service with xfire java client

Posted by "Lalit Dilip Markande (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CXF-1075?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12533307 ] 

lalitmarkande edited comment on CXF-1075 at 10/9/07 2:09 AM:
--------------------------------------------------------------------

Attached Zip file has source code for helloworld service and client implement in .Net and CXF. The purpose is to report interroperability issue. The issue is CXF client is not able to access .Net version of service.

Please note 
1. The ZIp file does not include jar files needed to compile the code. However list of jar files required to compile, build and deploy CXF based service and client can be found in provided.jars.properties file in root of project.
2. The Zip file has readme.txt that will be useful for building and deploy the service.

      was (Author: lalitmarkande):
    Attached Zip file has source code for helloworld service and client implement in .Net and CXF. The purpose is to report interroperability issue. The issue is CXF client is not able to access .Net version of service.
  
> interop with .NET : Probelm while accessing .net service with xfire java client
> -------------------------------------------------------------------------------
>
>                 Key: CXF-1075
>                 URL: https://issues.apache.org/jira/browse/CXF-1075
>             Project: CXF
>          Issue Type: Bug
>          Components: Core
>    Affects Versions: 2.0
>         Environment: Windows XP, JDK 1.5 and .net 2005
>            Reporter: Lalit Dilip Markande
>         Attachments: helloworld.zip
>
>
> When xfire java client is used with xfire java server, its working fine. But getting error while accessing .net server with xfire java client.
> Error message is :
> http://localhost/HelloWorld/service.asmx?wsdl
> Exception in thread "main" javax.xml.ws.WebServiceException: org.apache.cxf.service.factory.ServiceConstructionException: Could Could not find definition for service {http://apache.org/hello_world_soap_http}SOAPService.
>     at org.apache.cxf.jaxws.ServiceImpl.<init>(ServiceImpl.java:103)
>     at org.apache.cxf.jaxws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.java:55)
>     at javax.xml.ws.Service.<init>(Service.java:57)
>     at org.apache.hello_world_soap_http.SOAPService.<init>(SOAPService.java:37)
>     at demo.hw.client.Client.main(Client.java:28)
> Caused by: org.apache.cxf.service.factory.ServiceConstructionException:  Could not find definition for service {http://apache.org/hello_world_soap_http}SOAPService.
>     at org.apache.cxf.wsdl11.WSDLServiceFactory.create(WSDLServiceFactory.java:114)
>     at org.apache.cxf.jaxws.ServiceImpl.initializePorts(ServiceImpl.java:110)
>     at org.apache.cxf.jaxws.ServiceImpl.<init>(ServiceImpl.java:101)
>     ... 4 more
> Java Result: 1

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (CXF-1075) Interoperability Issue - CXF based client unable to access .Net based Service

Posted by "Daniel Kulp (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CXF-1075?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Daniel Kulp resolved CXF-1075.
------------------------------

       Resolution: Invalid
    Fix Version/s: Invalid


Resolving as invalid as the testcase showed the client was created with the wrong servicename that didn't match the wsdl returned from the server.



> Interoperability Issue - CXF based client unable to access .Net based Service
> -----------------------------------------------------------------------------
>
>                 Key: CXF-1075
>                 URL: https://issues.apache.org/jira/browse/CXF-1075
>             Project: CXF
>          Issue Type: Bug
>          Components: Core
>    Affects Versions: 2.0
>         Environment: Windows XP, JDK 1.5 and .net 2005
>            Reporter: Lalit Dilip Markande
>             Fix For: Invalid
>
>         Attachments: helloworld.zip
>
>
> When xfire java client is used with xfire java server, its working fine. But getting error while accessing .net server with xfire java client.
> Error message is :
> http://localhost/HelloWorld/service.asmx?wsdl
> Exception in thread "main" javax.xml.ws.WebServiceException: org.apache.cxf.service.factory.ServiceConstructionException: Could Could not find definition for service {http://apache.org/hello_world_soap_http}SOAPService.
>     at org.apache.cxf.jaxws.ServiceImpl.<init>(ServiceImpl.java:103)
>     at org.apache.cxf.jaxws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.java:55)
>     at javax.xml.ws.Service.<init>(Service.java:57)
>     at org.apache.hello_world_soap_http.SOAPService.<init>(SOAPService.java:37)
>     at demo.hw.client.Client.main(Client.java:28)
> Caused by: org.apache.cxf.service.factory.ServiceConstructionException:  Could not find definition for service {http://apache.org/hello_world_soap_http}SOAPService.
>     at org.apache.cxf.wsdl11.WSDLServiceFactory.create(WSDLServiceFactory.java:114)
>     at org.apache.cxf.jaxws.ServiceImpl.initializePorts(ServiceImpl.java:110)
>     at org.apache.cxf.jaxws.ServiceImpl.<init>(ServiceImpl.java:101)
>     ... 4 more
> Java Result: 1

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Issue Comment Edited: (CXF-1075) interop with .NET : Probelm while accessing .net service with xfire java client

Posted by "Lalit Dilip Markande (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CXF-1075?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12533307 ] 

lalitmarkande edited comment on CXF-1075 at 10/9/07 2:10 AM:
--------------------------------------------------------------------

Attached Zip file has source code for helloworld service and client implement in .Net and CXF. The purpose is to report interroperability issue. The issue is CXF client is not able to access .Net version of service.

Please note 
1. The ZIp file does not include jar files needed to compile the code. However list of jar files required to compile, build and deploy CXF based service and client can be found in provided.jars.properties file in root of project.
2. The Zip file has readme.txt that will be useful for building and deploying the service.

      was (Author: lalitmarkande):
    Attached Zip file has source code for helloworld service and client implement in .Net and CXF. The purpose is to report interroperability issue. The issue is CXF client is not able to access .Net version of service.

Please note 
1. The ZIp file does not include jar files needed to compile the code. However list of jar files required to compile, build and deploy CXF based service and client can be found in provided.jars.properties file in root of project.
2. The Zip file has readme.txt that will be useful for building and deploy the service.
  
> interop with .NET : Probelm while accessing .net service with xfire java client
> -------------------------------------------------------------------------------
>
>                 Key: CXF-1075
>                 URL: https://issues.apache.org/jira/browse/CXF-1075
>             Project: CXF
>          Issue Type: Bug
>          Components: Core
>    Affects Versions: 2.0
>         Environment: Windows XP, JDK 1.5 and .net 2005
>            Reporter: Lalit Dilip Markande
>         Attachments: helloworld.zip
>
>
> When xfire java client is used with xfire java server, its working fine. But getting error while accessing .net server with xfire java client.
> Error message is :
> http://localhost/HelloWorld/service.asmx?wsdl
> Exception in thread "main" javax.xml.ws.WebServiceException: org.apache.cxf.service.factory.ServiceConstructionException: Could Could not find definition for service {http://apache.org/hello_world_soap_http}SOAPService.
>     at org.apache.cxf.jaxws.ServiceImpl.<init>(ServiceImpl.java:103)
>     at org.apache.cxf.jaxws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.java:55)
>     at javax.xml.ws.Service.<init>(Service.java:57)
>     at org.apache.hello_world_soap_http.SOAPService.<init>(SOAPService.java:37)
>     at demo.hw.client.Client.main(Client.java:28)
> Caused by: org.apache.cxf.service.factory.ServiceConstructionException:  Could not find definition for service {http://apache.org/hello_world_soap_http}SOAPService.
>     at org.apache.cxf.wsdl11.WSDLServiceFactory.create(WSDLServiceFactory.java:114)
>     at org.apache.cxf.jaxws.ServiceImpl.initializePorts(ServiceImpl.java:110)
>     at org.apache.cxf.jaxws.ServiceImpl.<init>(ServiceImpl.java:101)
>     ... 4 more
> Java Result: 1

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (CXF-1075) Interoperability Issue - CXF based client unable to access .Net based Service

Posted by "Lalit Dilip Markande (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CXF-1075?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Lalit Dilip Markande updated CXF-1075:
--------------------------------------

    Summary: Interoperability Issue - CXF based client unable to access .Net based Service  (was: interop with .NET : Probelm while accessing .net service with xfire java client)

> Interoperability Issue - CXF based client unable to access .Net based Service
> -----------------------------------------------------------------------------
>
>                 Key: CXF-1075
>                 URL: https://issues.apache.org/jira/browse/CXF-1075
>             Project: CXF
>          Issue Type: Bug
>          Components: Core
>    Affects Versions: 2.0
>         Environment: Windows XP, JDK 1.5 and .net 2005
>            Reporter: Lalit Dilip Markande
>         Attachments: helloworld.zip
>
>
> When xfire java client is used with xfire java server, its working fine. But getting error while accessing .net server with xfire java client.
> Error message is :
> http://localhost/HelloWorld/service.asmx?wsdl
> Exception in thread "main" javax.xml.ws.WebServiceException: org.apache.cxf.service.factory.ServiceConstructionException: Could Could not find definition for service {http://apache.org/hello_world_soap_http}SOAPService.
>     at org.apache.cxf.jaxws.ServiceImpl.<init>(ServiceImpl.java:103)
>     at org.apache.cxf.jaxws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.java:55)
>     at javax.xml.ws.Service.<init>(Service.java:57)
>     at org.apache.hello_world_soap_http.SOAPService.<init>(SOAPService.java:37)
>     at demo.hw.client.Client.main(Client.java:28)
> Caused by: org.apache.cxf.service.factory.ServiceConstructionException:  Could not find definition for service {http://apache.org/hello_world_soap_http}SOAPService.
>     at org.apache.cxf.wsdl11.WSDLServiceFactory.create(WSDLServiceFactory.java:114)
>     at org.apache.cxf.jaxws.ServiceImpl.initializePorts(ServiceImpl.java:110)
>     at org.apache.cxf.jaxws.ServiceImpl.<init>(ServiceImpl.java:101)
>     ... 4 more
> Java Result: 1

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.