Amit Degavekar

Greenhorn
+ Follow
since Feb 27, 2004
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 Amit Degavekar

Hi,
I can tell you the scenario when we need to chane the JSESSIONID cooie name.
We have a weired application set up like a main application in which other application having different context opens as a TAB.
So 2 different applications runing within a same browser session.
We put IIS as proxy to route the request for both the applications.
IIS is pretty messy and changes the JSESSION when you switch between 2 applications. To overcome this problem we chane the cookie name in weblogic.xml for one application and it solved our issue.
15 years ago
Hi Pav,
The site for the Pete's notes doesn't exist any longer .
Please email me the stuff on amit.deg@gmail.com
Thanks
Hi,
Make sure JSTL.jar and standard.jar are in your classpath.
Add Taglib entry into your web.xml.
Let me know if you still face the same problem.
16 years ago
JSP
Hi you can always thro nullpointer explicitely by using throws clause.
Otherwise do siple step.
Set any object to null and call it's method.
e.g.
String str = null;
str.toString();
this line will throw NullPointerException

Cheers!
16 years ago
JSP