• 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

Page cannot be displayed error while calling JSP

 
Ranch Hand
Posts: 68
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Experts,

I tried to call my JSP page (JSP page 1) named as treeView.jsp rendering a folder structure from another jsp page(JSP page 2) on a button click action. My servlet is forwarding the request to the second JSP page JSP page 2. So on click of the button Load tree 1 the JSP page 1 should be called and it should render the folder structure but it is not happening at the moment. I got page cannot be displayed error message .

Please correct me if I am doing something wrong in the below syntax?


 
Sheriff
Posts: 67746
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
The URL should be a server-relative URL. See the JSP and Servlets FAQ pages.
 
reply
    Bookmark Topic Watch Topic
  • New Topic