Advice on designing web application with a 40+ year lifetime

Posted by user2708395 on Programmers See other posts from Programmers or by user2708395
Published on 2013-10-28T15:11:12Z Indexed on 2013/10/28 16:14 UTC
Read the original article Hit count: 216

Scenario

Currently, I am apart of a health care project whose main requirement is to capture data with unknown attributes using user generated forms by health care providers. The second requirement is that data integrity is key and that the application will be used for 40+ years. We are currently migrating the client's data from the past 40 years from various sources (Paper, Excel, Access, etc...) to the database. Future requirements are:

  • Workflow management of forms
  • Schedule management of forms
  • Security/Role based management
  • Reporting engine
  • Mobile/Tablet support

Situation

Only 6 months in, the current (contracted) architect/senior programmer has taken the "fast" approach and has designed a poor system. The database is not normalized, the code is coupled, the tiers have no dedicated purpose and data is starting to go missing since he has designed some beans to perform "deletes" on the database. The code base is extremely bloated and there are jobs just to synchronize data since the database is not normalized. His approach has been to rely on backup jobs to restore missing data and doesn't seem to believe in re-factoring.

Having presented my findings to the PM, the architect will be removed when his contract ends. I have been given the task to re-architect this application. My team consists of me and one junior programmer. We have no other resources. We have been granted a 6-month requirement freeze in which we can focus on re-building this system.

I suggested using a CMS system like Drupal, but for policy reasons at the client's organization, the system must be built from scratch.

This is the first time that I will be designing a system with a 40+ lifespan. I have only worked on projects with 3-5 year lifespans, so this situation is very new, yet exciting.

Questions

  • What design considerations will make the system more "future proof"?
  • What experiences have you had in designing such systems - both failures and successes?
  • What questions should be asked to the client/PM to make the system more "future proof"?

© Programmers or respective owner

Related posts about design

Related posts about learning