users@glassfish.java.net

GF v2 - is autodeploy still supported for _at_WebService?

From: Mark Hansen <marklists_at_javector.com>
Date: Sun, 18 Mar 2007 07:01:01 -0400

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!";
  }

}