|
Forum
Candy dollz makers: Forum - read and add news
Quote by User: Content The Java Servlet API allows a software developer to add dynamic content to a web server using Java platform The generated content is commonly HTML but may be other data such as XML Servlets are Java counterpart to dynamic web content technologies such as CGI or ASP It has ability to maintain state after many server transactions This is done using HTTP Cookies session variables or URL rewriting Content A servlet is a java program that runs on a server Content A Java program that runs as part of a network service typically on an HTTP server responds to requests from clients The most common use for a servlet is to extend a web server by generating web content dynamically For example a client may need information from a database a servlet can be written that receives request gets processes data as needed by client then returns result to client Content A Java program which resides executes on a server to provide functionality to server or processing of data on server
|