Tagged Questions

4
votes
3answers
107 views

In multi-tier architecture with a service layer, is it acceptable to have one service call another service?

I have a multi-tiered app with a data layer containing repositories. On top of this, I have a service layer. My understanding is that there should be a single service for each repository. Is it ok ...
2
votes
3answers
270 views

How to provide a Session/Host object for use in both a windows and web application?

I have a web application that makes heavy use of the Session state to store information about the current user, their personal settings, record their session history and so on. I have found myself ...
1
vote
2answers
137 views

How would you call physcially separated UI / BL code in ASP.NET solution?

Chapter 19: Physical Tiers and Deployment on MSDN describes "Distributed Deployment" (see figure 2). All well and good. In my experience we've always deployed our web based systems as per what they ...
0
votes
1answer
93 views

how to access a report server from VS2010 and how to implement in multi tier architecture

I am developing a website where user logs in and access different reports from report server A WCF service to be developed to access the ssrs report and it returns to the UI ( what it should return ...
0
votes
1answer
181 views

N-tier application in asp.net webforms vs asp.net mvc regarding separations of concerns only

Regarding separations of concerns only, are there advantages of using ASP.NET MVC instead of ASP.NET webforms for a multi tier application with an user Interface layer, a Business Logic layer and a ...