• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Poll to help my decision...

 
Ranch Hand
Posts: 15304
6
Mac OS X IntelliJ IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have created a Help Desk application for my department where I work. Originially it was an applet. Then I made it into a Desktop app to lose the sandbox. Then, I decided to make it into a Web App to make updates easier on me. Over the course of the different development stages I think I have gotten a pretty good grasp of how a good Help Desk application ought to work. And now I want to take that knowledge and build a really nice Open Source App. The question is now:
1. Create a Swing Desktop App
2. Create a Web Application (JSP/Servlets, probably STRUTS)
If anyone could just voice their opinion as to which one and why they would prefer it that way, that would be great. Thanks.
 
Ranch Hand
Posts: 541
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i prefer web-apps because they don't require installation of anything client side (except a decent mozilla browser ) and so version control and patching isn't an issue and web app interfaces tend to be easier and more usable to everyone!
 
Sheriff
Posts: 67747
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If your app is easily expressable in the limited UI constructs available from the browsers, I'd go the web app route.
bear
 
Ranch Hand
Posts: 405
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I kind of like the Web application version better, because the help desk can be accessible by anyone who has an internet browser, for the most part. The standalone application you have to worry about the different variables of the installation of the application, on each persons PC i.e. what operating sysytem, the correct version of java, etc.
Just one of many opinions, I am sure.
Craig.
 
Gregg Bolinger
Ranch Hand
Posts: 15304
6
Mac OS X IntelliJ IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I wonder if I had asked this in the SWING forum if I would be getting different opinions.
I agree with all of the above statements. But I'm still not conviced either way. But since all so far are votes for Web Apps, I will play your advocate.
We can all agree that Web App UI's are somewhat limited. And that a SWING app could be have many more features than a typical Web App.
As far as updates are concerned, with the exception of minor patches, how often do your companies upgrade their applications to the newest versions, Web App or Desktop App? If they are anything like the company I work for, it's not very often if ever. If it aint broke....
Please keep the opinions comming though. I appreciate them.
 
Ranch Hand
Posts: 251
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Actually, if designed modularly enough, it could probably be done BOTH as a web app and a client/server app. I'm currently rolling my own web app framework (for the heck of it) that can (theoretically) be accessed from web pages or from a swing app and provide the same abilities. I'm only half done implementing the web app portion of it, so we'll see how well it's designed whenever I get around to developing the swing app for it
 
Ranch Hand
Posts: 168
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Gregg
I would also vote for web app, assuming you do not need a really rich user interface. Another reason I tend to prefer these, all other things being equal, is that it allows me to pool database connections in one place and have a bit more control over where and when the db gets accessed from.
Where I work we have some VB & Java fat client apps on desktops holding open lots of database connections unnecessarily. We have also found, as other people have already mentioned, that rolling out new releases and patches is a bit of a pain for the fat clients. Releasing to 160 desktops as opposed to one web server is definitely slower, more difficult, and more error prone, even if it only happens a couple of times a year.
Michael
 
Ranch Hand
Posts: 1561
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I think webapp is more accessible to users.
 
Ranch Hand
Posts: 312
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I feel web application is easy to made compared with applet/swings.
Even all the J2ee people will suggest the same. All web application servers are changing from swing format to web application format
I am not sure about the performance, but i observed that in Websphere application server 3.5(WAS3.5 is swing based),deploying a ejb took more time compared with current WAS 4.0(web application).
Regards,
M.S.Raman.
 
Author and all-around good cowpoke
Posts: 13078
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Its going to be a lot easier to add extra functionality to a web based system - images, video, sounds, URL links outside the system, etc. etc.
Bill
 
Listen. That's my theme music. That's how I know I'm a super hero. That, and this tiny ad told me:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic