Hi!
I1m currently evaulating myEclipse 7.1. I have a simple class with only 1 login method. this method has 2 params: username, password. If I generate a webservice from this class using the New Webservice wizard (bottom-up scenario), the myEclipse generates the binding class with argxxx parameters:
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
@XmlRootElement(name = “Login”, namespace = “http://ws.helpdesk.griffsoft/”)
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = “Login”, namespace = “http://ws.helpdesk.griffsoft/”, propOrder = {
“arg0”,
“arg1”
})
public class Login {
@XmlElement(name = “arg0”, namespace = “”)
private String arg0;
@XmlElement(name = “arg1”, namespace = “”)
private String arg1;
Is there any way to see my original parameter names in the generated files?
Thanks.