One of my webservices has a parameter of type System.DateTime. It compiles
ok but at runtime I get this exception:
An unhandled exception of type 'System.Web.Services.Protocols.SoapException'
occurred in system.web.services.dll
Additional information: Server was unable to process request. --> Invalid
cast from System.DateTime to System.Byte[].
Can anyone tell me how to deal with this issue?
Should I box the parameters into an object derived from MarshalByValue (or
whatever it's called) ?