I need to expose a Web service which will provide an array/DataTable of 20 rows (average) of data - certainly no more than 100 rows would ever be needed. The largest item in these rows would be a date.
The Web service would be called by a separate Web site in order to display these 20 (approx.) rows in a GridView/DataView. I would have to be able to dynamically choose which domain to go to and find the Web service.
I would possibly have to secure the Web service with a password but this is not vital (possibly with soap headers over https).
My question is what technologies should I use to create this Web service? I know enough about .asmx Web services to struggle through and get this working, but should I get a book on WCF and learn that instead?
I use AJAX and jQuery so am also wondering if I should be using one of those client side, to call the Web service and populate the grid?
Any thoughts would be greatly appreciated. ...
Go to the complete details ...