The application-design tag has no wiki summary.
0
votes
1answer
34 views
How to setup initial user/role enabling SAML SSO
We are a service provider. Suppose in our application, we originally have our own user/role management. Different users with different roles are allowed to use different features. So that when a user ...
3
votes
2answers
83 views
How can a Windows Forms application that relies heavily on Application.DoEvents() be made less unstable without having to re-design it?
The application that I'm now in charge of maintaining relies heavily on the Application.DoEvents() method, and while I do not have solid proof that all the sudden and inexplicable application crashes ...
0
votes
0answers
49 views
How to design application when having large number of inputs in database per seconds? [closed]
Currently my team and I have new project and we are going to analyze requirement.
We are stack up at one issue that application will have number of rows to be entered per seconds.
First we have ...
0
votes
2answers
148 views
How implement billing system
I have two collection in database income_funds and expenditure_funds:
income_funds
timestamp
amount
status (not confirmed, confirmed, refunded)
expenditure_funds
timestamp
amount
...
0
votes
0answers
32 views
Core Data solution for keeping old data
I am developing a Cocoa App for OSX to allow users place bets on several games we offer. I have set up a webservice which returns an XML with the daily rates for betting, and what my App should do, ...
1
vote
1answer
226 views
websockets and sync adapter in android
I'm designing an application for getting some data from a web service, like a REST API and showing it to the user:
I was thinking about using the Sync Adapter with Content Provider API:
the Sync ...
2
votes
2answers
219 views
Simple CRUD Application with portable database
after much searching I am going to pose my question here. If there is a duplicate and my search-foo abilities failed me I will gladly defer to it. On to the question.
I have a heavy background in ...
1
vote
2answers
125 views
Good application design where database/tables changes are frequent [closed]
In a microsoft development environment ie. .net, c#, sql server, entity framework etc. : what is the best design for an application where there is frequent addition of tables and columns to tables in ...
0
votes
1answer
109 views
Need efficient way to perform database update from excel file for survey manager
I have a tree with respondent-unit structure. Where respondents belong to units.
Lets assume that there are two departments in Bank, so I will have:
+ Accountants
- Homer Simpson
- Bart ...
2
votes
1answer
60 views
Implementing cross-cutting concepts into LOB/DI application
I am currently creating a small personal windows (desktop) .NET LOB application and I want to use the opportunity to increase my knowledge and experience with DI. I've separated my application into ...
1
vote
2answers
42 views
The android app interrupts its own installation
I am making an android app and want it to get installed on only one particular device. What I want is that the installation of app should get interrupted whenever it is detected to be a device other ...
2
votes
3answers
272 views
MVC: why do we need “controller”, or when should we use this pattern?
I have read many publications about MVC, but I still can't clearly understand why do we need "controller".
I usually write applications in client-server model:
server contains all the ...
0
votes
1answer
90 views
Hibernate Versioning - Manage separate field update
I have a backend application, the application doesn't have any user interface. The actions are triggered by incoming data that the server listens for on UDP and TCP port.
We have Customer table, the ...
1
vote
2answers
423 views
best practices for “data layer” in android client apps
Here is one design/ best practices question..
I'm new to android development, and basically new to web/mobile solutions.
So, my question is - what are best practices when organizing structure of ...
0
votes
1answer
20 views
Where is it better to validate owner of some document?
We have a WCF-service with a method that, for example, cancels an order by given id.
This method can be called from the web by any user of our site.
Somewhere inside this method we have to check that ...
0
votes
1answer
688 views
Template mobile application (Android & iOS ) design
I need create many similar simple applications (Android and iOS) that consist of four tabs, each tab contains listview but it must be offline.
The difference between the apps will be only the content ...
3
votes
1answer
122 views
Database design for records with different sets of fields
Question
1) I'm looking for an appropriate way to design a web application, and specifically the database schema, so that I can have a base table with all the core fields for a given service, and ...
1
vote
1answer
114 views
Buyer and Seller badge assignment module database design
I am developing a B2B trading application, it has buyers and suppliers for various products.
I am trying to develop a "badge assignment module" that will be used to assign badges through admin panel ...
3
votes
3answers
177 views
PHP Objects - Patterns and correct usage
I'm just wondering if someone can help me understand how to make the best use of objects in PHP.
My understanding of a PHP object is that is should represent an entity, providing methods to get and ...
1
vote
2answers
94 views
How to implement specialized event handlers?
I am writing a diagram editor application for state machine representation. I have two interaction tools that operate on the canvas and the diagram. The first one is called "Edit Tool" and is ...
1
vote
3answers
71 views
Is it better to work directly with files or Store all contents of files into memory and edit the data from there? [closed]
I'm currently working on a todolist system that acts like a calendar to store your Tasks and can check them off once you are done with it. We should also be able to undo our changes made.
Currently, ...
0
votes
1answer
94 views
Where to store business values in .NET - SQL Server applications
This has always been an chicken and egg problem among developers. Where do you store business values that are used within your application rules. (In either ASP.NET, Window Forms or any data-driven ...
0
votes
5answers
136 views
What are the symptomps of tightly coupled objects? [closed]
When designing an application, when do you know that your objects are tightly coupled? What are the symptomps of tightly coupled objects/codes?
0
votes
0answers
126 views
Desktop Mail Client and Push Mail
Does any one know how to get Push mail notification from Yahoo! IMAP mail server ?
Gmail IMAP server supports IDLE command I am using it for new mail notification AOL mail also supports IDLE command ...
0
votes
0answers
219 views
Where to draw the line between business logic and data access layer logic
The below Select statement lives in my data access layer a c# class:
SELECT PreCondition, TestInstruction, ExpectedResult, ErrorText, TestState, TS.TeststepId, TS.CreatedAt FROM Unit U INNER JOIN ...
8
votes
3answers
116 views
Is this a valid use case for javascript closure?
I have looked through all the other (excellent) answers on SO (especially this: How do JavaScript closures work?) but I wanted your feedback on my understanding of the concept.
I understand that one ...
1
vote
3answers
279 views
Designing multi module Java EE application
Might be my question is abstract or out of context, but i am asking here since i have little idea how this happens.
I am wondering how big application/ platform break down there application in to ...
3
votes
3answers
2k views
Is DTO pattern deprecated or not?
In a complete Java EE application that's clustered is the DTO pattern still a valid option? The application in question uses EJBs Hibernate and Struts with Spring etc. Is there anything wrong with ...
1
vote
1answer
145 views
(JavaScript+Java+Rest) application design approach
I am working with a new framework called "Play! Framework" which follows MVC pattern.
My web application has java model and controller classes and (html+javascript) at view layer.
Also we don't have ...
0
votes
2answers
125 views
Application User Authentication
I have a question about user authentication when developing an iOS application. When the user launches the application, they will be prompted with the home screen which will prompt them to input a ...
0
votes
1answer
38 views
Class hierarhy solution
I have Activity class, ListActivity class, TabActivity class. I want expand these classes using the same functionality. For example add method toDoSomething() into each of them. It is impossible to ...
1
vote
1answer
43 views
Get win-loss for each team in Teams table using Games table?
Im creating an app using RoR to manage a basketball league. I have two tables: Teams & Games. The Games table takes two teams using foreign keys and contains the amount scored by each team like ...
1
vote
1answer
44 views
Solid language/framework for this app
I am wanting to build a web based file archiving tracking app and would like some feedback on how would be the best way to build it.
I am trying to build web based file archiving app (like Apple ...
2
votes
1answer
372 views
Designing web application: Session or Sessionless
I wanted others to explain me, which approach is better - using a session or design it sessionless. We are starting development of a new web application and didn't decided what path to follow.
...
0
votes
0answers
139 views
Application design in Python with no ORM
I'm new to Python.
I need to develop an application using Python, this application heavy use database and complicated queries so it is no an option to use an ORM.
I need to do unit testing and I'm ...
0
votes
1answer
268 views
Application Design - Pop up authentication with MVVM
This questions is not really about code but application design.
I have an app that needs authentication, to do that I have a pop up that appears on the main page when the user is not logged in.
My ...
0
votes
0answers
38 views
Mixing user's freedom and applications context [closed]
i'll try to be succinct with this.
i'm creating an app that allows you to challenge other users to do things. i could challenge you to squat 315 pounds. i could challenge you to squat 315 for 5 reps. ...
0
votes
3answers
175 views
Application design, global image collection
We have an application, n-tier like structured, but I wouldn't say it's n-tiered.
The top most Form /AKA MainForm/ connects to a DB and gets a list of available modules, according to which it starts ...
0
votes
0answers
117 views
Best Practices, Should parent object in initialize with each child object in list collection or only once?
I want to insert bulk records(multiple cities) in Database,Assume country is always same in list object(list of cities).
My Question is Should I initialize country instance with index 0 city or set ...
2
votes
4answers
97 views
Best Practices, same functionality from 1 method and also from 2 methods
I have following scenario.
Some people use approach 1 and some use approach 2.
Both approaches have same functionality lock or unlock news against news id in news table.
what you suggest,which one is ...
2
votes
1answer
145 views
Deciding user class place in the application
I quite not sure about how it all should work. So I have an aggregate in my domain model (Post->Feedbacks;Post->Category). And I've been thinking about place of User class. My first thought was to ...
0
votes
1answer
252 views
Where should I write the business logic? In the front end (business layer) or in a stored procedure?
I am writing an ASP.NET application with a SQLServer database in which I have to calculate rates for members of my application. These calculations affect more than 10 database tables.
I believe I ...
2
votes
2answers
78 views
How to handle lots of application resources in .net application?
I'm developing a wpf app which contains a dashboard with buttons ordered by category. Each button opens a resource, this can be a PDF, a video, etc. In total there are 12 categories with 60 subjects ...
-1
votes
1answer
162 views
Implementing a simple review database/application scheme
I'm new to web development and database design, and I'm kind of stumped as how to best accomplish a simple review system for items.
In the current database schema I have a table, call it tbl_item, ...
1
vote
3answers
541 views
Change color of only the label for TextField in Blackberry
I am trying to a add a TextField. I am using
EditField _textBox = new EditField("Subject", "Some text"); for creating a textbox with label as Subject. I want to change the color of only the ...
1
vote
2answers
774 views
disadvantage of using web services for business layer and data access layer?
for web based business application, is it good to develop business layer, data access layer using web service? what are the disadvantages?
UI Layer (ASp.Net) --> Business Layer (WCF Web service) ...
0
votes
2answers
771 views
Ribbon menu in Android app
I want to use ribbon menu(as on Microsoft Word 2007 or 10) in my android application. Anyone have any suggestions? If it impossible to implement, may be anyone have other ideas how to implement ...
1
vote
4answers
331 views
Storing global immutable data in static classes
I have a WinForms project, which uses a lot of user controls. Some of these user controls use classes from business logic layer. These classes are mainly performing CRUD operation to a database ...
2
votes
1answer
69 views
Rails best practices to build activable (or not) features?
OK let's assume I have an awesome looking rails app with somes Posts, which can be commented and voted on. It's online and people love it.
Now imagine a client comes up and tells me "Hey, this app ...
0
votes
1answer
256 views
Need visual application development tool for complex many-to-many and hierarchical relationships
I'm looking for a visual database application development tool (GUI based, or script) that we can use to develop an application that takes a set of text and numeric fields through a series of ...



