Nitin Barhanpurkar

Greenhorn
+ Follow
since Apr 01, 2003
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Nitin Barhanpurkar

JSP
If its a compile time error, the browser will display this sort of message :
"Unable to compile class for JSP"
20 years ago
JSP
I have faced similar type of problems in past, root cause being different.
Please make a fresh Tomcat installation, and without deploying any code of yours, start the Tomcat. If it starts, problem could be in your code.
20 years ago
By default its not present, add the following line :
SET CATALINA_OPTS=-Xms128m -Xmx256m
Ensure that it is not in a loop.
20 years ago
Try using package.
20 years ago
Hi,
Can any one please guide me how i can run Tomcat4.1.18 as a service on Unix machine.
Regards,
Nitin B.
20 years ago
I had a similar type of scenario. So I created an intermediate jsp file which will store various values. On submitting each page, this intermediate jsp page is called & the values are stored in variables. Now when Save is clicked on the last page all the data in the variables are stored in the database.
21 years ago
JSP
Create a Date object(without parameters) and then use the getYear method. Add 1900 to this value, will get the current year.
21 years ago
JSP