• 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

Help me for java installer for web app

 
Greenhorn
Posts: 12
Firefox Browser
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Can we make .exe of (or java installer using the tools like install4j, izpack, advanced installer for java) java web application(like servlet, jsp)?. Please help me. If YES, how it works?. If NOT, WHY?.
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I think a better question would be: what are you trying to accomplish? Those installers are meant for desktop installations - it would be extremely unusual to use them for web apps.
 
Anil Kumar Goud
Greenhorn
Posts: 12
Firefox Browser
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Ulf Dittmer wrote:I think a better question would be: what are you trying to accomplish? Those installers are meant for desktop installations - it would be extremely unusual to use them for web apps.



ThnQ for reply,

I do agree with you.For a change, if i want run my web app like standalone app(instead of browser), how can i?
 
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
Then do not write it as a web app. Web apps are not intended to be run standalone. It's using hr wrong tool for the job.

I suppose you could write an installer that would install a servlet container such as Tomcat, and then your web app. But that all seems rather pointless.

Why do you want to write a desktop app as a web app if its a desktop app you want?
 
Anil Kumar Goud
Greenhorn
Posts: 12
Firefox Browser
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Bear Bibeault wrote:Then do not write it as a web app. Web apps are not intended to be run standalone. It's using hr wrong tool for the job.

I suppose you could write an installer that would install a servlet container such as Tomcat, and then your web app. But that all seems rather pointless.

Why do you want to write a desktop app as a web app if its a desktop app you want?



Just, i don't want to run my web app on browser, want to give new look like stand alone app. How can i achieve this?
 
Bear Bibeault
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
You can't. Web apps display their view in the browser. If you want a desktop app, write a desktop app.
 
Anil Kumar Goud
Greenhorn
Posts: 12
Firefox Browser
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Bear Bibeault wrote:You can't. Web apps display their view in the browser. If you want a desktop app, write a desktop app.



ThnQ for the reply.
 
reply
    Bookmark Topic Watch Topic
  • New Topic