I am trying to consume a web service by passing in a date time however I am getting the following:
The string ‘5/19/2010 5:25:21 PM’ is not a valid AllXsd value.
Do I need to convert the string “5/19/2010 5:25:21 PM” to a meaningful object in objective C and if so how?
I think you seem to be sending the date in the wrong format. You need to send this in
2008-02-16T18:13:00format. You can get that using a date formatter using,Use this when you are building the request.