Sun Certified Web Component Developer Study Guide and over one million other books are available for Amazon Kindle. Learn more

Kindle Edition
 
   
Have one to sell? Sell yours here
Sun Certified Web Component Developer Study Guide (Exams 310-081 & 310-082) (Oracle Press)
 
 
Start reading Sun Certified Web Component Developer Study Guide on your Kindle in under a minute.

Don't have a Kindle? Get your Kindle here, or download a FREE Kindle Reading App.

Sun Certified Web Component Developer Study Guide (Exams 310-081 & 310-082) (Oracle Press) [Paperback]

David Bridgewater (Author)
3.4 out of 5 stars  See all reviews (9 customer reviews)


Available from these sellers.


Textbook Student FREE Two-Day Shipping for students on millions of items. Learn more

Formats

Amazon Price New from Used from
Kindle Edition $30.63  
Paperback --  

Book Description

0072258810 978-0072258813 September 28, 2005 1
An integrated study system based on proven instructional methodology, this book and CD package shows you not only what--but how--to study for the SCWCD exam. The book offers complete coverage of all official exam objectives, 190+ practice exam questions, step-by-step exercises, on-the-job elements, and chapter self-tests. The CD-ROM contains MasterExam software with a complete 69-question exam, a searchable electronic book, 45+ complete web applications with source, and access to a downloadable bonus exam (with free online registration).


Editorial Reviews

From the Back Cover

Get the book that shows you not only what--but how--to study

  • 100% complete coverage of all official objectives for exams 310-081 and 310-082
  • Exam Readiness checklist at the front of the book--you’re ready for the exams when all objectives on the list are checked off
  • Real-world exercises--Step-by-step instruction modeled after the hands-on exam questions
  • Inside the Exam sections highlight key exam topics covered
  • 45+ complete web applications, with source code illustrate the official objectives
  • Simulated exam questions match the format, tone, topics, and difficulty of the real exams

Covers all exam 310-081 and 310-082 topics, including: The Servlet Model * Web Applications * The Web Container Model * Sessions and Listeners * Security * Java Server Pages * JSP Standard Actions, XML, and EL * JSP Tag Libraries * Custom Tags * J2EE Patterns

The best fully integrated study system available. CD-ROM includes:

  • Complete MasterExam practice testing engine, featuring:
  • One full practice exam
  • Detailed answers with explanations
  • Score Report performance assessment tool
  • Electronic book for studying on the go
  • Bonus downloadable MasterExam practice test with free online registration

About the Author

David Bridgewater a Java consultant and trainer, teaches Java and WebSphere technologies for IBM. He has written extensively on Java topics for industry magazines, and is a regular contributor to javaranch.com.

Product Details

  • Paperback: 864 pages
  • Publisher: McGraw-Hill Osborne Media; 1 edition (September 28, 2005)
  • Language: English
  • ISBN-10: 0072258810
  • ISBN-13: 978-0072258813
  • Product Dimensions: 8.9 x 7.4 x 1.9 inches
  • Shipping Weight: 3.2 pounds
  • Average Customer Review: 3.4 out of 5 stars  See all reviews (9 customer reviews)
  • Amazon Best Sellers Rank: #461,060 in Books (See Top 100 in Books)

More About the Author

Discover books, learn about writers, read author blogs, and more.

 

Customer Reviews

9 Reviews
5 star:
 (4)
4 star:    (0)
3 star:
 (2)
2 star:
 (2)
1 star:
 (1)
 
 
 
 
 
Average Customer Review
3.4 out of 5 stars (9 customer reviews)
 
 
 
 
Share your thoughts with other customers:
Most Helpful Customer Reviews

