|
System.ArgumentException: System.FormatException: String was not recognized as a valid DateTime |
|
|
|
|
There was an issue using the program with a datetime setting of Month/day/Year (MM/dd/yy) since the clients hardcoded sent day/month/year the program gave an error when the date incremented past 12!
We changed all 3 programs in the DigiWaiter Suite to be compatible with the MM/dd/yy (for instance 'US-en') timeanddate format.
There's only one small thing, the dateandtime format on the client and server need to be the same.
In other words you cannot have a dd/MM/yy format on the PDA client and a MM/dd/yy format on the server.
Beware: the client will still respond with a "order accepted by server" message even though the server doesn't have a record of the order.
Implementing a check to wait for a correct databind and after that send the response would slow down the order process to much...
|