Build a distributed multi-tier app that the components of it work on different machines?

  • Thread starter Thread starter mj
  • Start date Start date
M

mj

Hi,

I wanna build a multi-tier app like petshop, but it seems that the
components in the petshop can only work on one machine, how can I build a
distributed system that the components(DAL layer, Business layer) of it work
on different machines, and how can they communicate with each other? .NET
remoting? Is there any sample?

Thanks in advance.

mj
 
Hi,

Remoting is one of the possibilities, being Web services the other.
If you use them you can pretty much work as they were local as the .net
provide all the foundation you need for them.

You can buy the remoting book from MS press and I'm sure that at
gotdotnet.com you will find sample code.

cheers,
 
Back
Top