Architecture encompasses the process, artifacts and high-level structure of a solution.
1
vote
1answer
35 views
Class hierarchy in Java - What makes sense vs Easier implementation
I have the following class/interface hierarchy:
+ interface Resource
|-- + abstract class AbstractResource
| |-- + class ...
|
|-- + interface ConcurrentResource
|-- + abstract class ...
0
votes
1answer
21 views
How to model an event based architecture?
I have to build an aplication in android that is similar to Evernote, and i have to make a diagram model that shows the app's architecture. So, textualy my app works that way:
I have a MVC model that ...
0
votes
0answers
33 views
Asp.net MVC vs open architecture
I have been pondering this question for a few weeks now. The question is what platform to use to build out a large social/e-commerce website. I would like to begin this on a hobby basis and perhaps it ...
1
vote
0answers
28 views
Architecture for a recurring workorder system [closed]
I'm hoping for advice on designing a workorder system that has to support recurring workorders. For example, An administrator needs to be able to set a workorder to repeat in a unit of time like every ...
1
vote
1answer
43 views
DDD: Pattern for submitting and approving contracts
I'm working on an app where the following requirements exist:
A user submits some data in a form and this gets persisted as a "Draft Copy."
On the other end, an approver reads it and takes some ...
0
votes
0answers
7 views
How to maintain follow list like in Instagram?
I am trying to make a network similar to Instagram / Facebook principle; i.e. there will be many users and they might be connected to one another in uni-directional way. Something like a graph.
A ...
-2
votes
0answers
12 views
Architect of cloud an issue [closed]
I have some idea of cloud computing but that of development not architectural.I want to develop or say design an framework on top of which we can develop application and application can communicate ...
0
votes
1answer
14 views
API-Centric design: How to minimize bandwidth costs provided by client side applications?
I have spend last few days studying about RESTful API in general using book such as O'really RESTful Web Services and, I also read stuff about API-centric design using tutorial such as creating an ...
-1
votes
0answers
12 views
Man-day values of populer project? [closed]
Is there any website about the man-day value of populer project? For example NHibernate's man-day value is 37 man-years...
0
votes
0answers
17 views
Writing data driven reflection based tests to ensure design completeness
When writing software I'm often forced to at some point to make a decision that involves a design pattern of "by convention" naming and behavioral patterns. This normally makes me feel kind of slimy ...
1
vote
0answers
28 views
Re-architecting a classic inheritance design [migrated]
I have the opportunity to rewrite a core piece of a project that is inheritance-heavy and feels increasingly restrictive in how it is designed. The scenario is pretty simple, imagine an application ...
0
votes
1answer
20 views
PubSub Design Pattern with publisher controlling who can subscribe
My problem is that i need to make a pub-sub mechanism that will give the publisher the option to prevent some subscribers from getting any messages. This option should be managed by the publisher so ...
-1
votes
1answer
17 views
What web technology disables people from capturing screen content from a web application [duplicate]
I am building a website that offers practice tests in many professional domains. I would like to disable students from taking screen shots (print screen, snipping tool ....) of the web page.
What ...
0
votes
1answer
30 views
Symfony2 Bundle/Application Structure (Frontend/Backend)
I've read a lot of different things about bundles and the architecture of a Symfony2 project, however I've yet to come to a conclusion on the best practice for an individual project which isn't ...
2
votes
2answers
68 views
Mixing up languages and technologies: Is it a good idea?
Please have a look at the following design. It is a Block diagram, which is created to display COMPONENTS
Please note this is a diagram for a desktop application. What you see here are components, ...
0
votes
0answers
47 views
Find common functionalities or functions between 2 programs
I've been facing a problem recently, in which I want to optimize two programs.
For that, I wanted to create some kind of "Common Interface" which I could reuse between my two programs.
However, the ...
0
votes
1answer
37 views
Declaring Facade Class in Dependency Injection
I am using Dependency Injection. Say that I has an OrderService class like this:
public class OrderService{
public OrderService(
IOrderValidator validator
, IOrderRepository ...
0
votes
2answers
24 views
Version control architecture for a large project with many dev groups
We are working on a very large portal project. We need a scalable source version control architecture such that, it should be scalable to many teams and possible incoming teams.
There will be common ...
1
vote
2answers
30 views
Using REST services directly from the browser via Javascript
What are the pros and cons of consuming web services within an HTML page via Javascript (JQuery)?
Browser (JS) -> Backend (REST)
versus
Browser (JS) -> MVC backend -> Web services backend ...
1
vote
0answers
34 views
Architecture of some Client-Server solution
We have a tool that should display some formated content. Users will create some templates with images and will publish them.
We need to save these templates for further their displaying using html.
...
0
votes
2answers
24 views
Handling actions in REST web services
I have a web applications where the user can upload samples that can be processed by the backend. Each sample can have one or more files of different types. Once the information about the sample is ...
0
votes
0answers
16 views
Communication Android Client and Server Application
i create an android application which communicate with MYSQL data base through php web service.
correcte me if im wrong please:
The Android Client send a request HTTP to the PHP web service.
The PHP ...
0
votes
1answer
35 views
Xamarin.Android application architecture
I have one of those questions which are hard to be asked or answered in a forum. Recently I have been tasked with designing (and implementing) an application which would run on android OS. Since I ...
-1
votes
1answer
30 views
Writing software for a real life application [closed]
I want to write a piece of code that is stand alone, what it does is not important. I was wondering would I need an OS installed in memory for the cpu to be able to run this program, or could the code ...
0
votes
1answer
15 views
Confused about data allignment
I'm trying to get my head around why data alignment/padding is necessary. From wikipedia:
"When a modern computer reads from or writes to a memory address, it will do this in word sized chunks"
...
-5
votes
0answers
19 views
What is the architecture of this system [closed]
I'm producing a system for a language training center as part of my studies, the system is divided into two parts:
- A desktop management application programed in java and has its own database
- A ...
1
vote
1answer
28 views
determine os architecture and bitness in java
I want to be able to dynamically determine the OS, architecture, and bit-ness in my Java application.
For example, I would like my application to know when it is on a Solaris 32-bit sparc machine or ...
1
vote
1answer
58 views
message queue - smallest amount of work for a consumer
This question is about Architecture / Design:
I have a consumer that needs to perform x numbers of tasks, when should I think about breaking the consumer up into smaller task and/or adding the ...
0
votes
1answer
20 views
Architecture options for CouchDB messaging app
I have a question with regard to the most appropriate architecture on couchDB for a Messaging app use case I have.
The use case is for a simple messaging platform which currently has one couch DB ...
2
votes
2answers
75 views
What is a model and what is not a model php
I'm quite confused on how do I build my models, I failed to understand this for the last 9 months. Although I am reading and watching all the references , @teresko gave to me.
To further narrow down ...
0
votes
0answers
20 views
Is that MDM (Master Data Management) is for legacy systems?
What is the best way to reference a data management for Legacy systems and new Build system,
Is that correct:
For a Legacy Systems:
Using Master Data Management (MDM) for a legacy systems is a ...
0
votes
0answers
10 views
Multiple Sites with Multiple Clients Deployment Architecture
I am interested in knowing how does the architecture behind SaaS such as BigCommerce and Wix are designed.
It seems that they have the following features:
1. Multiple clients managing different sites ...
0
votes
0answers
14 views
What are the open source projects with thorough documentation of their architectural decisions?
Many open source projects lack documentation. The projects which have some documentation tend to have very little content on their architectural decisions.
Here is a template for documenting ...
-1
votes
0answers
21 views
How a processor actually interprets instructions [closed]
I've done many searches in Google and I just cannot seem to get some sort of definitive answer to the question...how exactly does the logic circuitry inside a processor interpret code...I guess at the ...
-3
votes
0answers
18 views
How google docs writes and reads are done [closed]
How does google docs work? When you type something on the web interface, is it directly written to the excel file? how do they manage revision? do they use a version control system?
0
votes
1answer
20 views
is it necessary to use Microsoft approach in every class for finding software maintainability?
For finding software maintainability by using Microsoft approach, where normally we have to use following method
MI = MAX(0, (171 — 5.2 * ln(HV) — 0.23 * CC — 16.2 * ln(LoC)) * 100 / 171),
Where,
...
0
votes
3answers
32 views
Multiple views for the same form in a web application
I have a situation where I have several ways to perform the same activity in my php web app.
There is the "Manage Widgets" section of the app which has a form for creating new widgets and a list of ...
0
votes
0answers
22 views
Is there a better way of handling access control logic instead of it being in the UI? [migrated]
Through most of my dev experience, I've never had to deal with much variety of access control architectures.
They've all been pretty straight forward:
Group [Create, Update, Delete]
- User 1
...
0
votes
1answer
8 views
Show UI dialog from Service.contracts project following coding rules
my dto's located in the contracts project, layer between UI and Service
I have an observable collection of thes objects loaded in a grid in my view.
A checkbox is binded to a boolean value of the ...
4
votes
3answers
130 views
+100
web api for ASP.NET - how to build a stream of objects
It is going to be a kind of subjective question but still want to raise it here.
I am planning to build a stream wall like fb, which will contain objects like text post, * embedded videos*, pictures, ...
0
votes
0answers
16 views
Advices on layered architecture for my app (two processes, one machine)
I'm trying to have a good architecture for the program I'm doing, but I struggle with the well-known concepts as I do it for the first time, so bare with me.
I'm trying to make a windows application ...
-2
votes
1answer
24 views
Best practice, Application architecture MySQL
i must design a system which unifies 4 applications, these applications share a lot of information (which at the current system, the information is duplicate in databases).
My first idea was to use a ...
0
votes
1answer
55 views
Architecture for Intranet Application
I am planning to build a production application for a small & medium business. This is an intranet application with maximum 15 to 30 concurrent users. The proposed architecture is:
Client: ...
1
vote
1answer
50 views
+50
Couchdb architecture: Views or documents?
I'm trying to learn CouchDB by working through a simple RSS reader web application. The requirements are:
Allow each user to import X feeds to his list
User can add tags to each feed
For each feed ...
-1
votes
1answer
29 views
Architecture for storing profile pictures in web application [closed]
I am working on a web application with user login. User can upload his/her profile picture. I am planning to save these pictures in file system. But I don't know how to design this architecture. Any ...
0
votes
0answers
11 views
DAL Architecture for self service Kiosks
I'm working on a self service Kiosk which enables users to pay their electric bills through the kiosk.
Each Kiosk is a thick client, running a window 7 computer with in a lockdown state (runs the ...
0
votes
1answer
45 views
How to go for the architecture? [closed]
I am designing an application that needs to work on the web as well as on mobiles.
The application shall work something like this :
The mobile applications shall consume the webservices for fetching ...
0
votes
1answer
34 views
Solution Design - Architecture : Auto-generate from and submit form events
This is a design issue i would like to discuses before starting development so , any opinion may help, there is no specific way to do it except that the system should be delivered under sharepoint ...
0
votes
0answers
17 views
Mobile app with friends list based on contact list - Architecture
I'm developing an app that requires the users to log in by their phone number. As in WhatsApp, the users' friends list in the app is created by their phone book.
Meaning - When the user logs in into ...
2
votes
1answer
102 views
Detect one's or two's complement architecture in C++?
What is the most reliable way to detect whether the architecture uses one's or two's complement representation in C++?



