The architectural-patterns tag has no wiki summary.
0
votes
1answer
25 views
Need Design or Architectural Pattern for management of hierarchical data used for tree model on client
I am trying to learn from the mistakes of my predecessors. Our Swing client uses a JTree/TreeModel to represent our data (a file-directory-type structure of fairly unlimited depth). The data is ...
0
votes
0answers
23 views
I need a download of the Enterprise Development Reference Architecture
I'd like to get the assets that were part of the
patterns & practices: Enterprise Development Reference Architecture: Releases: Home
The releases used to be on GotDot.net - ...
0
votes
0answers
54 views
What architectural pattern should I use for my system?
I'm building an android application which requires a backend.
Initially, I was planning to use Appengine as a backend. But that alone will not do. I would also require a Virtual Machine or a ...
0
votes
3answers
54 views
How to build a cloud application and keep portability intact?
Please check the answer and comments of my previous question in order to get a better understanding of my situation. If I use Google DataStore on AppEngine, my application will be tightly coupled and ...
3
votes
2answers
167 views
Passing business entities through layers in multi layer architecture
Currently I'm working on a project exploiting multi layer architecture as described in Application Architecture Guide 2.0 with 5 layers(DAL, BLL, Facade, Presentation Layer and Common Layer).
Here we ...
2
votes
1answer
84 views
Is there a benefit to storing plain-text (in addition to the HTML data) to improve searchability?
To keep this simple, I intent to store some html based content that is created by the end user. So a table like the following
create table Content
(
ContentId,
Title,
ContentHtml
)
Now, ...
1
vote
3answers
202 views
Factory Pattern where should this live in DDD?
I have debated this for a while now and still have not come to a conclusion.
While most examples I see have the factories code in the application layer I tend to think it should be in the domain ...
1
vote
2answers
579 views
Session Façade in a Client-Server Application
In the J2EE Pattern Session Façade - that the "Core J2EE Patterns - Best Practices and Design Strategies" book says:
Use a Session Façade to encapsulate business-tier components and expose a ...
0
votes
1answer
139 views
MVVM Pattern Contradiction - Architectural Vs Presentation?
What is a Presentation Layer Pattern/Presentation Pattern? As far as I know MVVM is an Architectural Pattern, but I see many people, articles, blogs referring it as a Presentation Pattern. And I got ...
10
votes
0answers
445 views
MVVM pattern with PySide
I've been trying to find a way to implement MVVM with PySide but haven't been able to. I think that there should be a way to create Views from ViewModels with QItemEditorFactory, and to do data ...
0
votes
0answers
133 views
How many tiers does my application have?
I have done research on the different kinds of architectures but I'm still not too comfortable choosing between 3-tier and 4-tier.
What constitutes a 4-tier system?
My application is as follows:
...
3
votes
3answers
101 views
How to handle state from external systems functionally?
I recently got into functional programming and I've learned several ways of dealing with some kinds of side effects in a referentially transparent way:
the State monad for mutable state like ...
0
votes
1answer
366 views
Pipe and Filter, clarification needed
Few questions on Pipe and Filter.
In this example, as illustrated on the image above, when implemented:
Should each Pipe be running in a separate thread?
Should each Filter be running in a ...
5
votes
1answer
475 views
How robust is the Project Silk type architecture for data heavy LOB apps?
Project Silk looks good for social networking applications where there are streams of frequently updated data that need to appear in a dashboard style presentation.
I would like to ask if such an ...
0
votes
1answer
198 views
Amazon SQS: how to find end of job?
Let's say I have a lot of jobs and every job consists from a big number of some elementary operations that many worker applications work upon.
I send a message for every operation to workers, so they ...
1
vote
7answers
190 views
What design pattern to use when I want only some derived classes to have access to a method in base class?
I have a unique problem/situation here. Trying to make it as simple as possible. I have a base class (say Parent) and a whole bunch of derived classes (say Child1, Child2 ..ChildN) directly deriving ...
2
votes
2answers
1k views
Active Records vs. Repository - pros and cons?
Using ActiveRecord you might define a class like this:
class Contact
{
private String _name;
public String Name
{
get { return _name; }
set
{
if (value == ...
7
votes
1answer
3k views
MVCS - Model View Controller Service
I've been using MVC for a long time and heard about the "Service" layer (for example in Java web project) and I've been wondering if that is a real architectural pattern given I can't find a lot of ...
5
votes
3answers
199 views
Pattern/Library for sending objects over network, keeping pointers
Let's say you have a Client and a Server that wants to share/synchronize the same Models/Objects. The models point to each other, and you want them to keep pointing at the same object after being ...
0
votes
0answers
340 views
What is the different between MVC 1 and MVC 2? [closed]
Can you briefly explain the different between MVC 1 and MVC 2 architecture?. I don't want very simple or cut and paste answer. I need very in-depth. i.e the core different and also the supporting ...
0
votes
2answers
548 views
Design Pattern(S) Command or Factory Which is Better to implement?
We can solve some Design Problems By implementing Factory as well as Command Pattern also.
so, according to performance which is the better one?
1
vote
1answer
322 views
Naming conventions for a project containg only WCF ServiceReferences?
Let's say we have a back-end that needs to talk to N external systems using some kind of Web Services.
What I do is: Create a separate project and generate there the proxy classes (using the ...
1
vote
5answers
134 views
location of interfaces dilemma
Given a code project which is supposed to adhere to the SoC principle by implementing loosely coupled layers, having an IoC container, etc., for example, a simple ASP.NET MVC solution which is ...
4
votes
2answers
406 views
Web Applications: Allowing super users to impersonate other users - Is there a design pattern for this?
In my web application, I'd like to allow super users to impersonate other users.
My Question:
Is there a generally accepted design pattern that I could use to make this happen?
Generally ...
2
votes
1answer
191 views
How to evade writing a lot of repetitive code when mapping?
I have a data access layer (DAL) using Entity Framework, and I want to use Automapper to communicate with upper layers. I will have to map data transfer objects (DTOs) to entities as the first ...
2
votes
4answers
256 views
What design-pattern do you use, and what is it good for? [closed]
I know about the Gang of Four and some of their patterns such as the Façade, the Factory, the Singleton and some others.
Besides, it happened that I see multiple patterns which I don't know of, ...
3
votes
2answers
106 views
Time delays and Model View Controller
I am implementing a turn based game, there are two sides and each side has several units, at each specific moment only one unit can move across the board.
Since only one unit can move at a time, ...
4
votes
6answers
1k views
OOPS (Design Patterns)
hey, hi i want put limit on object creation means a class can have at most suppose 4 objects not more than that how to achieve this?
3
votes
4answers
419 views
What is the difference between an Abstraction and a Facade?
What is the difference between an 'Abstraction' and a 'Facade'?
Is there a difference at all? Or are the terms interchangeable?
5
votes
3answers
4k views
Query object implementation examples
Can anyone recommend good tutorial, implementation or sample code on Query object pattern usage, in C#(Java...)?
I haven't found much with google.
27
votes
9answers
17k views
Is MVC a Design Pattern or Architectural pattern
According to Sun and Msdn it is a design pattern.
According to Wikipedia it is an architectural pattern
In comparison to design patterns, architectural patterns are larger in scale.
(Wikipedia ...
10
votes
7answers
4k views
Pros and Cons of the use of DAO pattern
As I mention, I'm interested to know what do you (as experienced developers) thinks about the use of DAO pattern, specifically within a Web Application. If possible what advantages have you found, or ...
16
votes
5answers
5k views
Transactions in the Repository Pattern
How do I encapsulate the saving of more than one entity in a transactional manner using the repository pattern? For example, what if I wanted to add an order and update the customer status based on ...
25
votes
10answers
4k views
What Alternatives Are There to Model-View-Controller? [closed]
While going through university and from following the development of SO, I've heard a lot about the Model-View-Controller architectural design pattern. I inadvertently used the MVC pattern even before ...

