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();

}

}
_______________________________________________
wtp-dev mailing list
[email protected]
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://dev.eclipse.org/mailman/listinfo/wtp-dev

Reply via email to