Deployment Scenario

M

mkabhilash

I have Three Servers

1-->WebServer
2-->Application Server
3-->DatabaseServer


Now I want to store all my .aspx pages on to (1)WebServer
dll assemblies on to the ApplicationServer and
DataBase to the Database Server


What I should do to make this happen ?How and where I make configure so

that the pages detect assemblies (dlls) from the Application Server.
Can any one help me ?
 
D

DKode

this scenario depends if the servers are within the same LAN or not.

If they are, I would probably use .NET Remoting to transfer objects
between tiers.

Your Data layer would remote to your application layer and your
application layer would remote to your web server.

No remoting would be necessary on the webserver layer objects.

if the servers are outside the local lan, like on the internet, then
you would use WebServices to accomplish this.

hope that helps!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top