Tagged Questions
4
votes
3answers
365 views
Best practice for validating input data for multi-tier application
In our application we have various layers. Service Layer, DAO layer and actions (struts applications).
Data gets passed from one layer to another layer.
Where we should ideally put input ...
2
votes
1answer
19 views
How to avoid session-related parameters in business layer?
I have a JEE application (simple web GUI, a large EJB 3 business layer, JPA) whose most functions depend on the currently logged-on user.
Because of this, the EJBs are infested with omnipresent ...
2
votes
3answers
414 views
WinForm fat client: Architecture decisions: Did I make the wrong ones?
I have a .NET Winform Click-Once-deployed fat client that talks to three databases, 2 SQL Server databases and a Oracle one.
The first SQL Server database, I will call the Master. I wanted add more ...
2
votes
3answers
269 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 ...
0
votes
1answer
199 views
Is multitier architecture for a scalable web site is a premature optimization?
I am designing the architecture of a new web site. Since multi-tier architecture definitely have all the symptoms of premature optimization (complexity, length of development, etc) I would love to ...