When should a web service not be used?
Web Services are an absolutely horrible choice for data access. It’s a ton of overhead and complexity for almost zero benefit. If your app is going to run on one machine, why deny it the ability to do in-process data access calls? I’m not talking about directly accessing the database from your UI code, I’m … Read more