I created a web service for the following code, but I get an exception:
org.apache.axis.InternalException: java.lang.Exception: Could not find the corresponding Java operation for the WSDD operation "andrQues" (0 args) "when the function was called.
public class Ques { public String[] AndrQues(){ String ques[] = {"name??", "age??", "grade??"}; return ques; } }
Does anyone know why this is happening? Also wsdl is not generated.
source share