Show TOC Start of Content Area

Procedure documentation Creating the QuickReservationServlet Servlet  Locate the document in its SAP Library structure

 

You will now add another Web resource, a servlet named QuickReservationServlet, to the Web project.

The servlet is need to handle requests sent from the JSP; to process them; to call the appropriate business methods from the session bean QuickOrderProcessorBeans; and finally to format the data records for display in the JSP.

Prerequisites

This graphic is explained in the accompanying textThis graphic is explained in the accompanying text

The structure of the Web project QuickCarRentalWeb is currently displayed in the J2EE Explorer.

Procedure

...

       1.      In the J2EE Explorer, to open the relevant wizard, choose New Servlet… from the context menu of the project node QuickCarRentalWeb.

       2.      In Servlet Name, enter QuickReservationServlet.

       3.      Choose the servlet type HTTP Servlet.

       4.      Assign the package com.sap.examples.quickcarrental.servlet as the Servlet Package.

       5.      Activate the checkboxes for the two servlet methods doGet() and doPost().

 

This graphic is explained in the accompanying text

 

       6.      Choose Finish.

Result

The wizard creates the servlet file QuickReservationServlet along with the two methods doGet()and doPost().

 

Next step:

Adding Source Code to the Servlet

 

 

 

End of Content Area