Vasanthi Rudra Rudramuni

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

Recent posts by Vasanthi Rudra Rudramuni

Hi all,
I recently passed SCWCD exam,i want to know where i will be getting the logo for the same? Help needed.
Regards
Vasanti
What is that Amer, i could not understand u,what do u mean by showing such faces ?
21 years ago
Hi guys,
Just now passed SCWCD with 86%,the test was very easy, i scored very less in design pattern(50%).Guys study well Tag libraries.I reffered Deshmukh study kit, i guys its more than enough and also practiced Mock exam. The link for the Mock exam is available here www.javaranch.com/scwcdlinks.jsp .
Cheers
Vasanthi
21 years ago
Hi all,
I have the tld, descriptor and the jsp file,please let me know why the error is coming
Content of test-taglib.tld
<?xml version="1.0" encoding="ISO-8859-1" ?>
<taglib>
<!-- after this the default space is
"http://java.sun.com/j2ee/dtds/jsptaglibrary_1_2.dtd"
-->
<tlibversion>1.0</tlibversion>
<jspversion>1.1</jspversion>
<shortname>test</shortname>
<info>
A tag library from Core Servlets and JavaServer Pages,
http://www.coreservlets.com/.
</info>
<tag>
<name>required</name>
<tagclass>TestTag</tagclass>
<info>Simplest example: inserts one line of output</info>
<bodycontent>EMPTY</bodycontent>
</tag>
<!-- Other tags defined later... -->

Content of the descriptor file RequiredTag.java
import javax.servlet.jsp.*;
import javax.servlet.jsp.tagext.*;
public class RequiredTag implements Tag
{
private PageContext pageContext;
private Tag parentTag;
public void setPageContext(PageContext pageContext){
this.pageContext = pageContext;
}
public void setParent(Tag parentTag){
this.parentTag = parentTag;
}
public Tag getParent(){
return this.parentTag;
}
public int doStartTag() throws JspException{
try{
JspWriter out = pageContext.getOut();
out.print("<font color='#ff0000'>*</font>");
}catch(Exception e){
throw new JspException("error in RequiredTag.doStartTag()");
}
return SKIP_BODY;
}
public int doEndTag() throws JspException{
return EVAL_PAGE;
}
public void release(){}

}
Content of the TestTaglib.jsp
<html>
<head>
<%@ taglib prefix="test" uri="test-taglib.tld" %>
Name:<test:required /><input type=text name="name">
Password:<test:required /><input type=password name="password">
</head>
</html>
I am getting internal server error 500, please help why this error is coming
Can u give us some of the details of the exam, how was it over all?write us more, how did u prepare the exam?
Vasu
Hi all,
Thanx a lot for ur valuable suggestions, i think i will write the exam on june 14th.
Regards
Vasanthi
Hi all,
I heard that a new version of SCWCD is coming into picture, do any of u know when is that going to be, as i am taking my exam on 14th june,my preparation for the exam should not go futile.
Thanks
Vasanthi
Congrats!!!
I am planning to write the exam next month, can u tell me about the exam, i mean how was it?how did u prepare for the exam, give us ur suggestion.
Vasanthi
Can some one tell me where can i find Edroud mock exam, is it that tough?
Hi All,
I have passed Sun certified exam in Jan-2001,i am planning to take SCWCD, i heard that the SCJP certificate is valid for only 2 years, i also came to know that this rule has been imposed from sep-2002 onwards, can i take the exam, i mean , am i eligible to take the exam, kindly let me know at the earliest.
Many thanx
Vasanthi