Click here to Skip to main content
15,919,132 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: Web development and so-called modern frameworks Pin
RickZeeland7-Feb-19 6:55
mveRickZeeland7-Feb-19 6:55 
GeneralRe: Web development and so-called modern frameworks Pin
Asday7-Feb-19 20:10
Asday7-Feb-19 20:10 
GeneralRe: Web development and so-called modern frameworks Pin
BryanFazekas8-Feb-19 1:24
BryanFazekas8-Feb-19 1:24 
GeneralRe: Web development and so-called modern frameworks Pin
Peter Shaw8-Feb-19 1:56
professionalPeter Shaw8-Feb-19 1:56 
GeneralRe: Web development and so-called modern frameworks Pin
Thornik8-Feb-19 5:06
Thornik8-Feb-19 5:06 
GeneralRe: Web development and so-called modern frameworks Pin
Steve Naidamast8-Feb-19 6:32
professionalSteve Naidamast8-Feb-19 6:32 
GeneralRe: Web development and so-called modern frameworks Pin
Thornik8-Feb-19 23:54
Thornik8-Feb-19 23:54 
GeneralRe: Web development and so-called modern frameworks Pin
Steve Naidamast9-Feb-19 5:32
professionalSteve Naidamast9-Feb-19 5:32 
Hi Thornik...

To answer your question about client-server, it is mostly about not needing an application server as the web requires. Also, client-server systems are often closed-loop systems as a result of the fact that only a limited group of people would use these systems. This group could be as large as several thousand people or only a few. However, in all cases, such systems will be accessed only from within an institution and would not be available for public use, which is the main advantage of web development.

In terms of an application server as it is viewed from a web development perspective, it is quite different in the client-server model as multiple such servers could exist based upon the number of physical tiers one wants to develop.

Therefore, you would have an interface tier, which would primarily be a thin-client in Windows or WPF whose only function would be to retrieve and display data. A business-logic tier that would support all of the application's functionality as it relates to the handling of data, a data-access tier that would house a data-access-layer that would do the actual retrieval and updating of data, and finally the database tier where the database engine is run and maintains the data stores.

Such a topology has been proven over the years to be highly efficient. And the more users that need access to the system, the more tiered servers you could add, making efficiency and performance a completely hardware-based construct.

Because everything is developed with a minimum of technologies (ie: languages for example; you only need your development language of choice and your database language (SQL)), complexity is substantially reduced.

Web development was originally supposed to be based off of such a technology model but organizations became very complacent and lazy in terms of their architectures whereby you had the browser interface, an application server that handled literally everything and a database engine.

Some organizations did follow the client-server model but not many which gave rise to performance issues. As a result, technology elites and evangelists who were always promoting the latest and greatest tools and technologies decided that everything could be made more efficient through code. Thus, ASP.NET WebForms was derided based on claims about it that, though true, were not true to the extent that the platform was of no value any longer. However, that was the plan; get rid of WebForms (which was actually based upon the client-server model) and force developers to use far more complexity than was required based upon the false assumption that efficiency was code-based. It is not...

On Java, well this environment was also designed around the client-server model in somewhat of a similar fashion to that of WebForms (However, its comparable equivalent was that of Java Servlets top an extent), though it was always based upon the MVC paradigm. Besides the complexities of the Java Language itself, its MVC paradigm was also a contributing factor to the inherent Java environment complexity. Finally, the Java technologies were designed specifically for large-scale environments where it is basically found its niche.

To some extent it was believed that if Microsoft development mimicked Java development it too could handle large-scale systems. But here too a myth was developed. The Micrososft Community already had the Java-like MVC paradigm in the third-party's Castle project's MonoRails System, which was completely free for anyone to use. However, the technical community really had no interest in it until Microsoft started promoting the MVC paradigm itself.

Efficiency in any type of distributed system is first, always based upon hardware configurations. Second, efficiency in such systems is based upon concurrency (number of users able to access a system comfortably), not speed. If you require more efficiency, you simply build out your hardware tiers horizontally.

