Biby Thoms

Ranch Hand
+ Follow
since Jan 10, 2006
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Biby Thoms

I heard while back Oracle is going to split the SCBCD exam into two and one of them is a JSF exam. But as per Oracle Education website there are no JSF related exam. Does it correct?. Which one is worth to take SCBCD 5.0 or the new Oracle exams? Please advise


Does this exam still exists.
webpage

do you know when it is going to be actual exam if it exists in beta mode.
Thank you very much
Hi,

Is this exam based on JSP 1.2,JSP 1.4 or JSP 2.0?
Hi,

What is the major difference between JSP 1.2 and JSP 2? (Which one I have to choose for SCWCD exam)
What is the major difference between JSP and JSF?

I know little bit of JSP but not a lot...If I want to study more, which one I have to pick JSP or JSF?

Can anybody tell me to some good books and study guides? or working samples..

Thanks in advance...
16 years ago
JSF
Hi,

What is the major difference between JSP 1.2 and JSP 2? (Which one I have to choose for SCWCD exam)
What is the major difference between JSP and JSF?

I know little bit of JSP but not a lot...If I want to study more, which one I have to pick JSP or JSF?

Can anybody tell me to some good books and study guides? or working samples..

Thanks in advance...
16 years ago
JSP
I have an exam voucher that is expiring on OCT 31st. Only 100$

email me for more details:biby_j_t@hotmail.com
16 years ago
I don't know whether I can post this here..if not, i am sorry...

SCWCD exanm voucher is for sale only 100$.....50% off..but you have to take the exam by 31st (last date: OCT 31st) of this month.

email me biby_j_t@hotmail.com
16 years ago
Is it possible for me to sell the "voucher" that I bought from SUN to somebody else?.
Thank you. But now I have the following error while accessing http://localhost:8080/wileystruts/Lookup.do Do you guys have any idea?


HTTP Status 404 - Servlet action is not available

type Status report

message Servlet action is not available

description The requested resource (Servlet action is not available) is not available.


Please help
16 years ago
Files
D:\Textpad\wiley\LookupForm.java
D:\Textpad\wiley\LookupForm.class
D:\Textpad\wiley\LookupAction.java


then other directory inside wiley for org...
D:\TextPad\wiley\org\apache\struts...action,actions...webapp....


I have the similar setup in the webapps...but I am trying to complie the LookupAction.java from Textpad.
16 years ago
I am looking forward to study java web development. Is there any good book available to study java webdevelopment. I would like to stay close to the new releases. Is there any good book available in the market to study the webdevelopment using struts?. I am looking for a book that will guide me through each and every step to complete a sample application. Please help.
16 years ago
Thank you.

I am able to complie "LookupForm.java" without any problem(Compiled using Textpad). But I am not able to compile the second java file. Both are residing in the same package.
16 years ago
I am new to JSP and Servlet.Also I am not sure whether I have to post these questions here. If not, my appologies....

I am trying to Run one sample from "WILEY - MASTERING JAKARTA STRUTS". I have two class and the source is attached below.
LookupForm class is running fine. I am not able to run the LookupAction class. I am always getting the following error

=======================
D:\Tomcat\webapps\wileystruts\wiley\LookupAction.java:26: cannot find symbol
symbol : class LookupForm
location: class wiley.LookupAction
LookupForm lookupForm = (LookupForm)form;
^
D:\Tomcat\webapps\wileystruts\wiley\LookupAction.java:26: cannot find symbol
symbol : class LookupForm
location: class wiley.LookupAction
LookupForm lookupForm = (LookupForm)form;
^
2 errors

Tool completed with exit code 1

=======================
http://localhost:8080/wileystruts/Lookup.do;jsessionid=3727A08A7B5CE3D66024E24F0D94D783. Also I am getting "HTTP Status 404 - Servlet action is not available". Do you have any idea?

======================
package wiley;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
public class LookupForm extends ActionForm {
private String symbol = null;
public String getSymbol() {
return (symbol);
}
public void setSymbol(String symbol) {
this.symbol = symbol;
}
public void reset(ActionMapping mapping,HttpServletRequest request) {
this.symbol = null;
}
}

=====================
package wiley;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts.action.Action;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
public class LookupAction extends Action {
protected Double getQuote(String symbol) {
if ( symbol.equalsIgnoreCase("SUNW") ) {
return new Double(25.00);
}
return null;
}
public ActionForward execute(ActionMapping mapping,ActionForm form,HttpServletRequest request,
HttpServletResponse response)
throws IOException, ServletException {
Double price = null;
// Default target to success
String target = new String("success");
if ( form != null ) {
// Use the LookupForm to get the request parameters

LookupForm lookupForm = (LookupForm)form;
String symbol = lookupForm.getSymbol();
price = getQuote(symbol);
}
// Set the target to failure
if ( price == null ) {
target = new String("failure");
}
else {
request.setAttribute("PRICE", price);
}
// Forward to the appropriate View
return (mapping.findForward(target));
}
}
======================
16 years ago
I have done that. I looking for something big like a bookstore,registration database or something.
Is there any sample jsp projects is available online to download and study.

Thanks in advance