I have two overloaded methods within a java web service class. After I deployed it onto Weblogic 10, I only see the first one in the WSDL file. Is there a way that both methods can be included in the WSDL file? Thanks.
public class User
{
public getUserName();
public getUserName(String school);
}