kanius
12 years agoOccasional Contributor
[Escalated] Enumeration value merge
I have a field in my request that use a bitwise concept.
I need to be able to send for example "testvalue" and "testvalue2". In our project we send 3 (value 1+2 ) in the field but In soapUi I need to send the text Enumeration value , Is their a way to send testvalue&testvalue2 or something like that.
When I click on the field in the xml the tab XSD show me these information. can we use the enumerationValue form the serialization or maybe a way to join the enumeration like "testvalue"
I need to be able to send for example "testvalue" and "testvalue2". In our project we send 3 (value 1+2 ) in the field but In soapUi I need to send the text Enumeration value , Is their a way to send testvalue&testvalue2 or something like that.
When I click on the field in the xml the tab XSD show me these information. can we use the enumerationValue form the serialization or maybe a way to join the enumeration like "testvalue"
<xs:enumeration value="None">
<xs:annotation>
<xs:appinfo>
<EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">0</EnumerationValue>
</xs:appinfo>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Testvalue">
<xs:annotation>
<xs:appinfo>
<EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</EnumerationValue>
</xs:appinfo>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Testvalue2">
<xs:annotation>
<xs:appinfo>
<EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">2</EnumerationValue>
</xs:appinfo>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="All">
<xs:annotation>
<xs:appinfo>
<EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">255</EnumerationValue>
</xs:appinfo>
</xs:annotation>
</xs:enumeration>