Posted on: 5/22/2014 12:08:31 AM | Views : 386

Hi:
This is the first time I deal with Soap and XML.  
We obtain the required data through a third party Soap web services.   The data is read into a dataSet and a gridview is bind to this dataSet.  We would like to sort the data by "startdate", which when I check the xml it is in this format "2014-05-12T11:00:00".    Is it possible to sort the source dataSet before the gridview binding or do I have to construct some intermediate tables or datasets to achieve that?  Any insight appreciated.
Following is the current code snippet:
        Dim svc As New xyzAPI.ServiceSoapClient         Dim objReader As New StringReader(svc.GetBookings("myUserID", "myPwd", startdate, enddate))         Dim dst As New DataSet("Data")      ...

Go to the complete details ...