• 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

how to make a jsp page available on my website

 
Greenhorn
Posts: 25
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i have a website of my own on aome remote server i.e. a machine. now i want to add a jsp page to that wesite so that people can access to that page from anywhere. how do i do tat. i tried normal uploading but that doesnt work. so what is the wat by which this can be done.
 
Ranch Hand
Posts: 59
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Are you sure your provider supports JSP? If he does, try to figure out how to deploy the JSP in his special environment.
 
Ranch Hand
Posts: 308
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
To have JSP page available you need to have jvm, servlet container and JSP engine. A J2EE compliant application server will provide all these.

If only a web server is provided you can't do this?

I am not sure whether any webserver available in market is compliant with j2ee. The IIS web server can be used with ASP.

In addition to the J2EE compliance you may need database access, access to shared libraries, public and private security etc.

There are some linux/ unix shops which provide you such memberships on an yearly/monthly basis.
 
reply
    Bookmark Topic Watch Topic
  • New Topic