views:

1

answers:

1

It looks like they are converted to regular date types in the generated proxy object.

I'd like to optionally pass null values for these dates.

Other than switching to WCF (no time to learn it right now), what is the best way to handle this situation. It looks like I also cannot pass NULLABLE date types.

+1  A: 

I haven't tried this.
But, wouldn't Nullable<DateTime> help?

shahkalpesh
My mistake Nullable(Of Date) is permitted in a WebService. I had the syntax wrong. ty
Velika