Possible Duplicate:
difference between WCF Services and Web Services and REST Service
I have android application which is fetching the data from the online server, using .net web service. Up to now I used a SOAP method to get the data by send the Input XML and getting the Output XML. The received XML will be parsed using the DOM parser. Use KSOAP library.
Now the Web service has been change to Windows Communication Foundation (WCF). Here how can i send the request and How will be the responds. What library file should i use. I have some confusion with this. I know the only difference between SOAP and WCF, WCF is faster then SOAP. Can anyone clear my doubt.
Well I recommend not to change your Andoid coding which is already tested and working with Websevices.
WCF is technique to bring remoting technology under one hood.WCF is a combined features of Web Service, Remoting, MSMQ and COM+. WCF provides a common platform for all .NET communication. So you can do all the same thing that you do with web-services.
Build WCF services that produce the same XML so you need not change the coding on android side and you are good to continue with WCF instead WS.