Hi Friends,
I am new to windows phone.why is sql sever cannot be directly connected to windows phone?what is the reason behind this?and what are the advantages of connecting sqlserver through wcf ?Please help me out.
Thanks.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Karcki RamaniPosted May 28, 2015, 12:11 AM
Manoj BhoirPosted May 27, 2015, 9:08 AM
Karcki RamaniPosted May 27, 2015, 8:38 AM
Manoj BhoirPosted May 27, 2015, 8:31 AM
Web Services have no instance management, i.e. you cannot have a singleton web service, or a session-full web service. You can maintain state of web services but we all know how painful that is.
WCF while very similar to Web Services also incorporates many of the features of Remoting and .NET Enterprise Services (COM+ Services Components).
It is flexible and extensible like Remoting only more so.
It is compatible like Web Services only more so.
It is feature rich like Enterprise Services only more so
WCF can maintain transaction like COM+ Does
It can maintain state
It can control concurrency
It can be hosted on IIS, WAS, Self hosting, Windows services
It has AJAX Integration and JSON (JavaScript object notation) support
Dipankar BiswasPosted May 27, 2015, 8:15 AM