Wolfgang, Attachment is missing...can you please open a bug report and upload the file?
thanks, dims On Sun, 31 Oct 2004 23:57:39 +0900, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hi Michael, > > I have a checkin request for wsm. > The attachment(proc_diff.txt) is a patch for WebServiceTYPEMetadata.java > > A validateDuplicatedMethods() method is added in the class. > It checks if there're duplicated methods in the object model. > > The duplicated methods are something like as follows. > > @WebMethod(operationName = "Ope") > public boolean getNutty(int a); > > @WebMethod(operationName = "Ope") > public boolean getHome(int a); > > and > > @WebMethod(operationName = "Ope") > public boolean getNutty(int a); > > @WebMethod > public boolean Ope(int a); > > When they are converted in an object model, they will > have same operationName and same parameters. > ( Thus, Axis treats them as exactly same methods so that > it will throw an exception when generating WSDL. ) > > The validateDuplicatedMethods() method prevents it. > > thank you. > > Wolfgang. > > -- Davanum Srinivas - http://webservices.apache.org/~dims/
