Nilesh Shekokar

Greenhorn
+ Follow
since May 02, 2006
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 Nilesh Shekokar

Dan, there were 5 questions on EL and on filters exam only test the knowledge about how filter execution happens.
yes Asif,
They will tell you to choose number of questions like Choose one, Choose two...
Yeah!!!

Hi All,

Yesterday I have cleared SCWCD 1.4 with 91%
It was very easy...

I was preparing from last 1 month.
I have referred HFSJ and Enthuware mock Tests

Best of luck for all who are preparing...
When we say ${param[name]}
the name attribute name must be available in scope.
like request.setAttribute("name", "name");

thanks,
Nilesh
No! its not there...
see the objectives: only attributes id, scope, type, class are on the exam.

Thanks,
Nilesh.
SCJP 1.5
SCWCD prep.
Hi Manish,

Congrats Man!!!
Best of luck for the Next Exam.

Nilesh
SCJP 1.5
SCWCD(Preparing..)
Hi all

i am using WebSphere Studio Application Developer 5.1
Whenever i use to start it,its starting the javaw service
and that is taking too much CPU memory near abt 98%
So How can i solve the prblm??

Please reply soon.... Thanks in Advance
17 years ago
Hi all,

In my project there is a dofilter() method used in HibernateSessionFilter class. In too many classes the Hibernate currentSession() and beginTransaction() methods were called but session objects were not closed

As i know A filter is an object that performs filtering tasks on either the request to a resource (a servlet or static content), or on the response from a resource, or both.

The doFilter() also calls createSession() and closeSession()
So will it be necessary to close the session objects in those all classes or the filtering process will close the session automatically as it uses closeSession().

Please reply soon if anyone knows abt this....Thans in Advance
Hi all,
I wanted to know about the Hibernate Session Objects
In my project there are many Hibernate session objects created
for getting the connectoion. But they are not closed?
Are the objects Lightweight??
Because i am facing some memory consumption problem.The Hibernate objects
can be one of the issue.
So i wanted to know that should i close all the session objects??
If they are lightweight how much memory would they occupy?
Waiting for reply soon.

Thank you.
hi all,
i am using struts tags for jsp
like<html:text property="name">
i want to use the javascript for this form
in general we are using name ir id for getting the elements
but in these tags there is no name field
i found somewhere that i have to use the property for that
so can someone explain how can i use that
17 years ago
Hashtmap allows one null key and multiple null values
Hashtable cant allow anything that is null

and

It is given in the Enthuware simulator that
Hashset can allow null values!!!
is it correct??
hi Allen

This program will clarify that super() can have the arguments

class Dog extends Animal1
{
static String s="nms";
Dog()
{
super(s);
}
}

public class Animal1
{
Animal1(String name)
{
System.out.println(name);
}

public static void main(String args[])
{
Dog d=new Dog();
}
}