Re: Axis2 JAX-WS: The service class cannot be found for this AxisService

2010-02-03 Thread Andreas Veithen
Note that the portName="HelloPort" in your implementation class is not consistent with the WSDL you posted earlier. This should be "helloPort". Maybe that could be the reason. BTW, what do the logs say? Andreas On Mon, Feb 1, 2010 at 23:37, Daniel Walsh wrote: > Andreas: > > The annotations gene

Re: Axis2 JAX-WS: The service class cannot be found for this AxisService

2010-02-01 Thread Daniel Walsh
Andreas: The annotations generated by wsimport are: HelloService: @WebServiceClient(name = "HelloService", targetNamespace = "com/wb/hello", wsdlLocation = "file:/C:/axis2-1.5.1/hello2/service/hello.wsdl") HelloPortType: @WebService(name = "helloPortType", targetNamespace = "com/wb/hello") @SO

Re: Axis2 JAX-WS: The service class cannot be found for this AxisService

2010-02-01 Thread Andreas Veithen
Can you show me the annotations on HelloService, HelloPortType and HelloPort? Andreas On Mon, Feb 1, 2010 at 21:12, Daniel Walsh wrote: > Andreas, > > I annotated my service class per your example and I am still getting the "No > annotated classes found in the jar" message when I click on the li

Re: Axis2 JAX-WS: The service class cannot be found for this AxisService

2010-02-01 Thread Daniel Walsh
Andreas, I annotated my service class per your example and I am still getting the "No annotated classes found in the jar" message when I click on the link Faulty Services c:\tomcat-6.0.20\webapps\axis2\WEB-INF\servicejars\HelloService.jar

Re: Axis2 JAX-WS: The service class cannot be found for this AxisService

2010-01-28 Thread Andreas Veithen
Dan, Actually the error message should read "No @WebService annotated service implementations found" or something like that :-) In fact, you also need to annotate your service implementation with @WebService. Note that while this is the same annotation type than on the service interface (generate

Re: Axis2 JAX-WS: The service class cannot be found for this AxisService

2010-01-28 Thread Daniel Walsh
Andreas, Thanks for the tip. I would never have figured that out by myself. Unfortunately, simply moving the "services/HelloService.aar" file to "servicejars/HelloServices.jar" seems to have made things worse. Whereas before I saw the service listed as deployed on the listServices page (but got t

Re: Axis2 JAX-WS: The service class cannot be found for this AxisService

2010-01-27 Thread Andreas Veithen
Daniel, Please have a look at AXIS2-4611 [1]. If deploying as a servicejar is not an option for you, feel free to vote for the issue and leave a comment. Andreas [1] https://issues.apache.org/jira/browse/AXIS2-4611 On Wed, Jan 27, 2010 at 21:32, Daniel Walsh wrote: > > I have written a simple

Axis2 JAX-WS: The service class cannot be found for this AxisService

2010-01-27 Thread Daniel Walsh
I have written a simple hello application in Axis2 JAX-WS and when I run my client I am getting an error that the service class cannot be found. In this email I'm including the exact message, my services.xml file, a jar output of my aar file, my wsdl file, my schema file, a snippet from the availab