hi
wrever i go thy r asking depth abt 3-tier architecture i.e,
hw to deploy 3 layers into 3 servers i do nt have much idea
on deployment. can any one send me the tips or code if u hav
kindly mail me.
Answer Posted / neerajtyagi
3 tier architecture is sliced into three layers.
1) Presentation / application layer : that consists of all
the UI part which is shown to the screen.
2) Business logic layer : which contains all the business
logic for manipulation and ways to handle data.
3) Data access layer : which comunicate to database and
pull all the data from data server and provide data to
business layer.
Each layer communicated to its nearest layer only ie.
Presentation layer can communicate to Business layer and
vice versa.
In 3 tier architecture there are basically two are the
assemblies for BLL and DAL.
if we have to deploy these on three different server than
we need to do something like:
Server 1 : Database server : (SQL Server / Oracle)
Server 2 : Business Server : Contain Assemblies and
communicate to Presentation layer using web service or WCF.
Server 3 : Presentation Server : Contain the UI part to
display data fetched from Business layer consuming the
Webservice or WCF.
| Is This Answer Correct ? | 13 Yes | 0 No |
Post New Answer View All Answers
Hi this is the coding for adding data in to an xml table
i want the coding for update and delete
Try
Dim emp_xml_doc As New XmlDocument
If
System.IO.File.Exists(Server.MapPath("emp.xml")) Then
emp_xml_doc.Load(Server.MapPath("emp.xml"))
Dim myrow_element As XmlElement
myrow_element =
emp_xml_doc.CreateElement("EmpDetails")
Dim str As String
str = "
Explain the difference between singleton and single call?
What are early binding and late binding.
Explain the updatepanel?
Define a multilingual website?
Which class is used to send an email message from an ASP.NET Web page?
How can you handle errors in Web API?
How can we identify that the page is post back in asp net?
Name the method that needs to be invoked on the dataadapter control to fill the generated dataset with data?
Explain the procedure to handle the process request using mhpm events fired? : asp.net mvc
What is asp.net mvc5? : Asp.Net MVC
What is advantage of code behind coding in ASP.NET?
How can i explain my project during interview?many time i expalain my project but they did't accept? please explain me.
where can i gather the materials for MCP certification
Which Is Faster MVC or ASP.net ?