Sunny Kiran

Greenhorn
+ Follow
since Mar 31, 2005
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 Sunny Kiran

Hi all,

I am planning to write SCJP 5.0 in the next 3 months. And I observed on sun site that SCJP 6.0 is also available. Could you please tell me what is the difference (in terms of exam) between these two? Shall I go for SCJP 6.0 instead of SCJP 5.0?

Thanks in advance.
Kiran
Hi all,

I am planning to write SCJP 5.0 in the next 3 months. And I observed on sun site that SCJP 6.0 is also available. Could you please tell me what is the difference (in terms of exam) between these two? Shall I go for SCJP 6.0 instead of SCJP 5.0?

Thanks in advance.
[ March 03, 2008: Message edited by: Sunny Kiran ]
16 years ago
I heared that SCJA is required for SCJP. Is that true? if it is true, when it is coming into effect?

Thanks in Advance.
Dear All,

I want to know is there any magazine particularly for java/j2ee? , which discuss latest java updations...
18 years ago
Thanks Tanase,

Ok, I will explain you clearly. I have a RequestId which is genarated each time while the user navigating thru JSP's. Here the controller will genarete the RequestId dynamically, which is a combination of IP address, UserName, Station, ModuleName, Operations and time. And this will be passesd to the Session Bean thru remote call, So that the requestId will be available to all methods, which are called from remote method.

Here I am getting probelm with ejbLoad() method as it is invoked by the container. Now my problem is to pass the generated RequestId to this ejbLoad(), so that RequestId will be avilable to the metods which are called inside ejbLoad(). I think, I am clear now.

Thanks in Advance...
Dear All,

I have a problem, where i need to pass a value to ejbLoad() method in bmp, from the session bean.

As I know ejbLoad() method is invoked by application server, whenever we call findByPrimaryKey(), the only value which we pass (is a Primary Key) to findByPrimaryKey() is available to ejbLoad().

Can we get a value in ejbLoad() which is generated in Session Bean without passing it to findByPrimaryKey().



Help Me...

Thanks in Advance
[ November 16, 2005: Message edited by: Sunny Kiran ]
Thanks Ben...

Now i got clear idea about the size of session...

thanks bear for your advice on naming policy... i changed my display name.
18 years ago
How to know size of a session ?
18 years ago
float f2 = 412.1231623f;

System.out.println("f2 : " + f2 );

Output:
f2 : 412.12317

why so??? why it is getting rounded to 7 instead of being 6?
Dear Somesh,

In general equals() method checks whether first object is "equal to" second one. This is the same case with '=='.