XML and JSP are two of the hottest buzzwords these days. This article shows how you can use these two technologies together to make a dynamic Website. You also get a look at code examples for DOM, XPath, XSL, and other Java-XML techniques.
XML generation with JAVA Java / XML and Java
XML developers used to rely on XML parsers to read XML files. They also used to rely on XML processors to transform XML to *ML (HTML, XML ...). However, most of them forget these tools to generate XML from scratch.
JSP Tutorial For Beginners Java / JSP and Servlets
JSP is part of the Java technology family. JSP technology is a key component in a highly scalable architecture for web-based applications.
A JSP is translated into Java servlet before being run, and it processes HTTP requests and generates responses like any servlet.
Like ASP or PHP, JSP also has dynamic scripting capability that works with HTML code, separating the web page logic from the static elements.
Sending E-Mails with JSP Pages Java / JSP and Servlets
In this article we will learn how to send simple text emails using JSP pages. Since it is not a good habit to put Java code in JSP pages, we will create a JavaBean to do that.
JSP templates Java / JSP and Servlets
This article explores a template mechanism for JavaServer Pages (JSP) that, like layout managers, encapsulates layout so it can be reused instead of replicated.
Reading and Parsing XML Files with Enterprise JavaBeans Java / General Development
In this tutorial you will learn how to read XML files using Java. We will then apply this knowledge to create a Session bean ( EJB ) with ability to read given XML file and return a Java object containing values read from the XML file.
Herong's Tutorial Notes on JSP and JSTL Java / JSP and Servlets
It is a collection of notes and sample codes written by the author while he was learning JSP and JSTL himself. Topics include attachment, content-disposition, content_type, cookie, custom tag, debugging, expression language, file upload, header lines.
Counting Active Users using JSP Java / JSP and Servlets
Ever wondered how many users are viewing your website at this moment? well this article seems to answer that. In this article we will build a JSP page and a session listener class which will allow you to determine how many users are viewing your site in real time.