When a java class is installed as a .jws, is there a way to set the target namespace when converting it to WSDL? I am thinking of something like this:
class Calculator
{
public static final String targetNamespace = "http://foo.org/calculator";
public int add(int a, int b) {return a+b;}
public int sub(int a, int b) {return a-b;}
}
Thanks,
David
