lamaruti reddy

Greenhorn
+ Follow
since Apr 19, 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 lamaruti reddy

This is my understanding.....

if i need to have different functionality for get and post then....
doget(){//impl1}
dopost(){//impl2}

if i need to have same functionality for get and post then....
doget(){//impl}
dopost(){call doget()}

But my questions is ...do we override even service(httpreq, httpres)method...if so is it good practise...
17 years ago
Did any one used servletcontextlistener.......
17 years ago
What's the common practise...whether to override get/post method or both?
17 years ago
what's the need to set a bean with 'application scope'....pls explain the same with an example
17 years ago
Normally we either override doGet()and/or doPost() but not service method...Can I have the reason?

Is it good practise to override service() method
17 years ago
Is servletconfig used in real environment?
17 years ago
Can any one give an example... use of servletcontext in real environment
17 years ago