Skip to main content

Posts

Recent posts

Is it possible to return dataTable from web service?

It is not possible to return DataTable from web service which is always in xml as DataTable objects can not be serialize. To fix this issue you will need to return DataSet instead of DataTable. DataSet may contain one or more DataTable. If you wish to have example code you will get if from following url http://support.microsoft.com/kb/306134