Java Servlet API Description Document (2.1A) (4)
Summary
Continued Java Servlet API Description Document (2.1A) (3) (2002-08-29 13:28:27)
By Wing, Source:
LinuxAid
Glossary
Bytecode bytecode: Machine code generated by the Java compiler and Java interpreter.
Cookie is created by the web server, which is stored on the user's computer, providing a web site to track the user's parameters and store the method on the user's own hard drive.
HTTP hypertext transport protocol. A request response protocol is used to connect to the WWW server to transfer the HTML page into the client browser, which is defined by the ServletInputStream class, which is used by servlet to read the request from the client. Map pairs of URLs that return data by servlet instances and servlets, for example, Helloservlet and /Hello/index.html. Output stream object an object, defined by the servletoutPutStream Class class, is used by servlet to return data to the client.
The Request Dispatcher Object is defined by the RequestDispatcher interface to receive requests from the client and send it to other resources available on the web server (such as servlet, CGI, HTML files, or JSP files).
Sandboxed Servlet runs servlets under a security constraint.
A small, a platform-independent, a Java program without a graphical user interface. It can expand the functionality of Web services in many ways.
The Servlet Configuration Object ServletConfig interface defines an object to configure a servlet.
The Servlet Context Object ServletContext interface defines an object. Give the servlet information about the servlet engine.
The servlet engine is created by the web server provider that allows servlets to be run on a specific web server.
The Servlet requests an object by the servletRequest interface to allow the servlet to get the data requested by the client.
Servlet Response Object is defined by the servletResponse interface that allows the servlet to respond.
The Sun.Servlet.http.httpserver process in Servlet Runner Java Servlet Developer's Kit (JSDK), which makes servlets run. Session Tracking In a web application, identifying a continuous unique request from the same client. SSL encryption socket protocol layer. A security protocol that swaps key and encrypted data on client browsers and servers on your iTernet. URI unified resource logo. Define an Internet address, it is a URL superchard. URL unified resource path. This address defines the route to files reached on a WWW, which is usually composed of protocol prefix, domain name, directory name, and file name.