Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Windows Application vs Web Application development

Just trying to get a more thorough understanding of the major differences between windows(desktop) application and web application development. All my knowledge and experience has been as a web application developer, with c# and the .net framework. I am interested to know if it's common for developers to be skilled in both areas, i.e. WPF(desktop) development.

Does windows application development follow different methodologies, testing methodologies etc? When I think of things like installing a windows app, and users who install applications to use, also thinking about how the software is updated, it seems that the processes involved in this type of development are alot more structured and have "less room for error".

Do you think that someone who has had no WPF experience, or windows app experience, but has a .net background, have enough knowledge to confidently design and develop a WPF application (as a team lead), or that if a project of that nature comes along, then someone who has that experience in delivering a WPF app shoudl be sought after?

like image 422
mickyjtwin Avatar asked Sep 29 '09 11:09

mickyjtwin


People also ask

Which is better web application or Windows application?

Windows application is easy to build as compared to the Web application. The web application is difficult to build as compared to the Windows application. 4. This application can be directly executed using the operating system on the system.

What is the difference between application and web application?

The difference is that a web application will reside in the server instead of the client's computer and will process everything in the server - but , the control of the program is left for the client. A good example for a web application is this site.

Is computer application and web application same?

The difference in desktop and web applications is explained in a very simple manner. Desktop application is a computer program that runs locally on a computer device like a desktop or a laptop whereas a web application needs an internet connection or some sort of network to work properly.

Will web applications replace PC applications?

Therefore, typical web applications won't replace terminal applications, utility programs, daemon services, file managers, text editors, etc. However, frameworks like Neutralinojs let developers go over the browser sandbox. Therefore, developers will be able to make web applications (or PWAs) with any native operation.


1 Answers

I've worked in both and in terms of richness and development time WinForms blows Web out of the water, especially since technologies like ClickOnce greatly reduce deployment headaches. With winforms you only have to code against the platform and not take into consideration a huge number of other factors.

The whole request/response is usually, IMO cumbersome and sometimes unreliable, not to mention the growing number of browsers to support, varying standards to development and the learning curve of the page lifecycle, oh and of course the increasing trend of advertising splashed all over the place.

However, what web apps have brought us is beyond what WinForms could hope to achieve, so although there's a learning curve and increased development time there are obvious rewards to reap.

We (and I imagine most organistions) tend to use windows applications for administration purposes where a rich user interface is desirable in the minimal amount of time, after all, why would you want to waste a web servers resources when there's probably 99% available CPU on each users PC...?

like image 175
Mantorok Avatar answered Oct 21 '22 19:10

Mantorok