kalyan kumarG

Greenhorn
+ Follow
since Mar 28, 2005
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 kalyan kumarG

pradeep, thanks for the information.
19 years ago
Why we require wrapper classes in servlets?What are their uses?
19 years ago
where can i get the source code for servlets2.4 . I tried in sun.com but, was unable to find the location/path or package with which it comes along. please help me out in this.

Thanks in advance,
Kalyan.G
19 years ago
where can i get the source code for servlets 1.4 . I tried in sun.com but, was unable to find the location/path or package with which it comes along. please help me out in this.

Thanks in advance,
Kalyan.G
19 years ago
create only one servlet that receives all the requests. Here the servlet acts like a controller. Just it receives the requests and forwards to the JSPs.
<br/>
19 years ago
JSP
what you have created is good and it is the basic besign of MVC.<br/>
avoid hardcoding the connections among the MODEL, VIEW and CONTROLLER.<br/>
Bring it outside of the code.
store the object in the request object of the jsp and dispatch the control to the servlet. now retrieve the object from the HttpServletRequest object of the servet.

if this is what you have done then, it should work.
19 years ago
JSP