How will you handle the exception without sending to error page? How will you set a message detail to the exception object?
When and why jasperException occurs?
Latest Answer: JasperException is a subclass of Exception, so you should be able to use the usual Exception methods on it. But it's not a NullPointerException. JasperException is what I get if I mess up the syntax in a JSP page. So, check for that. ...
What is JSP Fragment?
Latest Answer: Fragments Refer to Portal Technology.Where The Portal Server Takes the JSF fragments from different portlets (Sources) and integrate in a page(portal).You can refer igoogle/my.yahoo.com for see it happen. Like different fragments from different portlets ...
Latest Answer: One of the reasons people will use servlets is security.We can provide security in servlets in two ways1.Declaratively2.ProgramaticallyUsing this security features we can guarantee these
security items1.Authenitcation
2.Authorization
3.Data integrity
4.Data ...
How to generate a graph using real time data in jsp.
Latest Answer: nice answer ...
Latest Answer: You cannot override _jspInit() whereas it is possible to override jspInit(). ...
i.e Why we can not run the application like simple java program
Latest Answer: We need web container because our Servlet just does a part of whole thing (creating response to a request) rest is done by server that is 1. Accepts response from client formatted HTTP protocol 2. Map that request to ServletRequest 3. Calling service() ...
Latest Answer: Yes somebody there is correct ...
Latest Answer: JSP is  converted to a servlet called  translated servlets which contains _JspInit(), _JspService and _JspDestroy() methods. ...
View page [1] 2 3 4 5 6 7 8 9 10 Next >>

Go Top