26 of 26 people found the following review helpful:
3.0 out of 5 stars Reasonably good, February 23, 2006
By 
kalyson (Sacramento, CA USA) - See all my reviews
Amazon Verified Purchase(What's this?)
This review is from: Sun Certified Web Component Developer Study Guide (Exams 310-081 & 310-082) (Oracle Press) (Paperback)
I got this book partially because I prefer more of a textbook format than the Head First books. This book's format was more straightforward, so I got it along with the Head First Servlets and JSP. However, I have found a lot of errors, inconsistencies and confusing explanations in this book. Some of the errors are minor, but others really cause fundamental confusion. I'm searching for an errata for the book now. (There may not be one -- I'm not finding it yet.)

Although the Head First books have a comic, cartoonish quality that I don't generally care for, I must say that their editing is better, their explanations are always understandable, and I find myself going to that book to clear up my confusion with this one.

That being said, there is a lot of very good information in this book and some of the explanations and examples are pretty good. You might consider getting both books because they both cover the material in different ways.

I was tempted to give the book four stars, but I've just hit another few errors that are really irritating. (The author is trying to explain the difference between the forward() and include() functions for handling servlet requests. But his code examples mistakenly are showing forward() where apparently he meant to type include(). These examples do not match the explanation at all. See pages 183 and 184.)

Another egregious error: In the Head First Servlets & JSP book, they make a point of saying "You need to recognize WRONG method names like: getPrintWriter(), getResponseStream(), [...]" etc. And there's a big X in a circle on top of these names. Look at the SCWCD book by D. Bridgewater on page 179. Guess what method he uses inside the code example -- getPrintWriter() !!! (Gee, and I was wondering why my code would not compile.) In that SAME code sample, you can see him getting a PrintWriter object and calling the "write" method on it. I was perplexed by this because I saw them using the "println" method in the same situation in the Head First book. Well, apparently there is a difference, even though the code does work. Sierra and Bates in Head First make a point of saying you should use "println" with a PrintWriter and a "write" with a ServletOutputStream. They explain why, of course. I don't know about you, but these sorts of errors are confusing. I'm not even mentioning the multitudes of small typos throughout the book, like: java.servlet.forward.path_info. (servlet is in the javax package, not java.)

In any case, the book might be worth getting, and if you are able to find an errata it would make the book much more usable. If you do not find an errata that covers all of these errors (I've only mentioned a few), then be sure to get some other resource to check this one against so you can understand parts that are erroneous or confusing.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


11 of 11 people found the following review helpful:
2.0 out of 5 stars A lot of errors, May 10, 2006
By 
This review is from: Sun Certified Web Component Developer Study Guide (Exams 310-081 & 310-082) (Oracle Press) (Paperback)
I would not recommend this book even though it covers all of exam objectives and has a lot of examples and exercises. The reason is that there are a lot of errors that make this book hard to read. It is very irritating, annoying and time consuming.
Here are just some of errors I found in the book.
1. Answer to question 13 on page 88: "...HttpServletRequest.getHeaders() returns all request header names..." It is not correct because the method that returns all request header names is getHeaderNames(). There is no getHeaders() method (with no arguments) in HttpServletRequest class.
2. Page 82 question 19. Author mistakenly took the code from question 8 so the question 19 and answer to it on page 90 are completely irrelevant.
3. On page 559 author says that the type for 'items' attribute is java.lang.Array. There is no such class in Java!
4. Page 637 answer to question 8: "...J to 14 (c:forEach, again)". If you look at question's code on page 625 you can see that correct answer should be: J maps to 'body'.

Number of errors, big and small, is very high in this book. This is the case of unprofessional work both on the part of author & editor.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


4 of 4 people found the following review helpful:
2.0 out of 5 stars Needs better technical editing, or at least an online errata guide, February 3, 2007
By 
This review is from: Sun Certified Web Component Developer Study Guide (Exams 310-081 & 310-082) (Oracle Press) (Paperback)
After I finished the first chapter self-test, and saw that there were two obvious errors in the answer key (questions 7 and 19), I considered buying another book. I searched for an errata listing for the book online, with no success. I emailed the author and techical editor. To his credit, David Bridgewater replied promptly, but was not much help: he suggested that the publisher probably has it on their website (as of when I emailed him, they did not); and he also sent me corrections to two places in the book, but there are a lot more just two errors in the book.

The technical editor did not reply to my email. This comes as no surprise; perhaps she is embarrased at the poor job she did editing this book. She obviously did not give thorough consideration to the self-tests.

I decided that I did not want to spend the time or money to get a different exam guide, and that 99% of the book was most likely accurate, and the errata are probably easy to spot (even if they are really annoying), so I trudged on.

I regret that decision. I am now at the end of chapter 4, and have spotted a total of five major errors in the self-tests, and at least a dozen minor errors in the self-tests and the text of the chapters. Also annoying is the ambiguous wording in some of the self-test questions; some of the phrases used are open to interpretation, and should be worded to be less ambiguous.

Without knowing how good or bad other SCWCD exam guides are, I'd feel pretty confident in recommending that you should probably go with a different study guide that this one.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No

Share your thoughts with other customers: Create your own review
 
 
 
Most Recent Customer Reviews







Only search this product's reviews



Inside This Book (learn more)
First Sentence:
We go to the first topics in the Sun Certification for Web Component Developers. Read the first page
Key Phrases - Statistically Improbable Phrases (SIPs): (learn more)
jsp page source, following servlet code, tag life cycle, appropriate package directory, forwarding servlet, statements describing potential benefits, web application directory structure, exercise subdirectory, tag handler class, exception implicit object, following standard actions, deployment descriptor elements, lettered values, request header name, generated servlet code, tag library descriptor file, web container, web resource collection, initial forward slash, session life cycle, web application structure, context directory, include standard action, classic tags, pagecontext object
Key Phrases - Capitalized Phrases (CAPs): (learn more)
Front Controller, Self Test, Intercepting Filter, Two-Minute Drill, Certification Summary, File Edit View Favorites Tools Help, Search Favorites, Internet Explorer, Set Up the Deployment Descriptor, David Bridgewater, Apache Software Foundation, Blue Suede Shoes, Taxation Function, Enterprise Java, Standard Tag Library, Submit Query, Sun Microsystems, View Helper, Andre Previn Attribute, Mona Lisa, Question Software, Rational Application Developer, Restart Tomcat, Tue Mar, Watch There
New!
Books on Related Topics | Concordance | Text Stats
Browse Sample Pages:
Front Cover | Table of Contents | First Pages | Index | Back Cover | Surprise Me!
Search Inside This Book:

Citations (learn more)
This book cites 3 books:




Tags Customers Associate with This Product

 (What's this?)
Click on a tag to find related items, discussions, and people.
 
(6)
(3)
(2)

Your tags: Add your first tag
 

Customer Discussions

This product's forum
Discussion Replies Latest Post
No discussions yet

Ask questions, Share opinions, Gain insight
Start a new discussion
Topic:
First post:
Prompts for sign-in
 


Active discussions in related forums
Search Customer Discussions
Search all Amazon discussions
   
Related forums



So You'd Like to...



Look for Similar Items by Category


Look for Similar Items by Subject