Windows Application vs Web Application development
Asked Answered
A

5

10

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?

Aerification answered 29/9, 2009 at 11:52 Comment(0)
E
2

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...?

Emrich answered 22/10, 2009 at 15:46 Comment(0)
B
1

There are both differencies and similarities on many different levels, but one difference that I find to be of great importance is that of the request-based nature of web application versus the more stateful nature of windows applications. I have seen a few developers (mainly those moving in the opposite direction though) having a hard time to get their head around this.

Bencion answered 29/9, 2009 at 11:55 Comment(0)
A
1

I think that with any platform it's better to have a lead developer who has at least some experience with it. WPF is a relatively new platform, so a WPF-experienced lead developer would be harder to find.

As a web developer, you might actually do better with WPF than someone with WinForms experience, since you wouldn't be struggling with your preconceptions of how to best build a Windows application. A few years ago I took classes in Portuguese, and I found that I had a much easier time learning the language than the native Spanish speakers did. Because the two languages are so similar, they kept slipping back into Spanish.

Aeroballistics answered 29/9, 2009 at 13:11 Comment(0)
C
1

Web Application

  1. Web application or webapp is an application that is accessed via Web browser over a network such as the Internet or an intranet
  2. It is a computer software application that is coded in a browser-supported language (such as HTML, ASP, PHP, Perl, Python etc.) and reliant on a common web browser to render the application executable.
  3. Web applications are very much useful when they are hosted. Web app. can be access from anywhere in the world through the internet.
  4. Web application is tested mainly for browser compatibility and operating system compatibility, error handling, static pages, back-end testing and load testing.
  5. Web applications are programs that used to run inside some web server (e.g., IIS) to fulfill the user requests over the http.
  6. Common Web applications include Webmail, online retail sales, online auctions, wikis, discussion boards, Weblogs

Windows Application

  1. A program that is written to run under Microsoft's Windows operating system.
  2. Windows applications typically run under all 32-bit versions of Windows, but earlier applications might also run under the 16-bit versions (Windows 3.x) as well.
  3. runs on personal computers and work stations.
  4. window based app. need to be install on your machine to access.
  5. windows applications (desktop) need to be installed on each client's PC.
  6. Windows application runs faster than Web application.
  7. Windows application have many inbuilt classes in .Net compared to Web application.
Circumspect answered 13/8, 2014 at 9:19 Comment(0)
S
0

I don't have any WPF experience, but I'm good with WinForms and I've done some web apps as well.

The biggest difference between the two, in my experience, is knowing how a Form's lifecycle works, and being able to distinguish identical terminology with different meanings (i.e., the Form Unload event). I found this really confusing coming from a WinForms background.

Sanitarium answered 29/9, 2009 at 13:22 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.