Deepti Padiyar

Ranch Hand
+ Follow
since Apr 27, 2006
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Deepti Padiyar

Hi everyone,

Thank you for the good wishes :-) I studied for a month and a half, about 5 -6 hrs per day.
Hi everyone,

I cleared SCWCD yesterday with 91%. Am sooooooo happy and relieved :-))
Well, these would be my inputs for someone studying for it....HSFJ is a great learning experience... it's a new technique and somehow it works with me.... it's easier to REMEMBER facts and associate with diagrams.... so I would recommend a good read of this book... I also went through SCWCD Exam Study Kit and I think it's a very good book too..... but apart from all this.... read the specs and api for major classes.... there's loads in these that just need plain reading....
I had read on an earlier post that the actual exam has questions from mock exams , unfortunately I cannot agree with that.. none of the questions that I saw in the mocks were on the exam, not even a likeliness of any sort...mocks stay good only for revision... I did buy Whizlabs too and I've used it to the core.. so that's my advice.... rest assured, the exam will be tougher than the mocks you give....but still not as difficult as SCJP 5.0

Hey Marc, do I get to go into the Hall of Fame?


Happy studying,
18 years ago
Hi everyone,

I cleared SCWCD yesterday with 91%. Am sooooooo happy and relieved :-))
Well, these would be my inputs for someone studying for it....HSFJ is a great learning experience... it's a new technique and somehow it works with me.... it's easier to REMEMBER facts and associate with diagrams.... so I would recommend a good read of this book... I also went through SCWCD Exam Study Kit and I think it's a very good book too..... but apart from all this.... read the specs and api for major classes.... there's loads in these that just need plain reading....
I had read on an earlier post that the actual exam has questions from mock exams , unfortunately I cannot agrre with that.. none of the questions that I saw in the mocks were on the exam, not even a likeliness of any sort...mocks stay good only for revision... I did buy Whizlabs too and I've used it to the core.. so that's my advice.... rest assured, the exam will be tougher than the mocks you give....but still not as difficult as SCJP 5.0

Hey Marc, do I get to go into the Hall of Fame?


Happy studying,

[ August 10, 2006: Message edited by: Deepti Padiyar ]
[ August 10, 2006: Message edited by: Deepti Padiyar ]
Hi ,

I am looking for a job in the United States. I have a 2 year work experience in Java/ J2ee and am a Sun Certified Java Programmer. Will be appearing for my Sun Certified Web Componennt Developer exam early in August. I have also worked with Oracle Reports , Swing , Rational Rose for High Level Design and Low Level Design and Code creation.I also have an idea about LDAP and Netegrity Siteminder Policy Servers . I am on an H-4 visa and am looking for a job anywhere on the West Coast but preferably in Phoenix, Arizona.

Please contact me as soon as possible.

Regards,
Deepti Padiyar.

[ July 22, 2006: Message edited by: Deepti Padiyar ]
[ July 22, 2006: Message edited by: Deepti Padiyar ]
18 years ago
anyone any idea about a discount here in the United States for SCWCD 310-081 ?
Hi everyone,

was searching for any Sun promotions for the SCWCD in the US, but stumbled on this. It's only applicable for a free retake on the exam , no discount on the current purchase .. But anyone buying a voucher can of course use it anyway...

http://www.sun.com/training/savings/retake.xml?printFriendly=true
Congrats Narendra,
you've been helping a lot of people on this forum too including me, so thank you.....great score !
Hi Bryan,

Thank you for the tutorial and thank you for writing a really good book. I am currently studyiong for my SCWCD, should probably give it in a few weeks.... I would really appreciate if yo could send me a copy of the source code and WArs for Dynamic Attribute examples. My address is [email protected].

Thanks,
Sumita.
Congrats Bhavik.. Great score.. !
Even if <load-on-startup> is not specified in the DD, it depends on the web-container when it wnats to load the servlet class, either when the server is started, at startup , or when the first request comes in. My servlet's init() method is called whne the server starts up even when it does not have any <load-on-startup> associated with it.
[ July 12, 2006: Message edited by: Sumita Padiyar ]
Thanks for the quick reply and thank you for directing me to wikipedia

very EXTENSIVE explanations though .. much more than I asked for !
[ June 26, 2006: Message edited by: Deepti Padiyar ]
Excellent score! Congrats !
While running your code Vinod,

VALUE BOUND
Added first BindingTest to session attrib key
VALUE BOUND
VALUE UNBOUND
Added second BindingTest to session attrib key

I always get Bound before Unbound, if you get another answer, i dont know what to think... but my output goes well with the mock exam answers.....

Of course as Narendra says, if you refresh your browser, you will be in the same session with one BindingTest instance in session, so, you will get different results.
So, the next time the result is
VALUE BOUND
VALUE UNBOUND
Added first BindingTest to session attrib key
VALUE BOUND
VALUE UNBOUND
Added second BindingTest to session attrib key

which works with my theory in previous post..
[ June 26, 2006: Message edited by: Deepti Padiyar ]
Hey guys,

lets remove all the confusion... I had to try it myself in a more constructive than destructive way to CLEAR my concepts.I added lots of system.out.prinltn's to make things clear.

here's my code and the output.


and the output.

VALUE BOUND
Added first BindingTest to session attrib key
VALUE BOUND
VALUE UNBOUND
Added second BindingTest to session attrib key
VALUE UNBOUND
Added some String to session attrib key
removes that string value from session attrib key


So my deduction,
First VALUE BOUND is obvious.

While calling second setAttribute on the same key,
for the BindingTest class an instance is bound first and the previous instance is notified of being unbound later (really sad part when u would think otherwise )


When "key" is set to a new String , the second instance of BindingTest is removed from session(unbound) , so VALUE UNBOUND is printed.

And when "key" is removed from session, BindingTest is never notified because there is no instance of it existing in the session.

Hope that makes things clear and less confusing.
[ June 26, 2006: Message edited by: Deepti Padiyar ]
Thank you , Narendra.... will look up more abt the same....