I have some projects, which are developed using Netbeans 6.1 IDE to be imported to MyEclipse 6.5 IDE. One major change I noticed is that, code generated using netbeans ide does not have a delegate class, instead the public methods that are to be exposed need to have the notation @WebMethod before the method definition and the class itself will have the notation @WebService before the class definition. An example is given below.
@WebService
public class SimpleWS {
@WebMethod
public someMethodname throws RemoteException {
some code here
}
}
Thanks
Sreeram