nik rb

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

Recent posts by nik rb

Hi miquel
great work.. i too am planning to give test 252. Could you please give me the details of your preparation. I dont have websphere experience will that be a problem? both the infocentre and the redbooks have a lot of material.. seems impossible to learn all of it.. is it really that difficult?
[ September 16, 2007: Message edited by: nik rb ]
Hi All,

I have a question about the "bean things" that can be done at various stages in a session bean life cycle.

Ref page 216 HFEJB- if you see, we can't force transaction rollbacks or find if a transaction has been set for a rollback but we can get transaction references and call methods on them in the ejbCreate() ejbActivate() ejbPassivate and ejbRemove() methods.

The question is why is it that we can perform transaction related operations for BMT beans and not for CMT beans in these methods?

cheers!
nik
This might be useful

web page

cheers!
Nik
Dear all,

I am preparing for the SCBCD 1.3 exam, i am using windows xp. I have downloaded j2e sdk 1.3.1 Could someone please tell me what procedure i need to follow to run the examples.

I tried to follow the steps given in the book but it dsnt seem to work.. i think i have something wrong in the installation... can anyone help me with some sort of guidelines for installation and all steps starting from download to execution..

i know this might be a little much but i'm sure many are facing a similar problem

Thanks,
Nik
Dear all,

Im giving a shot at Test 252: WebSphere Application Server Network Deployment V6.0; aiming at changing my job profile.

The unfortunate part is that I don�t have any Websphere experience, not even theoretical knowledge. I have cleared SCJP 1.4 and SCBCD

Im hoping someone here will help me with the following questions

oIs not having hands-on experience that big a deal?
oDo I really have to read through and remember the four redbooks (coming nearly up to 4000 pages)
oIs there any study group that I can join?
oAre there any good free mocks? If yes, where can I get them?

Looking forward to your opinion�

Cheers
Nik
Dear all,

Im havin problems downloading the J2EE SDK 1.3 from the sun site.. can some one give me any alternate link from where it can be downloaded....

cheers....
well done sagar!!!
now that uve done it... mabe others like me shuld do it too
well i have some stuff to ask.
I cleared scjp1.4 last month with 80% with about 10 days prep... now i want to give eiter SCWCD or SCBCD but im not sure which one to give first...
knowing that you have experienced both mabe u can tell me...
which one takes less time?? n has more material available...
and how do i start??
looking forward to your reply
cheers,
nik
Hey erik... thanks for your suggestion,
a slight clarification needed though...
"equally difficult" or "equally easy"

cheers..
nik
19 years ago
Hi all...
with the help of all u extraordinarily knowledged people i managed to clear SCJP 1.4 last month with 80%.
I need ur guidance once again. I want your opinion on what next, scwcd or java beans??
whats easier, would take less preparation time and has a good variety of available study material and free mock exams?
Your suggestions are more than welcome.
PLease continue to give me your opnion....
Cheers,
Nik
19 years ago
Hi is 'serializable' included in scjp1.4?? if yes can anyone tell me about a good article or paper which tells me all about 'serializable' otherwise please post any information about serializable that you can...
thanx in anticipation
19 years ago
Hi.. can anybody tell me where to find FREE mock exams for scjp 1.4 which have their level close to the real test. I have the wizlabs trial and voodooexam but thats about it. Please... any help is welcome and please hurry i jus have a weak left..
ken dear u disappoint me!!! heres your code

code:
----------------------------------------------------------------------------

public void methodInA() {
methodInB b = methodInB();
System.out.println(b.coolMethod());
}

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


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



try using

code:
----------------------------------------------------------------------------

public void methodInA() {
methodInB b = new methodInB();//u mised new..
System.out.println(b.coolMethod());}

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


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



u must be "new" to java
wont wory we've all been there
19 years ago
thanx that solved a lot of stuff... i guess just one further question will a reference become null only if it is assignedthe value null explicitly as in

strInst=nulll;

or are there other ways that makes refrences null???

to reframe the question is the dog free only if i unleash it or there are other elements that may help break the shackles ??
"who let the dogs out.........."
19 years ago
hi.. im not too sure about this but.. i think wat u really want to ask is that

if instance varisbles are initialized to default values y not local variables too

rit??
as i see it.. when an object is created.. a default constructor is called if another constructor is not defined.. this default constructor gives default values to instance variables.
well i tell completely y.. but this is something that happens
im not sure though and by the looks of it my explanation is not complete so if anybody can elaborate then it will be great
i guess the next question to be asked is watif in a non default constructor if i initialize only some of the instance variables then what??

public class constructor{
int a,b,c;

constructor(){
a=0;
b=1;
//i dont initalize c then does c get a default value 0??
}

}

the answer to your question might be hidden in the answer to mine...
19 years ago
hi all im really confused about the 'null' concept .. does any1 kno a good article which tells me all theres to know about null??? please let me know anything you know about null and specially cases which lead to a nullpointerexception
cheers
nik
19 years ago