473,770 Members | 6,952 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Application architecture, how to go about it

Hello,

I have arrived at quite an architectural challenge.

I am at the verge of deciding to rewrite a large application written
in C++ with MFC. I am quite sure we will switch to C# language on the
..NET platform. Second choice, but unlikely, is Java. Because I am not
very experienced with architectural choices and have little experience
yet, and because I just want to know which choices there are, I post
it here in this group.

The application has the following concept:

- Windows main application: MDI user interface. Uses all following
components.
- Component: database access to store documents data
- Component: store data to binary file instead of database
- Component: data (document), large in size and complex in structure;
a document employs one of several different models, one component for
each type of model; code specific to maintain / access data resides in
the respective model type component (including media storage)
- Component: analysis of document of particular data model (one
analysis component specific to each model); storage of the analysis
data.
- Component: optimisation of document of particular data model (one
component specific to each model); storage of the optimised data;
component uses (data from) analysis component
- Component: visualisation; one component for eg. 2D visualisation,
one for 3D, etc. (Q: How can a component handle user interaction
specific to its respective visualisation type?)

I want this application to work on component "plug in" basis. I want
to be able to choose which components to incorporate in the app at
build time. Later on maybe also on run time.

Can anyone comment on this, maybe recommend a (practical, language
specific) book or a project that can serve as an example? What kind of
(binary) components to use, DLL's? What kind of interfaces? Which
methods have proven in past projects?

Thank you,

K.
Nov 16 '05 #1
1 1042
Go to http://msdn.microsoft.com and look for the
architecture and best practices documents.

--
<%= Clinton Gallagher, "Twice the Results -- Half the Cost"
Architectural & e-Business Consulting -- Software Development
NET cs*********@REM OVETHISTEXTmetr omilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/

"Ectoplasma " <e_*****@hotmai l.com> wrote in message
news:74******** *************** ***@posting.goo gle.com...
Hello,

I have arrived at quite an architectural challenge.

I am at the verge of deciding to rewrite a large application written
in C++ with MFC. I am quite sure we will switch to C# language on the
.NET platform. Second choice, but unlikely, is Java. Because I am not
very experienced with architectural choices and have little experience
yet, and because I just want to know which choices there are, I post
it here in this group.

The application has the following concept:

- Windows main application: MDI user interface. Uses all following
components.
- Component: database access to store documents data
- Component: store data to binary file instead of database
- Component: data (document), large in size and complex in structure;
a document employs one of several different models, one component for
each type of model; code specific to maintain / access data resides in
the respective model type component (including media storage)
- Component: analysis of document of particular data model (one
analysis component specific to each model); storage of the analysis
data.
- Component: optimisation of document of particular data model (one
component specific to each model); storage of the optimised data;
component uses (data from) analysis component
- Component: visualisation; one component for eg. 2D visualisation,
one for 3D, etc. (Q: How can a component handle user interaction
specific to its respective visualisation type?)

I want this application to work on component "plug in" basis. I want
to be able to choose which components to incorporate in the app at
build time. Later on maybe also on run time.

Can anyone comment on this, maybe recommend a (practical, language
specific) book or a project that can serve as an example? What kind of
(binary) components to use, DLL's? What kind of interfaces? Which
methods have proven in past projects?

Thank you,

K.

Nov 16 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

21
3465
by: Lasher | last post by:
Hi, I have clients using an application that allows users to change their passwords. The application uses the 'ALTER USER xxx IDENTIFIED BY.....' command. What I need to do is use Oracle to capture the username and password and send the info to another Oracle instance on a different server and update that users password. Basically I need to keep the user's password in sync between two different databases.
1
355
by: Vin | last post by:
Hi, I've got a VB.Net + ASP.Netmessage board application which has already been customized. There are two solutions in this application. 1. The front end aspx, aspx.vb files, User controls solution 2. A components solution which has .vb files which have the code to call inserts, updates, deletes to the database (SQL server 2000) Its much like the available general ASP.Netmessage board. Only a bit customized. Right now a simple...
6
1918
by: Jay Douglas | last post by:
Greetings, I'm hoping somebody can help me come up with a quick software architecture solution to address the following issue: I need to come up with an Winforms (or something similar) application that multiple users will use over a network. I would like the client machines to actually use an application that sits on a master server (without using terminal services) .. The reason I would like to use this type of set up is for easy...
1
1237
by: epigram | last post by:
I'm creating a data-centric asp.net application that will be using SQL Server 2000. I'm looking for some articles, design tips, etc. to help me decide how I should design my application. I realize this is an obtuse request, but I just want to follow some best practices. Most of the examples I see have a micro focus on one particular aspect or another of technologies used in an asp.net application. If I simply aggragate all of those...
2
2086
by: Mahesh Kumar.R | last post by:
I'm into designing an application in winforms but in near future my client may request the same thing in webforms. so (1) what are all the design guidelines and ways are there to migrate easily in future (winforms -> weforms)...? (2) how can i design my application which can be accessed in both winforms and webforms by not writing much of code for the same business logic. ? (3) which is the cost effective method ? Please guide me to...
22
6287
by: Jordan S. | last post by:
SQL Server will be used as the back-end database to a non trivial client application. In question is the choice of client application: I need to be able to speak intelligently about when one client (MS Access vs ..NET Windows Forms) would be preferred over the other. While I have some good arguments on both sides, I would appreciate your points of view on the topic.
7
25721
by: Vincent Delporte | last post by:
Hello I'm interested in hearing reflections by seasoned web app developpers about the different ways to write PHP apps, and especially how they compare in terms of performance, whether it's the PHP part or connections to MySQL. As far as I know, there are different ways to write a PHP application: - CGI, ie. the usual way : some PHP code in web pages, and the PHP interpreter is loaded each time a PHP page is called
0
1509
by: jehugaleahsa | last post by:
On Jun 13, 3:09 pm, "Bob Powell " <b...@spamkillerbobpowell.net> wrote: I apologize for the size. I should have probably put this on a blog or something. I'm not interested in tools. I interested in concepts / better ways of handling day-to-day design decisions.
1
2342
by: abhijitbkulkarni | last post by:
Hello, I am designing a .NET database application that uses 3 tier architecture. Starting initially, this application will be desktop application but I will convert it into a website later but design that I am planning should support both version. Development Environment : VS2008, C# Currently Database supported are MS SQL Server 2005 and MYSQL 5 and design for database support is extensible. This application contains several high...
0
9592
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9425
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10230
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10058
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9870
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
5313
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5450
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3576
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2817
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.