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 is Client-Server Computing?

2483


What are the types of Session Tracking ?

1210


Difference between java beans & servlets?

1108


Is tomcat a servlet container?

1112


What is servlet invoker?

1085


What is java servlet?

1109


What are sessions in servlets?

1111


What is api in servlet?

1073


Name the packages that work with servlet?

1058


Explain the different ways for servlet authentication?

1157


What's the use of servletcontext?

1194


What is preinitialization of a servlet?

1068


Why is http protocol called as a stateless protocol?

1083


Is servlet a server side scripting language?

1189


What are the supporting protocol by HttpServlet ?

1253