Hi,
I’m trying to make a SOAP request that requires XML attributes for some of it’s elements. The attributes are set using the method described here. I do get the correct XML when testing with the XML serializer, but when making a SOAP request, all attributes are ignored.
One reason the attributes are required is to define the type of abstract elements like below:
<ns1:DateStrategySelection xsi:type="ns1:ChangedAfter">
<ns1:Since>2023-11-14T11:50:00</ns1:Since>
</ns1:DateStrategySelection>
The above part of the request causes another problem:
The Since field is not defined in DateStrategySelection, I think this causes Alumio to ignore the Since element in my request too.
Is there any way to make this work or is it just not supported?