How to call a jsp file ,that exist in WEB-INF directory?

Showing Answers 1 - 4 of 4 Answers

Sharad Chandra

  • Apr 13th, 2006
 

You can call the JSp file that exists within WEB-INF folder through jsp forward

  Was this answer useful?  Yes

Praveen Rastogi

  • Apr 17th, 2006
 

I think it is wrong .if it is right so plz tell me the syntax for this

  Was this answer useful?  Yes

sekhar

  • Apr 27th, 2006
 

we can call a jsp page that is presnt in web-inf.we can call a jsp page like a servlet.for that we have to configure web.xml like this.

<jsp>

<jsp-name>name<jsp-name>

<jsp-class>some.jsp</jsp-class>

</jsp>

<jsp-mapping>

<jsp-name>name</jsp-name>

<url-pattern>some</url-pattern>

</jsp-pattern>

like a servlet we can call a jsp that is present in  web-inf

  Was this answer useful?  Yes

Praveen Rastogi

  • Jun 22nd, 2006
 

Thanks shekher

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions