i keep asking this question until it’s answered: is there a workaround for this issue (as posted in the first post of this thread):
3. i have a own bean Resultaat (containing an int and a String). One of my web services has a method with the signature (purpose of this method: given the name of a table, return an object of type Resultaat containing the name of the table and the number of rows in the table):
@WebMethod
public Resultaat getAantalRecords(@WebParam(name="tabelNaam") String tabel)
when i use the top down wizard and i select the appropriate wsdl, my own Resultaat-class is overwritten by a generated one (makes no difference in which package i put this class, nor if i fill in the package input field in the wizard, it’s always overwritten). so my code got broken, because i use in the method implementation some methods and a constructor that don’t exist in the generated one. Is this some bug or how do i have to solve this?