I have to implement a SOAP web service that conforms to a (large) standard schema for the travel industry. Here's an example .XSD file:
http://www.opentravel.org/2008B/OTA_HotelAvailRQ.xsd
I think that rules out simply putting a [WebMethod] attribute to a method. How do you recommend implementing an existing schema using C#?
PS: I'm using WCF, C# 3 and the server has .NET 3.5 installed.
Thanks