Is WCF suitable for writing an application which is shared among applications?

Posted by RPK on Programmers See other posts from Programmers or by RPK
Published on 2012-06-14T16:31:57Z Indexed on 2012/06/17 21:23 UTC
Read the original article Hit count: 371

Filed under:
|
|

I have developed and deployed few ASP.NET applications. Sometimes I want to stop the users from either inserting or updating a record when:

  1. Maintenance is going on.
  2. Stop operations due to payment delay.

In one of my recent application I have implemented this feature to first check the database operations for locked status. If any of the above condition fulfils, database operations like insert and update are not carried out.

I now need this feature in all the old applications and the future applications I build. I want to know whether WCF is suitable in this scenario as I want to share methods or an independent locking application among various other applications.

Is WCF appropriate for this type of scenario?

© Programmers or respective owner

Related posts about ASP.NET

Related posts about wcf