Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


if u havea .class file ,how can u say whether it is servlet
or not ,dont use java decompliler

Answers were Sorted based on User's Feedback



if u havea .class file ,how can u say whether it is servlet or not ,dont use java decompliler..

Answer / kunal

Just Use Reflection to get its SuperClass. If this super
class is Any of Servlet class like HttpServlet or
GenericServlet then this class is a servlet...

Is This Answer Correct ?    7 Yes 0 No

if u havea .class file ,how can u say whether it is servlet or not ,dont use java decompliler..

Answer / mamta

when we open .class file if it contain
javax/servlet/Servlet ,javax/servlet/http/HttpServlet
this shows it is a servlet

Is This Answer Correct ?    4 Yes 1 No

if u havea .class file ,how can u say whether it is servlet or not ,dont use java decompliler..

Answer / amitasite

1) Use Reflection API
2) Configure web.xml and configure <servlet> and <servlet-
mapping>. Send request to the URL. If it is not servlet
then will throw exception like
javax.servlet.ServletException: Class
com.request.TestServlet is not a Servlet

Is This Answer Correct ?    1 Yes 0 No

if u havea .class file ,how can u say whether it is servlet or not ,dont use java decompliler..

Answer / reddy

when we open the .class file
it my contains something like
;Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/
HttpServletRespons

where as simple java .class file will not contain this

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More Servlets Interview Questions

Why do we have servlet wrapper classes?

0 Answers  


Is classes folder is compulsory in web-inf/ even though u r deploying ur application with war file?

3 Answers   Bosch, Cognizant,


What are the steps that are required to handle the multi-threading?

0 Answers  


What is the process to implement doget and dopost methods?

0 Answers  


HTTP tunneling means what?

2 Answers  


when the several requests comes to server..how it manage the requests

4 Answers   iGate,


What do you mean by servlet?

0 Answers  


What is servlet and how it works?

0 Answers  


What is the capacity that doGet method can send to the server?

5 Answers  


Once the destroy() method is called by the container, will the servlet be immediately destroyed? What happens to the tasks(threads) that the servlet might be executing at that time?

0 Answers  


what are the CGI Programs?

5 Answers  


What is the difference between get and post methods?

0 Answers  


Categories