Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Application server architecture

Status
Not open for further replies.

spicysudhi

Programmer
Nov 10, 2003
575
FR
Hi,

Can someone guide me whether what I am trying to get is achievable. Its like this

Three server architecture
> Server1: is Webserver with IIS but No database client
> Server2: is Application server, has got database client
> Server3: Database server

User requests passed from Webserver to Apps server where the request prodcessed and then response returned to Webserver. There is a firewall between Webserver and Apps server and ports are not opened between these two for database connection. All data queries must be executed only from Apps server.

Is this possible? If yes, how this actually works in .Net? How the webserver talks to Apps, what are the components needs to be there on each server to execute in this method.

--------
Adding complexity to it:
> Server4: Apps server, same as above apps server

Webserver is configured with two apps servers. The requests are passed to apps server one or two (some kind of load balancing). Can this be done? If yes will IIS handle the load balancing automatically...?

------
thanks in advance.

regards,
Sudhi
 
Yes, this is possible. You would typically do this via .NET remoting (ports for this would have to be opened) or Web Services (port 80 would have to be open and IIS installed on app servers). If you're a masochist, you can do this via socket communications (again, a port must be opened).

Chip H.


____________________________________________________________________
If you want to get the best response to a question, please read FAQ222-2244 first
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top