For parameters to an OperationContract that represent a date only (no time component or timezone designator), it is desirable to use xs:Date, to avoid any ambiguity or probl
Unfortunately WCF doesn't support the xs:Date type. You'd have to create your own "DateOnly" struct, like:
_ public struct DateOnly public Month as Integer public Day as Integer public Year as Integer end struct