<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0">
    <channel>
        <title>JavaRanch Web Component Certification (SCWCD)</title>
        <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=forum&amp;f=18</link>
        <description>A Friendly Place for Java Greenhorns</description>
        <image>
            <url>http://saloon.javaranch.com/ubb/moosefly.gif</url>
            <title>JavaRanch Big Moose Saloon</title>
            <link>http://saloon.javaranch.com/</link>
        </image>
        <language>en-us</language>
        <generator>JavaRanch RSS</generator>
        <copyright>Copyright 2007 Paul Wheaton. All Rights Reserved.</copyright>
        <item uniqueID="18-013624">
            <title>Passed SCWCD upgrade (310-084) 92%</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013624</link>
            <description>This morning I passed the upgrade from SCWCD 1.4 to 5.&lt;br /&gt;The test was 50 questions in 2 1/2 hours, more that enough time.&lt;br /&gt;More design patterns than I expected (10-15%). As I read here, deployment descriptors and EL were definitely emphasized.&lt;br /&gt;I mostly used "HFSJ 2nd ed", "SCWCD Study Companion" by Lyons, and Marcus Greens' web site.&lt;br /&gt;If you have the time to read both books, I suggest HFSJ first and Lyons second. I found HFSJ is good at getting the basic ideas (the dumb Kung Fu movie stills helped me nail the choose-when-otherwise syntax), and then I had enough context to hang the details in Lyons. Lyons is very good and very complete.&lt;br /&gt; &lt;br /&gt;Thanks to all the authors.</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013624</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013624John Donoghue</comments>
            <author/>
            <pubDate>Fri, 9 May 2008 12:58:59 MDT</pubDate>
        </item>
        <item uniqueID="18-013623">
            <title>Mock exam question</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013623</link>
            <description>Problem:&lt;br /&gt;Assuming that the Servlet Container has just called the destroy() method of a servlet instance, which of the following statements are correct?&lt;br /&gt; &lt;br /&gt;Options:&lt;br /&gt;1. Any resources that this servlet might hold have been released.&lt;br /&gt;2. The servlet container time out has exceeded for this servlet instance.&lt;br /&gt;3. The init() method has been called on this instance.&lt;br /&gt;4. None of the requests can EVER be serviced by this instance.&lt;br /&gt;5. All threads created by this servlet are done.&lt;br /&gt; &lt;br /&gt;Answers Given: 3 &amp; 4&lt;br /&gt; &lt;br /&gt;How come the 3rd Option is right? will it call init() again? &lt;br /&gt;(He didn't sayed anything like the new request come again in the question)</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013623</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013623Shashidhar Rao</comments>
            <author/>
            <pubDate>Fri, 9 May 2008 07:40:58 MDT</pubDate>
        </item>
        <item uniqueID="18-013622">
            <title>Marks calculation in SCWCD exam...</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013622</link>
            <description>Hey Guys&lt;br /&gt; &lt;br /&gt;For example, I got a question which I need to choose 3 answers from check boxes. &lt;br /&gt;For suppose I choose 2 correct answers and one wrong answers(or I left one)&lt;br /&gt; &lt;br /&gt;How the marks will calculated???&lt;br /&gt;Will it go like half mark or one third mark???&lt;br /&gt; &lt;br /&gt;Please confirm me...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013622</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013622Shashidhar Rao</comments>
            <author/>
            <pubDate>Fri, 9 May 2008 07:34:58 MDT</pubDate>
        </item>
        <item uniqueID="18-013621">
            <title>SkipPageException doubt</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013621</link>
            <description>Hi,&lt;br /&gt; &lt;br /&gt;I have a parent.jsp file with the following contents :&lt;br /&gt; &lt;br /&gt;&amp;lt;html&amp;gt;&lt;br /&gt; &lt;br /&gt; &amp;lt;body&amp;gt;&lt;br /&gt; &lt;br /&gt; This is my parent JSP page. &amp;lt;br&amp;gt;&lt;br /&gt; &amp;lt;jsp:include page="Check.jsp" /&amp;gt; &amp;lt;br&amp;gt;&lt;br /&gt; After including the file whose tag threw exception&lt;br /&gt; &amp;lt;/body&amp;gt;&lt;br /&gt;&amp;lt;/html&amp;gt;&lt;br /&gt; &lt;br /&gt;Check.jsp:&lt;br /&gt; &lt;br /&gt;&amp;lt;%@ page errorPage="errorPage.jsp" import="java.util.*,com.TestBean" pageEncoding="UTF-8" session="true" %&amp;gt;&lt;br /&gt;&amp;lt;%@ taglib prefix="myTags" uri="simpleTags" %&amp;gt;&lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &amp;lt;body&amp;gt;&lt;br /&gt; This is child JSP &amp;lt;br&amp;gt;&lt;br /&gt; &amp;lt;myTags:simple/&amp;gt; &lt;br /&gt; &lt;br /&gt; Back in the page after exception is thrown. This will not print.&lt;br /&gt; &amp;lt;br&amp;g...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013621</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013621Prem Kashyap</comments>
            <author/>
            <pubDate>Fri, 9 May 2008 05:14:58 MDT</pubDate>
        </item>
        <item uniqueID="18-013620">
            <title>is SCWCD 1.4 IS DISCONTINUED?</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013620</link>
            <description>HI FOLKS,&lt;br /&gt;IS SCWCD 1.4 EXAM IS DISCONTNUED ?&lt;br /&gt;DO I NEED TO PREPARE SCWCD 5 ?&lt;br /&gt; &lt;br /&gt;CAN YOU PLEASE PROVIDE ME OBJECTIVES OF SCWCD 5 AND THE MAJOR DIFFERENCES BETWEEN 1.4 AND 5..&lt;br /&gt; &lt;br /&gt;REGARDS &lt;br /&gt; &lt;br /&gt;DAVID</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013620</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013620John David</comments>
            <author/>
            <pubDate>Fri, 9 May 2008 01:20:57 MDT</pubDate>
        </item>
        <item uniqueID="18-013619">
            <title>Mock Exam link is throwing Exception</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013619</link>
            <description>The Mock Exam link for SCWCD on Java Ranch is throwing the following exception : &lt;br /&gt;An error occured in the bean. Error Message is: 0 &amp;gt;= 0&lt;br /&gt;Stack Trace is :&lt;br /&gt; &lt;br /&gt;java.lang.ArrayIndexOutOfBoundsException: 0 &amp;gt;= 0&lt;br /&gt;at java.util.Vector.elementAt(Vector.java:431)&lt;br /&gt;at com.javaranch.jspbeans.scwcd.QuizBean.execute(QuizBean.java:210)&lt;br /&gt;at __jspPage3_carl_scwcd_scwcd_mock_jsp._jspService(__jspPage3_carl_scwcd_scwcd_mock_jsp.java:92)&lt;br /&gt;at com.orionserver.http.OrionHttpJspPage.service(.:56)&lt;br /&gt;at com.evermind._cp._vhc(.:5639)&lt;br /&gt;at com.evermind.server.http.JSPServlet.service(.:31)&lt;br /&gt;at com.evermind._deb._lnc(.:514)&lt;br /&gt;at com.evermind._deb._wmb(.:170)&lt;br /&gt;at com.evermind._co._wbb(.:581)&lt;br /&gt;at com.evermind._...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013619</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013619Prem Kashyap</comments>
            <author/>
            <pubDate>Fri, 9 May 2008 00:28:57 MDT</pubDate>
        </item>
        <item uniqueID="18-013618">
            <title>Exam Code for SCWCD 1.5</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013618</link>
            <description>Is CX-310-083 the exam code for SCWCD 1.5 Certification?&lt;br /&gt; &lt;br /&gt;Please confirm. Thanks in advance.&lt;br /&gt; &lt;br /&gt;Regards&lt;br /&gt;Prem Kashyap</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013618</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013618Prem Kashyap</comments>
            <author/>
            <pubDate>Thu, 8 May 2008 23:32:57 MDT</pubDate>
        </item>
        <item uniqueID="18-013617">
            <title>deployment-descriptor: run-as at servlet</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013617</link>
            <description>there's an element run-as at the servlet element of the deployment descriptor.&lt;br /&gt;does anyone have any clue what is it for?&lt;br /&gt;servlet 2.4 specification says: "the run-as" element specifies the identity to be used for execution of a component. could somebody say what does it means in english?&lt;br /&gt;thank you a lot</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013617</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013617Andrew Fedotov</comments>
            <author/>
            <pubDate>Thu, 8 May 2008 19:54:57 MDT</pubDate>
        </item>
        <item uniqueID="18-013616">
            <title>What should I do next???</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013616</link>
            <description>Hi&lt;br /&gt; &lt;br /&gt;I finished studying HFSJ twice.&lt;br /&gt;Then from last 3 days I am taking Marcus Exams once a day(total 3 exams).&lt;br /&gt;I got 73%, 83% and 83% in the exams. With this I got some confidence.&lt;br /&gt; &lt;br /&gt;What to do next(Shall I go through the enthuware's simulator?)&lt;br /&gt;I am planning to take HFSJ exam 3 days before exam.</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013616</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013616Shashidhar Rao</comments>
            <author/>
            <pubDate>Thu, 8 May 2008 08:22:55 MDT</pubDate>
        </item>
        <item uniqueID="18-013615">
            <title>CX-310-081 vs. CX-310-083 </title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013615</link>
            <description>I am currently looking towards taking my next Sun certification exam. I am looking at the SCWCD exam and I am still undecided between two available CX-310-081 and CX-310-083. When looking at the exam objectives for both exams on the SUN web site there isn't much of a difference. The only differences are in section 7, i.e. Building JSP Pages Using the Expression Language (EL). In this case the following two points are only in CX-310-083:&lt;br /&gt; &lt;br /&gt;- Given a scenario, write EL code that uses the following operators: aritmetic operators, relational operators, and logical operators. &lt;br /&gt;- Given a scenario, write EL code that uses a function; write code for an EL function; and configure the EL function in a tag library descriptor. &lt;br /&gt; &lt;br...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013615</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013615Nicholas Malta Camilleri</comments>
            <author/>
            <pubDate>Thu, 8 May 2008 02:38:54 MDT</pubDate>
        </item>
        <item uniqueID="18-013614">
            <title>Reg : SCWCD 1.5</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013614</link>
            <description>Dear All,&lt;br /&gt; &lt;br /&gt; I m planning to take SCWCD 1.5 exam. I have HFSJ 1.4 book. Is it enough to take 1.5 exam. Also guide me like what are all the steps to be followed. I am not good in EL and Design patterns. Can you please send me the links for Design patterns and EL.&lt;br /&gt; &lt;br /&gt;Thanks in advance,&lt;br /&gt;P.Prasanna.</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013614</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013614prasanna perumal</comments>
            <author/>
            <pubDate>Wed, 7 May 2008 23:58:54 MDT</pubDate>
        </item>
        <item uniqueID="18-013613">
            <title>Confusion with design patterns</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013613</link>
            <description>Hi all,&lt;br /&gt; &lt;br /&gt;There are only six design patterns (Business Delegate/Service Locator/Transfer Object/Intercepting Filter/MVC/Front Controller) mentioned in HFSJ book. But in some mock exams, other two design patterns came up which are Data Access Object and Value Object. My question is whether we should know these two babies or not and where we can get the details about them. &lt;br /&gt; &lt;br /&gt;Is the HFSJ (2nd version) really 100% covered for SCWCD 5.0&lt;br /&gt;Thanks alot.</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013613</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013613liqiang yang</comments>
            <author/>
            <pubDate>Wed, 7 May 2008 11:24:53 MDT</pubDate>
        </item>
        <item uniqueID="18-013612">
            <title>help about unified EL</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013612</link>
            <description>hi all , i am now preparing for scwcd 5 ,i want to know if the exam ask about EL or unified EL</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013612</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013612mohamed ewis</comments>
            <author/>
            <pubDate>Wed, 7 May 2008 10:40:52 MDT</pubDate>
        </item>
        <item uniqueID="18-013611">
            <title>please help... which IDE ?</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013611</link>
            <description>I am about to start studying for scwcd.&lt;br /&gt; &lt;br /&gt;searched everywhere,but could not get it clear,even from the&lt;br /&gt;faq section of this forum.&lt;br /&gt; &lt;br /&gt;NetBeans or Eclipse? I have been using Eclipse for a while,is it ok to continue with it?&lt;br /&gt; &lt;br /&gt;I have read that NetBeans comes with many J2EE features.is it so?&lt;br /&gt; &lt;br /&gt;Will I miss anything in the exam,if I download latest version of Tomcat instead of 5.5 recommended in this forum?&lt;br /&gt; &lt;br /&gt;Any inputs will be highly appreciated.&lt;br /&gt; &lt;br /&gt;Thanks,Vinal</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013611</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013611vinal sen</comments>
            <author/>
            <pubDate>Wed, 7 May 2008 06:10:52 MDT</pubDate>
        </item>
        <item uniqueID="18-013610">
            <title>META-INF</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013610</link>
            <description>Hi all,&lt;br /&gt; &lt;br /&gt;Could any one tell me what are all the files can META-INF contains ?&lt;br /&gt;apart from Manifest.mf, tld files and application.xml&lt;br /&gt; &lt;br /&gt;please dont give me reply, "it's not covered in exam".&lt;br /&gt; &lt;br /&gt;Regards,&lt;br /&gt;Ravi</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013610</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013610Garla Ravi</comments>
            <author/>
            <pubDate>Wed, 7 May 2008 04:22:52 MDT</pubDate>
        </item>
        <item uniqueID="18-013609">
            <title>What all should i download for SCWCD 1.5 exam practise</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013609</link>
            <description>Hi Ranchers&lt;br /&gt; &lt;br /&gt;I am preparing for the SCWCD exam. I already have apache tomcat,apart from this what all should i download for practising small small codes.Do version also matters as i have 6.0.2 version of tomcat.Kindly reply.&lt;br /&gt; &lt;br /&gt;Regards&lt;br /&gt;Umadas</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013609</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013609Umadas Ravindran</comments>
            <author/>
            <pubDate>Wed, 7 May 2008 03:20:52 MDT</pubDate>
        </item>
        <item uniqueID="18-013608">
            <title>question from mock exam</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013608</link>
            <description>&lt;blockquote&gt;code:&lt;hr&gt;&lt;pre&gt;public class ReqD extends HttpServlet {&lt;br /&gt;&lt;b&gt;protected void doGet(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException &lt;/b&gt;&lt;br /&gt;{ &lt;br /&gt;ServletContext sc = this.getServletContext(); &lt;br /&gt;RequestDispatcher dis = sc.getRequestDispatcher("/menu.jsp"); &lt;br /&gt;if (dis != null){ &lt;br /&gt;dis.include(request, response); &lt;br /&gt;} &lt;br /&gt;PrintWriter out = response.getWriter(); &lt;br /&gt;out.print("Output after menu.jsp"); &lt;br /&gt;} &lt;br /&gt;}&lt;/pre&gt;&lt;hr&gt;&lt;/blockquote&gt;&lt;br /&gt; &lt;br /&gt;How come the above will compile and give output the contents of menu.jsp followed by "Output after menu.jsp"???&lt;br /&gt; &lt;br /&gt;THE doGet(..) METHOD IS DECLARED AS protected...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013608</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013608Shashidhar Rao</comments>
            <author/>
            <pubDate>Wed, 7 May 2008 02:34:51 MDT</pubDate>
        </item>
        <item uniqueID="18-013607">
            <title>Information of SCWCD Exam</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013607</link>
            <description>Hi all,&lt;br /&gt; &lt;br /&gt;I completed SCJP 1.5 2 days back. I am planning for SCWCD 1.5.Can any one suggest books,links,etc for the preparation.</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013607</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013607vinodh kumar</comments>
            <author/>
            <pubDate>Tue, 6 May 2008 23:38:51 MDT</pubDate>
        </item>
        <item uniqueID="18-013606">
            <title>Error on mock test</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013606</link>
            <description>Am getting this error on &lt;br /&gt;http://www.javaranch.com/carl/scwcd/scwcd_mock.jsp (http://www.javaranch.com/carl/scwcd/scwcd_mock.jsp)&lt;br /&gt; &lt;br /&gt;Error page Scwcd_Error&lt;br /&gt;An error occured in the bean. Error Message is: 0 &amp;gt;= 0&lt;br /&gt;Stack Trace is :&lt;br /&gt;java.lang.ArrayIndexOutOfBoundsException: 0 &amp;gt;= 0&lt;br /&gt;at java.util.Vector.elementAt(Vector.java:431)&lt;br /&gt;at com.javaranch.jspbeans.scwcd.QuizBean.execute(QuizBean.java:210)&lt;br /&gt;at __jspPage3_carl_scwcd_scwcd_mock_jsp. _jspService(__jspPage3_carl_scwcd_scwcd_mock_jsp.java:92)&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;Is it just my box or is it happening for everyone? </description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013606</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013606naras pai</comments>
            <author/>
            <pubDate>Tue, 6 May 2008 12:20:50 MDT</pubDate>
        </item>
        <item uniqueID="18-013605">
            <title>SCWCD or SCBCD ?</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013605</link>
            <description>I am SCJP for 1.4 and Im preparing for the upgrade exam which I should pass without problems, I hope and I was wondering which one I should take first as I am more a backend developer than front end.&lt;br /&gt; &lt;br /&gt;So what do you think? Web or Business?&lt;br /&gt; &lt;br /&gt;Thanks</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013605</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013605Cesar Perez</comments>
            <author/>
            <pubDate>Tue, 6 May 2008 10:30:49 MDT</pubDate>
        </item>
        <item uniqueID="18-013604">
            <title>Doubt in Mock question</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013604</link>
            <description>Hi,&lt;br /&gt;I found this question in Marcus Green's mock exam paper-1.&lt;br /&gt; &lt;br /&gt;52. Given a JSP page with the following code, which of the following options would result in the output of red?&lt;br /&gt; &lt;br /&gt;&amp;lt;%&lt;br /&gt;java.util.HashMap hm = new java.util.HashMap();&lt;br /&gt;hm.put("apple","red");&lt;br /&gt;request.setAttribute("apple",hm);&lt;br /&gt;%&amp;gt;Choose at least one answer. &lt;br /&gt; a. ${apple.["apple"]} &lt;br /&gt; b. ${apple.apple} &lt;br /&gt; c. ${apple["apple"]} &lt;br /&gt; d. ${apple['apple']} &lt;br /&gt; &lt;br /&gt;I have a doubt, whether requestScopes attribute "apple" can be accessed directly by name?&lt;br /&gt;I think this question is wrong. Please confirm.</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013604</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013604Gurukant Desai</comments>
            <author/>
            <pubDate>Tue, 6 May 2008 07:50:49 MDT</pubDate>
        </item>
        <item uniqueID="18-013603">
            <title>which simulator is good???</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013603</link>
            <description>Hi&lt;br /&gt;I am planning to purchase exam simulator for SCWCD5.&lt;br /&gt; &lt;br /&gt;which one is good among "Enthuware's JWeb+ V5 For SCWCD 5 NEW" and "Wizlabs SCWCD5 Kit"?</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013603</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013603Shashidhar Rao</comments>
            <author/>
            <pubDate>Tue, 6 May 2008 06:58:49 MDT</pubDate>
        </item>
        <item uniqueID="18-013602">
            <title>weightage of questions</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013602</link>
            <description>I am planning to take web components certification in 10 days.&lt;br /&gt; &lt;br /&gt;I am not comfortable with EL and security. How many questions can we expect from it. &lt;br /&gt; &lt;br /&gt;Certification is bit urgent for me. Could any one guide me getting the concept easily to take the exam.&lt;br /&gt; &lt;br /&gt;Thanks and Regards&lt;br /&gt; &lt;br /&gt;Jetendra</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013602</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013602Jetendra Ivaturi</comments>
            <author/>
            <pubDate>Tue, 6 May 2008 05:40:49 MDT</pubDate>
        </item>
        <item uniqueID="18-013601">
            <title>javax.servlet.forward AND include</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013601</link>
            <description>Hi All,&lt;br /&gt; &lt;br /&gt;I have a fundamental doubt regarding the attributes of javax.servlet.forward AND javax.servlet.include such as request_uri, context_path etc.&lt;br /&gt; &lt;br /&gt;Who sets these attributes in the request and when?&lt;br /&gt; &lt;br /&gt;Also could you please give details of path_info attribute.&lt;br /&gt; &lt;br /&gt;Thanks.</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013601</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013601P Lavti</comments>
            <author/>
            <pubDate>Tue, 6 May 2008 02:20:49 MDT</pubDate>
        </item>
        <item uniqueID="18-013600">
            <title>Doubt in EL operator</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013600</link>
            <description>Hi,&lt;br /&gt;While appearing in Marcus Green's quiz question no.5 of EL chapter&lt;br /&gt;&amp;lt;%int i = 1;int j =2;%&amp;gt;&lt;br /&gt;${i &amp;lt; j}&lt;br /&gt;${1 lt 2}&lt;br /&gt; &lt;br /&gt;I was expecting answer as "true true" but right answer is "false true"&lt;br /&gt; &lt;br /&gt;Can anyone please explain which ${i &amp;lt; j} will evaluate to false?&lt;br /&gt; &lt;br /&gt;Thanks in advance</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013600</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013600Gurukant Desai</comments>
            <author/>
            <pubDate>Tue, 6 May 2008 00:14:48 MDT</pubDate>
        </item>
        <item uniqueID="18-013599">
            <title>EL :: calling functions on attributes</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013599</link>
            <description>HFSJ 2nd edition mock exam Page 848 question number 41 &lt;br /&gt; &lt;br /&gt;&amp;lt;c:if test="${account.personalChecking}"&amp;gt;Checking that fits your lifestyle&amp;lt;/c:if&amp;gt;&lt;br /&gt; &lt;br /&gt;As far as I understand the above EL will call getPersonalChecking() function rather than isPersonalChecking()&lt;br /&gt;And I think there is no way to access any functions other than getters on attributes/Properties, when we use EL ??</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013599</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013599Shiraz Khan</comments>
            <author/>
            <pubDate>Mon, 5 May 2008 23:48:48 MDT</pubDate>
        </item>
        <item uniqueID="18-013598">
            <title>SCWCD 5 Completed</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013598</link>
            <description>Hi All&lt;br /&gt; &lt;br /&gt;I completed my SCWCD5 on sunday. Exam was easy but options were confusing.&lt;br /&gt;I scored 84%. I read HFSJ first edition. Then i took the final mock exam. I scored only 55%. Then i went through Mikalai Zaikin scwcd tutorial. Then i solved some questions from Test killer.</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013598</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013598nishal dsouza</comments>
            <author/>
            <pubDate>Mon, 5 May 2008 23:36:48 MDT</pubDate>
        </item>
        <item uniqueID="18-013596">
            <title>I have HFJ 1.4 book. Is it ok for taking SCWCD 1.5?</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013596</link>
            <description>Hi, I have Head First Jsps and Servlets Book which is for SCWCD 1.4. Can i read the same book for SCWCD 1.5? please guide me in this</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013596</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013596Vinay kumar</comments>
            <author/>
            <pubDate>Mon, 5 May 2008 23:06:48 MDT</pubDate>
        </item>
        <item uniqueID="18-013597">
            <title>Scope Attribute for jsp:set and jsp:get</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013597</link>
            <description>Hi,&lt;br /&gt; &lt;br /&gt; I used &amp;lt;jsp:useBean id="operson" class="Person" scope="request" &amp;gt;&lt;br /&gt; &amp;lt;jsp:setProperty name="operson" property="name" value="hi" Scope="request" /&amp;gt;&lt;br /&gt; &amp;lt;jsp:getProperty name="operson" property="name" Scope="request" /&amp;gt;&lt;br /&gt;&amp;lt;/jsp:useBean&amp;gt;&lt;br /&gt; &lt;br /&gt;But Tomcat throws up an Jsp Compile Time Error saying invalid attribute Scope in jsp:get and jsp:set tags that means we cant specify the Scope Attribute for these tags.&lt;br /&gt; &lt;br /&gt;But in HFSJ page number 355 it is stated that the default scope for &amp;lt;jsp:useBean&amp;gt; and &amp;lt;jsp:getProperty&amp;gt; is Page scope I checked Errata nothing is specified about this.&lt;br /&gt; &lt;br /&gt;I think we cant have scope attribute specified in the &amp;lt;jsp:setProperty&amp;gt; an...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013597</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013597raja ram</comments>
            <author/>
            <pubDate>Mon, 5 May 2008 23:06:48 MDT</pubDate>
        </item>
        <item uniqueID="18-013595">
            <title>HF and the magnets</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013595</link>
            <description>Hi Forum,&lt;br /&gt; &lt;br /&gt;I'm currently reading the HF book trying to pass the exam in july. I discovered page 299 of the first? edition, saying that those magnet tests are part of the exam.&lt;br /&gt; &lt;br /&gt;I can't believe that. Is it true?&lt;br /&gt; &lt;br /&gt;Thanks! </description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013595</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013595Ralf Meyer</comments>
            <author/>
            <pubDate>Mon, 5 May 2008 15:08:47 MDT</pubDate>
        </item>
        <item uniqueID="18-013594">
            <title>security constraint : http-method</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013594</link>
            <description>Head First 1st Edition:&lt;br /&gt; &lt;br /&gt;p. 634:&lt;br /&gt;If there are no NO &amp;lt;http-method&amp;gt; elements it means that NO HTTP Methods are allowed by &lt;b&gt;ANYONE in ANY role&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;p. 660&lt;br /&gt;There's an example where no &amp;lt;http-method&amp;gt; is specified. There's a commentary: We left off &amp;lt;http-method&amp;gt; so that NO HTTP Methods are accessible by &lt;b&gt;ANYONE except Admin &lt;/b&gt;(there's a &amp;lt;auth-constraint&amp;gt; with this role coming after &amp;lt;web-resource-collection&amp;gt &lt;br /&gt; &lt;br /&gt;So, does that mean that:&lt;br /&gt;1) if I specify &lt;b&gt;&amp;lt;http-method/&amp;gt;&lt;/b&gt; than no methods are allowed to anyone by any role, &lt;b&gt;including&lt;/b&gt; the one that i specify in the &lt;b&gt;&amp;lt;auth-constraint&amp;gt;&lt;/b&gt;&lt;br /&gt;2) id I &lt;b&gt;don't specify &amp;lt;http-method&amp;gt;&lt;/b&gt; at all t...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013594</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013594Andrew Fedotov</comments>
            <author/>
            <pubDate>Mon, 5 May 2008 12:00:47 MDT</pubDate>
        </item>
        <item uniqueID="18-013593">
            <title>SCWCD1.5 - Head First 2nd Edition</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013593</link>
            <description>Hi,&lt;br /&gt; &lt;br /&gt;I have Head First JSP 1st edition. Is there any difference between 2nd and 1st edition?.&lt;br /&gt; &lt;br /&gt;Thanks,&lt;br /&gt;Mubeen Shaik.</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013593</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013593Mubeen Shaik</comments>
            <author/>
            <pubDate>Mon, 5 May 2008 11:14:47 MDT</pubDate>
        </item>
        <item uniqueID="18-013592">
            <title>Classic Tags Question</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013592</link>
            <description>Hi Ranchers,&lt;br /&gt; &lt;br /&gt;I am not able to compile tag handler class that uses classic tags. I have question, Whether there is any special JAR file required for compiling/running this class? &lt;br /&gt; &lt;br /&gt;Pls. suggest.&lt;br /&gt; &lt;br /&gt;Thanks&lt;br /&gt; &lt;br /&gt;Muks </description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013592</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013592Mukul Samak</comments>
            <author/>
            <pubDate>Mon, 5 May 2008 08:30:46 MDT</pubDate>
        </item>
        <item uniqueID="18-013591">
            <title>Doubt on book to prepare for exam</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013591</link>
            <description>Hi All&lt;br /&gt; &lt;br /&gt;I have been preparing for SCWCD 5&lt;br /&gt;from past two months,but i have a doubt&lt;br /&gt;as per &lt;b&gt;i have got the book HFSJ for SCWCD 1.4&lt;/b&gt;so is it ok?&lt;br /&gt; &lt;br /&gt;Can i continue from the same book?&lt;br /&gt; &lt;br /&gt;Are there any changes in the new version of book HFSJ for SCWCD5?&lt;br /&gt; &lt;br /&gt;if yes ,please let me know?&lt;br /&gt; &lt;br /&gt;Thanks in advance.&lt;br /&gt; &lt;br /&gt;SCJP(1.5),SCWCD(On the way...)&lt;br /&gt;Dhwani:&amp;gt;Winning is not important but it is the only thing.</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013591</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013591dhwani mathur</comments>
            <author/>
            <pubDate>Mon, 5 May 2008 05:26:46 MDT</pubDate>
        </item>
        <item uniqueID="18-013590">
            <title>Difference between SCWCD1.4 and SCWCD1.5</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013590</link>
            <description>Is there any difference between SCWCD1.4 and SCWCD1.5.</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013590</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013590B Singh</comments>
            <author/>
            <pubDate>Mon, 5 May 2008 05:02:46 MDT</pubDate>
        </item>
        <item uniqueID="18-013589">
            <title>is getNamedDispatcher() method out of scope ?</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013589</link>
            <description>Hi all, &lt;br /&gt; &lt;br /&gt;Is getNamedDispatcher(java.lang.String name) method out of scope for exam ?no where in HFSP it's been covered about this.&lt;br /&gt; &lt;br /&gt;Regards,&lt;br /&gt;Ravi</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013589</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013589Garla Ravi</comments>
            <author/>
            <pubDate>Mon, 5 May 2008 04:40:46 MDT</pubDate>
        </item>
        <item uniqueID="18-013588">
            <title>Filters Tutorial</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013588</link>
            <description>Can any body please give good links to learn about Filters?&lt;br /&gt; &lt;br /&gt;I studied HFSJ, but I am not fealing much comfortable with that.</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013588</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013588Shashidhar Rao</comments>
            <author/>
            <pubDate>Mon, 5 May 2008 04:04:46 MDT</pubDate>
        </item>
        <item uniqueID="18-013587">
            <title>Cleared SCWCD 85%... Thanks to all</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013587</link>
            <description>Hi,&lt;br /&gt; &lt;br /&gt;Cleared SCWCD1.5 yesterday 1.5 with 85%. As per mentioned in the earlier posts the exam has been made tricky. The questions and the corresponding answers are given in a tweaked manner where one has to read the options and the question carefully. When I read some questions for the first time, it was Hey whats this. However after giving it a second reading it was quite nice. &lt;br /&gt; &lt;br /&gt;I feel its very important to know the API throughly, the return type and the parameters. The security related questions were tough for me, scored lowest in it. I tried out Marcus Green and Enthuware 1.4 mock exams, never had any questions for security close to what appeared in exam. Also scored less on Custom tags.&lt;br /&gt; &lt;br /&gt;Sun has surely ...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013587</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013587Maya Dolas</comments>
            <author/>
            <pubDate>Mon, 5 May 2008 01:32:45 MDT</pubDate>
        </item>
        <item uniqueID="18-013586">
            <title>regarding SCWCD</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013586</link>
            <description>Hi all,&lt;br /&gt; &lt;br /&gt;I want to take SCWCD 5 certification .Can anyone suggest book for the preparetion and mock tests links&lt;br /&gt; &lt;br /&gt;Thanks in advance....</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013586</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013586swati cha</comments>
            <author/>
            <pubDate>Sun, 4 May 2008 18:20:35 MDT</pubDate>
        </item>
        <item uniqueID="18-013585">
            <title>things to carry for exam center</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013585</link>
            <description>I am going to take scwcd 1.5 exam &lt;br /&gt;what all the things i need to carry to examination center?&lt;br /&gt; &lt;br /&gt;Is passport enough?&lt;br /&gt;how many number of photocopies do I require?&lt;br /&gt;or do i need to carry my scjp 1.4 certificate &lt;br /&gt; &lt;br /&gt;please confirm&lt;br /&gt;thanks&lt;br /&gt;Sravanthi</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013585</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013585Vijaya Sravanthi</comments>
            <author/>
            <pubDate>Sun, 4 May 2008 16:42:35 MDT</pubDate>
        </item>
        <item uniqueID="18-013584">
            <title>RequestDispatcher not throwing IllegalStateException</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013584</link>
            <description>&lt;blockquote&gt;code:&lt;hr&gt;&lt;pre&gt;package com.rkr.sample;&lt;br /&gt; &lt;br /&gt;import javax.servlet.*;&lt;br /&gt;import java.io.*;&lt;br /&gt;import javax.servlet.http.*;&lt;br /&gt; &lt;br /&gt;public class Sample extends HttpServlet&lt;br /&gt;{&lt;br /&gt;public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException,IOException&lt;br /&gt;{&lt;br /&gt;System.out.println("in side doGet11");&lt;br /&gt;PrintWriter pw = res.getWriter();&lt;br /&gt;pw.write("ss");&lt;br /&gt;pw.flush();&lt;br /&gt; &lt;br /&gt;RequestDispatcher disp = getServletContext().getRequestDispatcher("/SuperServlet1");&lt;br /&gt;disp.forward(req,res);&lt;br /&gt;}&lt;br /&gt;}&lt;/pre&gt;&lt;hr&gt;&lt;/blockquote&gt;&lt;br /&gt; &lt;br /&gt;I am supposed to get an IllegalStateException, nothing happening so. could any one explain what could be the reason.&lt;br /&gt; &lt;br /&gt;http://ww...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013584</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013584rkr garla</comments>
            <author/>
            <pubDate>Sun, 4 May 2008 15:16:35 MDT</pubDate>
        </item>
        <item uniqueID="18-013583">
            <title>response.sendError &amp;amp; error-page</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013583</link>
            <description>I have a problem with catching error page&lt;br /&gt; &lt;br /&gt;When I throw an Throwable exception everything works fine (my error-page, defined in the DD catches it)&lt;br /&gt; &lt;br /&gt;but if do response.sendError(404) in my servlet code my error-page doesn't catches it..&lt;br /&gt; &lt;br /&gt;here's the source:&lt;br /&gt; &lt;br /&gt;DD:&lt;br /&gt;&amp;lt;error-page&amp;gt;&lt;br /&gt;&amp;lt;exception-type&amp;gt;java.lang.Throwable&amp;lt;/exception-type&amp;gt;&lt;br /&gt;&amp;lt;location&amp;gt;/jsp/ch11/Error.jsp&amp;lt;/location&amp;gt;&lt;br /&gt;&amp;lt;/error-page&amp;gt;&lt;br /&gt; &lt;br /&gt;&amp;lt;error-page&amp;gt;&lt;br /&gt;&amp;lt;exception-type&amp;gt;404&amp;lt;/exception-type&amp;gt;&lt;br /&gt;&amp;lt;location&amp;gt;/jsp/ch11/Error.jsp&amp;lt;/location&amp;gt;&lt;br /&gt;&amp;lt;/error-page&amp;gt;&lt;br /&gt; &lt;br /&gt;Servlet's doGet method (that invokes the error)&lt;br /&gt; &lt;br /&gt; //throw new IOException("a...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013583</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013583Andrew Fedotov</comments>
            <author/>
            <pubDate>Sun, 4 May 2008 14:56:35 MDT</pubDate>
        </item>
        <item uniqueID="18-013582">
            <title>implicit objects</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013582</link>
            <description>I would like to all the implicit objects present in tag file&lt;br /&gt; &lt;br /&gt;thanks inadvance&lt;br /&gt;Sravanthi</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013582</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013582Vijaya Sravanthi</comments>
            <author/>
            <pubDate>Sun, 4 May 2008 09:56:34 MDT</pubDate>
        </item>
        <item uniqueID="18-013581">
            <title>exam doubt</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013581</link>
            <description>actually it is more than one year from now when i did my SCJP 1.4.&lt;br /&gt;Now that i don't remember whether the final exam will give any hint about number of answers for the question to be selected like in online Mock Exams&lt;br /&gt; &lt;br /&gt;preparing for SCWCD 1.5&lt;br /&gt;SCJP 1.4</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013581</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013581Vijaya Sravanthi</comments>
            <author/>
            <pubDate>Sun, 4 May 2008 09:24:34 MDT</pubDate>
        </item>
        <item uniqueID="18-013580">
            <title>Conflicting Security Constraints</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013580</link>
            <description>Let's say you have two different security constraints on the same resource:&lt;br /&gt; &lt;br /&gt;&amp;lt;auth-constraint/&amp;gt; &lt;br /&gt;which should allow access to no one.&lt;br /&gt; &lt;br /&gt;and&lt;br /&gt; &lt;br /&gt;&amp;lt;auth-constraint&amp;gt;&lt;br /&gt;&amp;lt;role-name&amp;gt;*&amp;lt;/role-name&amp;gt;&lt;br /&gt;&amp;lt;/auth-constraint&amp;gt;&lt;br /&gt;which should allow access to everyone. (or you could have no auth-constraint listed at all).&lt;br /&gt; &lt;br /&gt;Do ALL users get access to this resource or do NO users get access to the resource. HFSJ is not clear about this.&lt;br /&gt; &lt;br /&gt;Thanks&lt;br /&gt;Daniel</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013580</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013580Daniel Spritzer</comments>
            <author/>
            <pubDate>Sun, 4 May 2008 07:36:34 MDT</pubDate>
        </item>
        <item uniqueID="18-013579">
            <title>RequestDispatcher clarfication</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013579</link>
            <description>&lt;blockquote&gt;code:&lt;hr&gt;&lt;pre&gt;&amp;lt;web-app&amp;gt;&lt;br /&gt; &lt;br /&gt;&amp;lt;servlet&amp;gt;&lt;br /&gt;&amp;lt;servlet-name&amp;gt;myservlet&amp;lt;/servlet-name&amp;gt;&lt;br /&gt;&amp;lt;servlet-class&amp;gt;com.ravi.sample.Sample&amp;lt;/servlet-class&amp;gt;&lt;br /&gt;&amp;lt;/servlet&amp;gt;&lt;br /&gt;&amp;lt;servlet-mapping&amp;gt;&lt;br /&gt;&amp;lt;servlet-name&amp;gt;myservlet&amp;lt;/servlet-name&amp;gt;&lt;br /&gt;&amp;lt;url-pattern&amp;gt;/SuperServlet&amp;lt;/url-pattern&amp;gt;&lt;br /&gt;&amp;lt;/servlet-mapping&amp;gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;&amp;lt;servlet&amp;gt;&lt;br /&gt;&amp;lt;servlet-name&amp;gt;myservlet1&amp;lt;/servlet-name&amp;gt;&lt;br /&gt;&amp;lt;servlet-class&amp;gt;com.ravi.sample.Sample1&amp;lt;/servlet-class&amp;gt;&lt;br /&gt;&amp;lt;/servlet&amp;gt;&lt;br /&gt;&amp;lt;servlet-mapping&amp;gt;&lt;br /&gt;&amp;lt;servlet-name&amp;gt;myservlet1&amp;lt;/servlet-name&amp;gt;&lt;br /&gt;&amp;lt;url-pattern&amp;gt;/SuperServlet1&amp;lt;/url-pattern&amp;gt;&lt;br /&gt;&amp;lt;/servlet-mapping&amp;gt...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013579</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013579Garla Ravi</comments>
            <author/>
            <pubDate>Sat, 3 May 2008 17:00:32 MDT</pubDate>
        </item>
        <item uniqueID="18-013578">
            <title>tagdir</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013578</link>
            <description>Hello all,&lt;br /&gt; &lt;br /&gt;I'm confused as to the purpose of the tagdir attribute in the taglib directive.&lt;br /&gt; &lt;br /&gt;On page 492 of HFSJ 1.4, it gives an example:&lt;br /&gt;&amp;lt;%@taglib prefix="mytags" tagdir="/WEB-INF/tags" %&amp;gt;&lt;br /&gt; &lt;br /&gt;On page 499, it describes the 4 places the container will search for .tag files. So what exactly is the purpose of the tagdir if the container will only search 4 specific locations?&lt;br /&gt; &lt;br /&gt;Thanks&lt;br /&gt;Daniel</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013578</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013578Daniel Spritzer</comments>
            <author/>
            <pubDate>Sat, 3 May 2008 10:10:31 MDT</pubDate>
        </item>
        <item uniqueID="18-013577">
            <title>c:forEach code doubt</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013577</link>
            <description>in servlet:&lt;br /&gt; &lt;br /&gt;String[] arry ={"additon","subtraction","multiplication","division"};&lt;br /&gt; request.setAttribute("matharry",arry);&lt;br /&gt;/*RequestDispatcher rd=request.getRequestDispatcher("Eltest.jsp");&lt;br /&gt; rd.forward(request,response);*/&lt;br /&gt; &lt;br /&gt;in jsp&lt;br /&gt; code1:&lt;br /&gt;&amp;lt;c:forEach var="arr" items="${matharry}" &amp;gt;&lt;br /&gt; &amp;lt;c ut value="${arr}"/&amp;gt;&lt;br /&gt; &amp;lt;/c:forEach&amp;gt;&lt;br /&gt; &lt;br /&gt;or&lt;br /&gt;code 2:&lt;br /&gt;&amp;lt;c:forEach var="arr" items="${requestScope[matharry]}" &amp;gt;&lt;br /&gt; &amp;lt;c ut value="${arr}"/&amp;gt;&lt;br /&gt; &amp;lt;/c:forEach&amp;gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;my output:&lt;br /&gt;blank page&lt;br /&gt; &lt;br /&gt;If i uncomment RequestDispatcher then only code 1 works &lt;br /&gt;if i commet RequestDispatcher &lt;br /&gt; i know...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013577</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013577Vijaya Sravanthi</comments>
            <author/>
            <pubDate>Fri, 2 May 2008 19:30:29 MDT</pubDate>
        </item>
        <item uniqueID="18-013576">
            <title>code doubt c:if</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013576</link>
            <description>&amp;lt;c:set var="result" value="false" /&amp;gt;&lt;br /&gt;&amp;lt;c:if test="${result=true}"&amp;gt;&lt;br /&gt;&amp;lt;c ut value="heloooo"/&amp;gt;&lt;br /&gt;&amp;lt;/c:if&amp;gt;&lt;br /&gt; &lt;br /&gt;output:&lt;br /&gt;compilation failed&lt;br /&gt; &lt;br /&gt;As far as i remember if(result=true) works in core java but not in EL's&lt;br /&gt;what could be the reason?&lt;br /&gt; &lt;br /&gt;Thanks in advance&lt;br /&gt;Sravanthi</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013576</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013576Vijaya Sravanthi</comments>
            <author/>
            <pubDate>Fri, 2 May 2008 18:42:29 MDT</pubDate>
        </item>
        <item uniqueID="18-013575">
            <title>My question in HFSJ</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013575</link>
            <description>Hi all,&lt;br /&gt; &lt;br /&gt;I got a error when I start tomcat6.0 with struts 1.3.8 in eclipse3.3.1.&lt;br /&gt; &lt;br /&gt;SEVERE: Servlet /BeerV1 threw load() exception&lt;br /&gt;java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory&lt;br /&gt;at org.apache.struts.action.ActionServlet.&amp;lt;clinit&amp;gt;(ActionServlet.java:212)&lt;br /&gt;at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)&lt;br /&gt;at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)&lt;br /&gt;at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)&lt;br /&gt;at java.lang.reflect.Constructor.newInstance(Unknown Source)&lt;br /&gt;at java.lang.Class.newInstance0(Unknown Source)&lt;br /&gt;at java.lang.Class.newInstance(Unknown Source)&lt;br /&gt;at org.apache.catalina.c...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013575</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=18&amp;t=013575liqiang yang</comments>
            <author/>
            <pubDate>Fri, 2 May 2008 17:22:29 MDT</pubDate>
        </item> 
    </channel>
</rss>
