[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.remoting

When is remoting appropriate?

Joshua Belden

9/8/2004 10:33:00 PM

Let's say I have a database that stores books and a client application that
retrieves a list of those books, adds new books, and updates / deletes
existing books.

Normally I would implement this all in stored procedures and the client
application.

This seems like a good place to use Remoting however, I could have a server
component that handles all of the database work and business rules and the
client simply sends the request along with any necessary data.

Also, if all client applications needed to be notified when a book was added
or modified, Remoting would be even more valuable.

Am I way off? What would the scenario have to be before Remoting was
appropriate.