when i use axis to generate the client code, i'm expecting to get flags for FindResultMask that i can combine (or) and pass into FindOptions. anyone know why i'm not?
the entire wsdl can be found at: http://staging.mappoint.net/standard-30/mappoint.wsdl <s:complexType name="FindOptions"> <s:sequence> <s:element minOccurs="0" maxOccurs="1" name="Range" type="s0:FindRange"/> <s:element minOccurs="1" maxOccurs="1" name="SearchContext" type="s:int"/> <s:element minOccurs="1" maxOccurs="1" name="ResultMask" type="s0:FindResultMask"/> <s:element minOccurs="0" maxOccurs="1" default="0.85" name="ThresholdScore" type="s:double"/> </s:sequence> </s:complexType> <s:simpleType name="FindResultMask"> <s:list> <s:simpleType> <s:restriction base="s:string"> <s:enumeration value="LatLongFlag"/> <s:enumeration value="EntityFlag"/> <s:enumeration value="AddressFlag"/> <s:enumeration value="BestMapViewFlag"/> </s:restriction> </s:simpleType> </s:list> </s:simpleType>