The fully qualified package name and class filename are 100% correct. I am
wondering if it may have to do with the JAX-WS 2.1.1 version I am trying to
use... This is really annoying... I even tried creating a new SimpleService
with a single echo method that just returns a string and still no luck...

package com.heartlab.ws.services;

import javax.jws.WebService;

@WebService(targetNamespace="http://services.ws.heartlab.com";,
name="HelloService")
public class SimpleService {

    /**
     * Default constructor
     */
    public void SimpleService() {}


    public String echo(String echoMessage) {
        return echoMessage;
    }
}
-- 
View this message in context: 
http://www.nabble.com/jaxws-maven-plugin-jaxws%3Awsgen---Could-not-find-class-file-tf4477051s177.html#a12777080
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to