I have a very simple webservice as follow:
package testSmart;
import javax.jws.*;
@WebService
public class Add {
@WebMethod
public int addElem(int i, int j){
return i+j;
}
}
Now when I use the following link:
http://localhost:4848/common/index.jsf
But when I open it the Add webservice is not shown in the table:
Just for more explanation I am following the following video which does he same:
Can anyone tell me what is the problem?