How would I go about posting a dataset from a Windows Form to a Web Application (.NET 1.1) The Windows Form I am using as an admin tool and I need to post the configuration data to a specified web server. If a DataSet is not the best option, I am all ears.

Posting a DataSet from A Windows Form to a web server
Cyrus Najmabadi
puppydg68
You can create a Web Service in the web application and have a web method that takes DataSet as its parameters. From the Windows appilcation, take a web reference to that web application and invoke the web method sending the dataset.