Hello!

Everytime I use Java2Wdsl I lose the name of my service parameters:

Example:

public class MySample {
   private String name;
   public void setName() {
       this.name = name;
   }
   public String getName() {
       return name;
   }
}

public interface test {
   public MySample getSample(MySample myParam, String dummy);
}

The generated "wsdl" loses the "myParam" and "dummy" and instead has "in0" and "in1".

Is there a way to keep my custom names?

Thanks




Reply via email to