Description
For example, I have the following parameter in one of the methods in my SEI -
@WebParam(name = "claimFormImage", targetNamespace = "http://test.apache.org")
byte[] claimFormImage,
The deployment will fail because of a NPE (from line 1092 of ServiceDescriptionImpl.java) as we built an empty ParameterDescriptionComposite for it.
The attached patch will check if the paramType is GenericArrayType, if so, set the ParameterDescriptionComposite properly.