Servlet Essentials Java / JSP and Servlets
This document explains the concepts of Java Servlets and provides a step-by-step tutorial for writing HTTP Servlets with complete source code for the example Servlets. The tutorial and the other chapters cover all facets of Servlet programming from a simple "Hello World" Servlet to advanced Servlet features like session tracking and Cookies. There are also appendices on compiling and running Servlets. The reader is assumed to have some basic knowledge of HTML and Java programming.
Forwarding and Including Response from other Servlets Java / JSP and Servlets
In this article we will learn how to pass control from one Servlet to another using RequestDispatcher.forward() method and how to include response from another Servlet within the caller Servlet using RequestDispatcher.include() method.
First Servlets Java / JSP and Servlets
A Simple Servlet Generating Plain Text, Compiling and Invoking the Servlet, A Simple Servlet Generating HTML, and Some Simple HTML Utilities for Servlets.
An Introduction to Java Servlets Java / JSP and Servlets
In this article I will describe the overall servlet architecture and what you need to develop your application with servlets. I will use several code examples to show you how to use the Servlet API, and compare it with CGI and proprietary server APIs where appropriate.
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.
Creating Images in a Java Servlet Java / JSP and Servlets
Dynamic images are commonly used in web applications. You will find dynamic images such as charts, captcha, web site thumbnails, image thumbnails, watermarks, etc. This tutorial will give you a brief walk through on creating a simple dynamic image in a Java Servlet.
Struts Java / Getting Started
Struts is a open source framework which make building of the web applications easier based on the java Servlet and JavaServer pages technologies.
Accessing EJBs through firewalls Java / EJB and Javabeans
Ever try to write a J2EE application accessing EJBs across a firewall? It can be messy, and developers often must resort to all kinds of workarounds, none of them particularly "neat." Developers often write a servlet to intercept HTTP requests and delegate them to EJBs, which is kind of a kludge. Another approach that uses tunneling technologies - such as RMI over HTTP - can entail a big performance hit. But there is a better way. You can solve this problem elegantly by using Java Secure Socket Extension (JSSE).