The high-level design and description of a software system. Architectural design distills away details of implementations, algorithms, and data representation to concentrate on the interaction of "black box" components.
0
votes
2answers
80 views
Distributing a data access solution across multiple solutions
I have 3 solutions, one of them is a dataccess solution with all the repositories etc. At the moment when a change is made to it, the others have to go get the latest nuget version locally, we have a ...
-3
votes
0answers
64 views
Why is there no commercial OS that offers TRANSPARENT persistence? [on hold]
Id like an OS to persist an arbitrary value the way current OS offer virtual memory - transparently. No code necessary, no mental overhead. Its just happens.
0
votes
1answer
58 views
Layer style applied, but intuition is different
Currently, I'm developing an architecture for a system of the following kind:
There are a couple of existing applications (front end) with which one can define UML profiles capturing some specific ...
0
votes
0answers
38 views
dynamic form builder with ability to compare-search-filter input data [on hold]
I want to create a dynamic form builder (admin makes different forms for car-home-home appliances-... and visitors present their products and other visitors search for proper product.
in below ...
-3
votes
0answers
44 views
Architecture for various api parsing and managing it in one app [closed]
Updated after some comments -
I am fetching data from multiple sports api from different sources, and data is in different format given various sources and different sport. I want to know if I can ...
-2
votes
0answers
42 views
Create prototype system with intelligent agents
I am involved with a prototype that will wrap Web services and Web-enabled devices (e.g. Web cams) with agents. The goal is to give the appearance that these services and devices have some ...
2
votes
0answers
109 views
Multiple sites with the same codebase in Python
I am trying to run a large amount of sites which share about 90% of their code. They are simply designed to query an API and return the results. They will have a common userbase / database but will be ...
0
votes
2answers
131 views
MVVM application architecture, where to put dependency injection configuration class, BusinessLayer and Common interfaces?
Planning my architecture for an MVVM application I come to this:
MyApp.UI
View
MyApp.BusinessLayer
ViewModel
MyApp.DataAccessLayer
RepositoryImplEF
MyApp.DomainLayer
DomainObject
...
1
vote
1answer
64 views
Rest API and caching data
I have developed an application where you should be able to browse products catalog(READ ONLY) even network access is down no wifi or 3g/lte etc. Clients(windows,ios,android etc) consume the rest api. ...
0
votes
0answers
36 views
What are the pros and cons of running multiple instances of an app per marketplace?
One app to rule them all, and in the darkness, bind them.
I'm speccing out a client app at the moment.
The same service is to be delivered to two separate counties and the the content within: users, ...
0
votes
0answers
35 views
Modularization of application [duplicate]
I am creating an application that will track different things on relating to a given farm. When I started to look at what I was going to create I saw that some parts of the application infact could be ...
0
votes
0answers
32 views
Layer Encapsulation without Model Overload?
I'm starting a new project, so it's time to re-evaluate how I do things.
In the recent past I have created a 3 layer/tier project (UI, Domain, Data) with each tier with it's own separate model. The ...
0
votes
0answers
30 views
JBPM 5 architecture - should be pluggable
I had used jbpm 4.4 in the past. Though it somewhat lacked in documentation and community support; it was easy to set up as a standalone java application (of course it needs a database) and one could ...
2
votes
2answers
227 views
What are appropriate metaphors for the pieces of a word processor?
A word processor is a complicated creature of many layers and pieces, but it represents a relatively simple concept: a piece of paper with writing on it. This leads to the problem of having many ...
1
vote
1answer
104 views
Where to validate domain model rules that depend on database content?
I'm working on a system that allows Administrators to define Forms that contain Fields. The defined Forms are then used to enter data to the system. Sometimes the Forms are filled by a human via a ...