actually i am using NetBeans 6.5 IDE in my web based projects. whatever i make (servlet or jsp ), in my web.xml there i found a new entry for servlet.
but i still confused that what is the actual use of this two xml files.how can i utilize these files?, can we customize these files?if yes then why and how???
please guide me...
Jeanne Boyarsky wrote:In a nutshell:
The web.xml is for application configuration. The context.xml is for environment configuration.
context.xml is the environment file made by the Netbeans IDE and varies from project to project, basically it has all links and configuration needed for eachtime you reload the project in netBeans
Regards, Atul.
I came to this world on a Learner's License
sourabh kanoongo
Greenhorn
Joined: Nov 23, 2010
Posts: 10
posted
0
thanks Atul
sourabh kanoongo
Greenhorn
Joined: Nov 23, 2010
Posts: 10
posted
0
i am developing a small simple project in struts framework.
in which a accept a roll no from user and display result..
for displaying i have two jsp(pass.jsp and fail.jsp)
one struts action (ResultGenAction.java)
one strutsformBean(ResultGenBean.java)
bean fetches marks from database acctording to rollno given be user and sends a boolean value true and false showing pass or fail.
if pass then view should be pass.jsp.
if fail then view should be fail.jsp.
i have made forward entries in struts-config file..
as:-
<action input="/" name="ResultGenBean" path="/EnterRoll.jsp" scope="request" type="Result.ResultGenAction" validate="false">
<forward name="p" path="/WEB-INF/pass.jsp"/>
<forward name="f" path="/WEB-INF/fail.jsp"/>
</action>
when i enter roll no for example 101 which is available in database and it is pass,but i get a blank response instead of a full marksheet through pass.jsp
same for all roll nos....it is not working
Any path under WEB-INF is inaccessible to external web browsers. This is why it is a secure place for us to put our configuration files, class files and library dependencies.