Category: J2EE Category

Can I create XML pages using JSP technology? 0

Can I create XML pages using JSP technology?

Yes, the JSP specification does support creation of XML documents. For simple XML generation, the XML tags may be included as static template portions of the JSP page. Dynamic generation of XML tags occurs...

How is a JSP page invoked and compiled? 0

How is a JSP page invoked and compiled?

Pages built using JSP technology are typically implemented using a translation phase that is performed once, the first time the page is called. The page is compiled into a Java Servlet class and remains...

How do JSP pages work? 0

How do JSP pages work?

JSP engine interprets tags, and generates the content required – for example, by calling a bean, accessing a database with the JDBC API or including a file. It then sends the results back in...

Session tracking methods in Servlet? 0

Session tracking methods in Servlet?

What is Session? What is Session Management? Why Use Session Management? Different ways to maintain Session. Hidden form field URL rewriting Cookies Servlet session API [ HttpSession ] Session Management Examples What is Session?...

Difference between forward and Redirect 0

Difference between forward and Redirect

forward Control can be forward to resources available within the server from where the call is made. This transfer of control is done by the container internally and browser / client is not involved....