I have a desktop and web application connected to same database. Which is the most preferred method to make them communicate with each other?

link|improve this question

2  
Why do they need to communicate with each other? If each one ensures that their database transactions are atomic and that they are always using locks properly, there should be no problem at all with both apps accessing the same database with no communication necessary. – FlipScript Dec 14 '10 at 6:14
4  
What exactly are you trying to accomplish? Are you trying to make sure both apps follow the same business rules? Are you trying to automate a browser session? maybe you want a web application to fire up a desktop application? – Conrad Frix Dec 14 '10 at 6:17
feedback

1 Answer

up vote 4 down vote accepted

You should use SOA and then both your desktop app and web app should communicate with the Service.

And the Service will be responsible for communicating with the database.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.