Introduction to Servlet Programming
Introduction
The servlet interface is designed to make creating Web applications an easy and intuitive process. This chapter explains the process of creating a servlet and presents the code for a simple servlet.
The servlet described in this section is included in the files HelloWorldExample.h and HelloWorldExample.cpp in the examples\servlet directory of the HydraExpress installation. The servlet itself is available at http://localhost:8090/examples/HelloWorldExample on a system running HydraExpress.
Creating and deploying a servlet involves the following steps:
Define the servlet by using the
RWSF_DEFINE_SERVLET macro within a single source file (
Defining the Servlet)
If the servlet resides in a new context, configure any external Web servers to forward requests to the new context.
Forward Requests From a Web Server describes the process of reconfiguring the Web server.