I’m building an Iphone application,
which has to retrieve information from a database on a server.
I thought about building a C# web service on the server,
so the Iphone app will send a http request to the web service and get the required data as a xml output.
Are there any better alternatives?
for instance: I never tried but heard about WCF,
maybe it’s better using it instead of the older xml web service technology?
Thanks,
Benny
Yes, WCF is the recommended way of building Service Oriented application.
In your case you might want to build your service as RESTFul as well. And anyway,building it using WCF would make it available to any client.
And here is a link to learn the basics of WCF services with Samples.
Windows Communication Foundation (WCF) Samples