Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [wtp-dev] Annotation Validation: OPERATION_NAMES_MUST_BE_UNIQUE_ERROR

Here is a simple example that Triggers the Problem

 

@WebService(targetNamespace = "htp://ww.example.com/test")

public class Sample {

static class Person {

}

public Person getPerson(String id) {

return someHelper(id);

}

private Person someHelper(String id) {

return new Person();

}

private Person someHelper(int id) {

return new Person();

}

}


Back to the top