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...

How to debug a servlet?

Answer Posted / madhusudhakar

res.setContentType("text/html");
ServletOutputStream out = res.getOutputStream();
try {
// do your thing here
...
}
catch (Exception e) {
StringWriter sw = new StringWriter();
PrintWriter pw = new PrintWriter(sw);
e.printStackTrace(pw);
out.println("

");
out.print(sw.toString());
out.println("

");
}

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the important functions of filters?

1066


What is the life-cycle of servlets?

1094


Explain the difference between servletconfig and servletcontext in servlet?

990


What is the use of servletconfig interface?

994


A client sends requests to two different web components. Both of the components access the session. Will they end up using the same session object or different session ?

1029


Explain session tracking and its importance?

962


What do you mean by url pattern in servlet?

1071


What is the difference in between the httpservlet and generic servlet?

1069


Explain how to improve Servlet Performance?

1090


Write a simple servlet program to print the contents of html.

984


Why is init() method is used in servlets?

961


How can we create deadlock situation in servlet?

1351


How is an application exception handling is done using a servlet?

958


How to get the current httpsession object?

1074


What do you mean by chaining in servlet?

988