suseela pennaluru

Greenhorn
+ Follow
since Jan 27, 2006
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by suseela pennaluru

when I saved date.jsp,in the file name itself it was showing date.jsp.
17 years ago
JSP
Hi all,
I am able to run the JSP now.it was problem with the JSP file.
I have corrected and ran again.
The JSP deployment on Tomcat is successfull now.
Thanks a lot
17 years ago
JSP
I have added the web.xml under C:\Tomcat 4.1\webapps\jspproj\WEB-INF\web.xml as above in the reply.

I have restarted the Tomcat server.
but I am getting the same error again

HTTP Status 404 - /date.jsp

--------------------------------------------------------------------------------

type Status report

message /date.jsp

description The requested resource (/date.jsp) is not available.


--------------------------------------------------------------------------------

Apache Tomcat/4.1.36


some where I read in web application deployment that we need to change the C:\Tomcat 4.1\conf\server.xml

<Context path="" docBase="" debug="0"

Is it something to do with above context path?
17 years ago
JSP
Here is date.jsp

<HTML>
<HEAD>
<TITLE>JSP Example</TITLE>
</HEAD>
<BODY BGCOLOR="ffffcc">
<CENTER>
<H2>Date and Time</H2>
<%
java.util.Date today = new java.util.Date();
out.println("Today's date is: "+today);
%>
</CENTER>
</BODY>
</HTML>

I tried copying the date.jsp to C:\Tomcat 4.1\webapps\ROOT\jspproj

and tried to access JSP from this url:http://localhost:8080/jspproj/date.jsp

but I am getting the error below

HTTP Status 404 - /date.jsp

--------------------------------------------------------------------------------

type Status report

message /date.jsp

description The requested resource (/date.jsp) is not available.


--------------------------------------------------------------------------------

Apache Tomcat/4.1.36


When I gave the url http://localhost:8080/.It is displaying tomcat home page.that is index.jsp
17 years ago
JSP
I have renamed the folder to jspproj(lowercase)

Error Message is below.

HTTP Status 404 - /jspproj/date.jsp

--------------------------------------------------------------------------------

type Status report

message /jspproj/date.jsp

description The requested resource (/jspproj/date.jsp) is not available.


--------------------------------------------------------------------------------

Apache Tomcat/4.1.36
17 years ago
JSP
So the date.jsp has to be under
C:\Tomcat 4.1\webapps\JspProj\WEB-INF\date.jsp
or
C:\Tomcat 4.1\webapps\JspProj\date.jsp

which one is correct.I tried both the ways.
but i got the same error "The requested resource (/JspProj/date.jsp) is not available."

whenever I made change ,I do restart Container.
17 years ago
JSP
I have removed WEB-INF folder and
I placed date.jsp under C:\Tomcat 4.1\webapps\JspProj\date.jsp
17 years ago
JSP
I a m accessing the JSP page from the below link http://localhost:8080/JspProj/date.jsp
17 years ago
JSP
Thank you Christophe Verre.
I have tried placing date.jsp under C:\Tomcat 4.1\webapps\JspProj\date.jsp.
even though I am getting the same error "The requested resource (/JspProj/date.jsp) is not available."
17 years ago
JSP
Hi,
I have a date.jsp which will return todays date.
I have deployed this date.jsp under C:\Tomcat 4.1\webapps\JspProj\WEB-INF\date.jsp
but i m getting the error "The requested resource (/date.jsp) is not available."

I tried placing the date.jsp in C:\Tomcat 4.1\webapps\JspProj\WEB-INF\classes\date.jsp.
this also did not work.
please hepl me.
thanks in advance
suseela
17 years ago
JSP
Hi,
I have a doubt like,
is it compulsory to complete SCJA before we take SCJP exam?

Thanks in advance
suseela
18 years ago
Hi Praveen,
recently u hv taken exam.ok fine could u suggest how to prepare and what is pattern? is that programmer certification?

thanks in advance
suseela
Hi,
i heard about JDEdwards few days back.
is JD Edwards java related technology r wat?
can anyone let me know what for we use that..
thanks in advance.
18 years ago
Hi Everyone....

I have to make an editable selectOneMenu so that the user can actually write inside the menu (combobox).

Will i have to make a custom component? If so, how will i do that? I found tutorials where thecomponent class was inherited from UIInput but i have to make a selectOneMenu.

Help and Tutorials will be greatly appreciated.

Thanks in advance
18 years ago
JSF