You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm parsing WSDL and tring to get wsdl:arrayType value:
ComplexType c = (ComplexType) inEl.getEmbeddedType();
ComplexContent cc = (ComplexContent) c.getModel();
Restriction re = (Restriction) cc.getDerivation();
Attribute a = re.getAttributes().get(0);
String value = a.getArrayType();
getArrayType() returns null, but it should be "s0:int[]" as in WSDL:
attribute ref="soapenc:arrayType" wsdl:arrayType="s0:int[]"
The text was updated successfully, but these errors were encountered:
tpunder
added a commit
to tpunder/soa-model
that referenced
this issue
Apr 14, 2017
I'm parsing WSDL and tring to get wsdl:arrayType value:
ComplexType c = (ComplexType) inEl.getEmbeddedType();
ComplexContent cc = (ComplexContent) c.getModel();
Restriction re = (Restriction) cc.getDerivation();
Attribute a = re.getAttributes().get(0);
String value = a.getArrayType();
getArrayType() returns null, but it should be "s0:int[]" as in WSDL:
attribute ref="soapenc:arrayType" wsdl:arrayType="s0:int[]"
The text was updated successfully, but these errors were encountered: