Possible Duplicate:
Web Services — WCF vs. Standard
I’m thinking about to know if I’m following the right way by choose a technology for my WebService.
My WebServices will be always consumed from js/jQuery methods and always will return serialized JSON data (for jQuery function and to load jqGrids) not objects.
My site use WIF authentication, but I think this make no difference.
Because of this prerequisites I choose the ASMX technology; is simple and for my needs I think it’s ok.
A good reference was: http://keithelder.net/2008/10/17/WCF-vs-ASMX-WebServices/
According to support, security and speed is the right choice? Or is better to move my WebServices to WCF technology?
For jqGrid and WCF WebService I find a useful post on trirand forum: http://www.trirand.com/blog/?page_id=393/discussion/jqgrid-and-wcf-issue/; hope I will start to work my grids too.
Ok, I get that if I use (and understand) WCF I get only advantages and is better if I replace my services to this technology.
I have windows (MFC – c++) programs that will communicate with my service; I hope they will work fine with WCF services.
Thanks for the suggestions.