I've had a few problems with using java2wsdl to generate wrapped style wsdl files.
Firstly it throws an index oout of bounds error if your methods throw any exceptions. Secondly it has problems with overloaded methods - it only creates one element for the method and then it bundles all the parameters for all the method variations together into a single <sequence> inside that element I fixed the first problem, but I'm a little stuck on the second problem, partly from a coding perspective and partly from a schema definition perspective. i.e., for the schema, should it: A) generate a separate element for each variation, kind of like mymethod1, mymethod2 etc. B) generate a single element but with a choice of sequences representing all of the argument sets? Any help would be appreciated.