Yesterday was the big day. It was quite successful The JavaRanch's community, so You also, who is reading this line, helped and supported me. Thanks for it!
Gabriel
VP Jain
Ranch Hand
Joined: Feb 11, 2004
Posts: 81
posted
0
Hi Gabriel,
Congradulations!
It's for u i suppose
Please share your preperation stratergy with other ranchers.
Regards V.Parsuvanath.
SCJP SCWCD SCBCD <br /> <br />what u do in life echos in eternity!
Vishwajit Mankar
Greenhorn
Joined: Nov 30, 2004
Posts: 7
posted
0
Congrets Gabriel....
Thats really a great score. Please share your preparation process with us. It will a great help. I am planning to appear for exam on 16th December. Is HFSJ and SCWCD study kit books are enough, or do we need to read spefications for the exam??
Thanks in advance
Vishwajit
Vishwa
Gabriel Forro
Ranch Hand
Joined: Apr 16, 2004
Posts: 59
posted
0
Hi,
I have used the "HF Servlets and JSP" (read twice) and study the specs as well (mainly jstl core and custom tags). On the last day I went through the JSP and servlet API also to memorize the method signatures, names and return values. In my opinion the HF Servlets and JSP is enough for the exam. In addition to the info in the book You have to know something about dynamic attributes for the custom tags (it is not covered in the book). The HFSJ is a great book, but be aware, as there are some mistakes. The ones I can remember:
1. the exception JSP object is Throwable and not JspException 2. If the argument of the sendRedirect, encodeURL, encodeRedirectURL methods begins with '/', than it is a relativ to the container's root (not to the web application's root) 3. the <c:remove var="attr"/> removes all attributes 'attr' from all scopes. 4. ${aBean.notAProperty} throws an exception, if aBean is not null and there is not any 'notAProperty' property on the bean. 5. the
is not valid. The security-role tag can contain only one role-name tag. So the
is the right one.
In addition to the reading I have created a lot of small web applications on my laptop to try everything what I have read. That is all
Bert Bates
author
Sheriff
Joined: Oct 14, 2002
Posts: 8712
posted
0
Gabriel,
Wow!!! 98% is incredible!
Thanks for the feedback!
- Bert
Eliminate fossil fuel subsidies. (If you're not on the edge, you're taking up too much room.)
Selva Prasad Rajendran
Ranch Hand
Joined: Sep 07, 2004
Posts: 38
posted
0
hey man,
its really a incredile achievement. plz do help me for preparing for myself.
Hi Gabriel, It Is Really Really Great Score.Thanks A Lot For Your Valuable Tips.
"Good will is the one and only asset that competition cannot undersell or destroy" -Marshall Field
kasun madurasinghe
Greenhorn
Joined: Sep 16, 2004
Posts: 4
posted
0
Congrats Gabriel,
It's really a very good score . Can U tell me what mock exams did U use?
Sree Nivas
Ranch Hand
Joined: Jul 24, 2003
Posts: 95
posted
0
Congrats. It's great score.
Could up pl forward if u have any material (ppts, pdfs, docs etc) to my mailid. iruvanti2000@yahoo.co.in.
I'm planning to take it up shortly.
regards Sreenivas
Navneet Dhingra
Greenhorn
Joined: Jan 13, 2005
Posts: 1
posted
0
Gabriel
Would you plz suggest, which books to start with? I know all basics of Servlets( had read Inside servlets and Jason Hunter) and JSP specs.
But now could u suggest a book for refreshing the core, so that later I could jump to some certificzaation book.
any advice will be appriciated
Mellihoney Michael
Ranch Hand
Joined: Nov 27, 2002
Posts: 124
posted
0
congratulations
a beginner in java
Juliano Mendes
Greenhorn
Joined: Oct 20, 2004
Posts: 2
posted
0
Congratulations Gabriel!!!
98% is spectacular!
Ranjit Jana
Ranch Hand
Joined: Feb 17, 2005
Posts: 30
posted
0
Please look at the notes ------------------------------------------ 4.${aBean.notAProperty} throws an exception, if aBean is not null and there is not any 'notAProperty' property on the bean. ------------------------------------------
Hi,
Wanted to know if this is correct. If Bean is not null and no property in the bean will throw a exception.
If Bean itself is null the result will be null
Somebody please explain this behaviour.
Ranajit Jana
Jose Esteban
Ranch Hand
Joined: Nov 28, 2004
Posts: 102
posted
0
Originally posted by Ranjit Jana:
Wanted to know if this is correct. If Bean is not null and no property in the bean will throw a exception.
If Bean itself is null the result will be null
Somebody please explain this behaviour.
Ranajit Jana
You are right. Look at JSP 2.0 spec (page 105): To evaluate expr-a[expr-b]: - Evaluate expr-a into value-a - If value-a is null, return null. (This explains the null returned) ... ... - Otherwise (a JavaBeans object),... ---- If value-b is a readable property of value-a,... ---- Otherwise: error. (This explains the exception thrown)
[ February 27, 2005: Message edited by: Jose Esteban ] [ February 27, 2005: Message edited by: Jose Esteban ]