We add the @WebService and @WebMethod in ejb stateless session bean class in ejb project to be expose as web service, by doing so will it expose this ejb bean as web service and generate the WSDL file? Much appreciate for your quick response. Thanks
import javax.ejb.Stateless;
import javax.jws.WebMethod;
import javax.jws.WebService;
@Stateless
@WebService
public class SB_AndroidBean implements SB_AndroidLocal {
@WebMethod
public boolean logintest(String User, String Password){
return true;
}
}