Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
3.0.0-milestone1, 2.7.8, 2.6.11
-
None
-
Unknown
Description
When the Exeception has some generics object like :
@javax.xml.ws.WebFault public class GenericsException extends Exception { private static final long serialVersionUID = 1L; private ObjectWithGenerics<Boolean, Integer> obj; public ObjectWithGenerics<Boolean, Integer> getObj() { return obj; } public void setObj(ObjectWithGenerics<Boolean, Integer> obj) { this.obj = obj; } }
Both the wsdl generated from the exception class is wrong and soap fault message is not expected.