Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

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 ?

ima
  • Administrators
Posted

Are you intending to just share the DLLs out on the application server or is there going to be some other communication mechanism in place (remoting etc.)?

 

If they are just being shared out then I can't see much benefit in doing so and it would generally be easier to install them onto the web server itself.

Posting Guidelines FAQ Post Formatting

 

Intellectuals solve problems; geniuses prevent them.

-- Albert Einstein

Posted
Are you intending to just share the DLLs out on the application server or is there going to be some other communication mechanism in place (remoting etc.)?

 

If they are just being shared out then I can't see much benefit in doing so and it would generally be easier to install them onto the web server itself.

Yes, if I am using remoting

ima
  • Administrators
Posted
If you are using remoting then you will probably find it easiest to use a configuration file to tell the client where the remoting servers are http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconremoteobjectschannels.asp and http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dndotnet/html/remotingconfig.asp may be worth a look

Posting Guidelines FAQ Post Formatting

 

Intellectuals solve problems; geniuses prevent them.

-- Albert Einstein

Posted

I got the following reply for this question from some other groups

 

I got the following reply for this question from some other groups :

 

" 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.

 

"

Thank u for all your help

ima

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...