A former Silicon Valley systems engineer wrote a book that described how to create blistering fast ASP.NET WebForms applications. I read through the entire book and practically over 95% of the recommendations were all hardware and configuration based. Very little had to do with coding technologies.

However, corporations did not want to spend monies on efficiency so technology evangelists convinced them that such efficiency can be attained through the use of a different form of web development, which is now primarily the MVC paradigm.

We very senior personnel could not see this as a viable solution as it for one, added a tremendous amount of complexity to the development process which consequently made technical personnel less efficient at their jobs. But of course you always had that know-it-all manager that could tell you that it was not the technologies that were the problem but the personnel implementing them.

All of this was well known in the 1990s before things got to their current state. Reports and analysis by hardware engineers and system-based software engineers were made available for anyone to understand this. However, if money wasn't there for hardware it could then be supplemented through the use of Open Source and other avenues of software procurement.

Everything is thus interconnected as a result of management stupidity and technical agendas, neither of which serve the best interests of a company. But no one really cares about that except for the honorable people who work in companies.

In general, the majority of applications today can be based upon the closed-loop architecture of the original client-server tiered model of development. But hey, that is not cool. Everything has to be thrown on to the Internet or Intranet with the idea that it is much simpler to deploy, compared to client-server applications. This may have been true years ago but today the web implementation has become so complex that the single deployment of an application on a server for the web no longer is a viable argument for its use...
Steve Naidamast
Sr. Software Engineer
Black Falcon Software, Inc.
blackfalconsoftware@outlook.com

GeneralRe: Web development and so-called modern frameworks Pin
Steve Naidamast8-Feb-19 6:29
professionalSteve Naidamast8-Feb-19 6:29 
GeneralRe: Web development and so-called modern frameworks Pin
Leng Vang8-Feb-19 6:36
Leng Vang8-Feb-19 6:36 
GeneralRe: Web development and so-called modern frameworks Pin
MSBassSinger8-Feb-19 7:27
professionalMSBassSinger8-Feb-19 7:27 
GeneralMM CCC OTD Pin
Pete O'Hanlon7-Feb-19 0:17
mvePete O'Hanlon7-Feb-19 0:17 
GeneralRe: MM CCC OTD Pin
OriginalGriff7-Feb-19 0:39
mveOriginalGriff7-Feb-19 0:39 
GeneralRe: MM CCC OTD Pin
PeejayAdams7-Feb-19 0:48
PeejayAdams7-Feb-19 0:48 
GeneralRe: MM CCC OTD Pin
Pete O'Hanlon7-Feb-19 0:50
mvePete O'Hanlon7-Feb-19 0:50 
GeneralRe: MM CCC OTD Pin
Johnny J.7-Feb-19 5:18
professionalJohnny J.7-Feb-19 5:18 
JokeRe: MM CCC OTD Pin
Pete O'Hanlon7-Feb-19 5:29
mvePete O'Hanlon7-Feb-19 5:29 
GeneralRe: MM CCC OTD Pin
Jim Meadors7-Feb-19 5:21
Jim Meadors7-Feb-19 5:21 
GeneralRe: MM CCC OTD Pin
Michael Martin7-Feb-19 9:54
professionalMichael Martin7-Feb-19 9:54 
GeneralOi! Agent__007! Where's the CCC? Pin
OriginalGriff7-Feb-19 0:00
mveOriginalGriff7-Feb-19 0:00 
GeneralRe: Oi! Agent__007! Where's the CCC? Pin
Sander Rossel7-Feb-19 0:09
professionalSander Rossel7-Feb-19 0:09 
AnswerRe: Oi! Agent__007! Where's the CCC? Pin
megaadam7-Feb-19 0:31
professionalmegaadam7-Feb-19 0:31 
QuestionIt's 2019 Pin
Nand326-Feb-19 23:29
Nand326-Feb-19 23:29 
AnswerRe: It's 2019 Pin
GKP19926-Feb-19 23:47
professionalGKP19926-Feb-19 23:47 
GeneralRe: It's 2019 Pin
Mark_Wallace6-Feb-19 23:49
Mark_Wallace6-Feb-19 23:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.