The simple HelloWorld (see below) web service does not deploy in the
"autodeploy" folder. GF does not generate the needed wrapper classes
(i.e., it doesn't run the wsgen functionality). This works in V1.
Is "autodeploy" no long supported in V2 ??
-- Mark
import javax.jws.*;
@WebService
public class HelloWorld {
public String sayHello() {
return "Hello World!";
}
}