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
XmlSerializer will serialize a DateTimeOffset simply as a string.
Adjusted the DateTimeOffset test so that it works for both,
DataContractSerializer and XmlSerializer.
FixesDigDes#1013
Let's say there is a type such as the following:
SoapCore currently will generate the following WSDL for it:
and further below:
This schema corresponds to the XML that the DataContractSerializer generates, but it does not correspond to the XML that the XmlSerializer generates.
The actual SOAP XML that is transferred is the following:
As you can see, the XML generated by the XmlSerializer does not correspond to the WSDL that is generated.
The text was updated successfully, but these errors were encountered: