1 / 35

CS6320 – Servlet Request and Response

CS6320 – Servlet Request and Response. L. Grewe. (HTTP) response. MyServlet. service(request,response). (HTTP) request. Recall Servlet Invocation. Servlet operates on Request/Response. Web Browser. Client Request Data.

simone
Télécharger la présentation

CS6320 – Servlet Request and Response

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. CS6320 – Servlet Request and Response L. Grewe

  2. (HTTP) response MyServlet service(request,response) (HTTP) request Recall Servlet Invocation • Servlet operates on Request/Response. Web Browser

  3. Client Request Data • When a user submits a browser request to a web server, it sends two categories of data: • HTTP Request Header Data: Data that is automatically appended to the HTTP Request from the client. • For example: cookies, browser type, etc, • Data: Data sent by client. Example: the user explicitly typed into an HTML form. • i.e.: login and password

  4. An HTTP Header Request Example GET/default.asp HTTP/1.0 Accept:image/gif, image/x-xbitmap, image/jpeg, image/png, */* Accept-Language:en Connection:Keep-Alive Host:magni.grainger.uiuc.edu User-Agent:Mozilla/4.04 [en] (WinNT; I ;Nav) Cookie:SITESERVER=ID=8dac8e0455f4890da220ada8b76f; ASPSESSIONIDGGQGGGAF=JLKHAEICGAHEPPMJKMLDEM Accept-Charset: iso-8859-1,*,utf-8 See also class website module for further examples/information

  5. Reading HTTP Request Headers

  6. Sample HTTP Request • Example of a HTTP Request to Yahoo.com GET / HTTP/1.1 Accept: */* Accept-Language: en-us Accept-Encoding: gzip, deflate User-Agent: Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt) Host: www.yahoo.com Connection: Keep-Alive Cookie: B=2td79o0sjlf5r&b=2 Tip: Check out: http://www.web-sniffer.net

  7. Accessing HTTP Headers • To access any of these Headers, the use the HTTPServletRequest getHeader() method. • For example: • String connection = req.getHeader(“Connection”); • To retrieve a list of all the Header Names, use the getHeaderNames() method. • getHeaderNames() returns an Enumeration object. • For example: • Enumeration enum = req.getHeaderNames();

  8. Additional HTTP Information • getMethod() • Indicates the request method, e.g. GET or POST. • getRequestURI() • Returns the part of the URL that comes after the host and port. For example, for the URL: http://randomhost.com/servlet/search, the request URI would be /servlet/search. • getProtocol() • Returns the protocol version, e.g. HTTP/1.0 or HTTP/1.1 • Methods for specific request information: getCookies, getContentLength, getContentType, getMethod, getProtocol, etc. See api and class website for more

  9. Example 1 • Our first example echoes all of the HTTP Request Information. • First, it outputs: • Method • RequestURI • Protocol Version • Then, it calls getHeaderNames() to retrieve a list of all HTTP Header Names. • For each header name, it then calls getHeader()

  10. package coreservlets; import java.io.*; import javax.servlet.*; import javax.servlet.http.*; import java.util.*; public class ShowRequestHeaders extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setContentType("text/html"); PrintWriter out = response.getWriter(); String title = "Servlet Example: Showing Request Headers"; out.println(ServletUtilities.headWithTitle(title) + "<BODY BGCOLOR=\"#FDF5E6\">\n" + "<H1 ALIGN=CENTER>" + title + "</H1>\n" + "<B>Request Method: </B>" + request.getMethod() + "<BR>\n" + "<B>Request URI: </B>" + request.getRequestURI() + "<BR>\n" + "<B>Request Protocol: </B>" + request.getProtocol() + "<BR><BR>\n" + "<TABLE BORDER=1 ALIGN=CENTER>\n" + "<TR BGCOLOR=\"#FFAD00\">\n" + "<TH>Header Name<TH>Header Value"); Continued….

  11. Enumeration headerNames = request.getHeaderNames(); while(headerNames.hasMoreElements()) { String headerName = (String)headerNames.nextElement(); out.println("<TR><TD>" + headerName); out.println(" <TD>" + request.getHeader(headerName)); } out.println("</TABLE>\n</BODY></HTML>"); } /** Let the same servlet handle both GET and POST. */ public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { doGet(request, response); } }

  12. Reading Browser Types • The User-Agent HTTP header indicates the browser and operating system. • For example: • user-agent Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) • You can use this header to differentiate browser types or simply log browser requests.

  13. Example User-Agents • Internet Explorer: • user-agent Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) • Mozilla • Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4) Gecko/20030624 • For strange historical reasons, IE identifies itself as “Mozilla” • To differentiate between the two, use “MSIE”, not “Mozilla”.

  14. CGI Variables • In addition to HTTP Request headers, you can also determine additional information about both the client and the server: • IP Address of Client • Host Name of Client • Server Name • Server Port • Server Protocol • Server Software

  15. Getting Request Data

  16. Data from HTML form • Using HTML forms, we can pass parameters to Web applications • <form action=… method=…> …</form>comprises a single form • action:the address of the application to which the form data is sent • method: the HTTP method to use when passing parameters to the application (e.g.get or post)

  17. The <input> Tag • Inside a form, INPUT tags define fields for data entry • Standard input types include: buttons, checkboxes, password fields, radio buttons, text fields, image-buttons, text areas, hidden fields, etc. • They all associate a single (string) value with a named parameter

  18. GET Example <form method="get" action="http://www.google.com/search"> <p><input name="q" type="text" /> <input type="submit" /> <input type="reset" /> </p> </form> http://www.google.com/search?q=servlets

  19. Getting the Parameter Values • To get the value of a parameter named x: • req.getParameter("x") where req is the service request argument • If there can be multiple values for the parameter: • req.getParameterValues("x") • To get parameter names: • req.getParameterNames()

  20. Example • HTML Form that asks users for colors, etc. • Uses these colors to control the response’s background and foreground colors.

  21. <html><head><title>Sending Parameters</title> <style type="text/css"> p{display:table-row} span{display:table-cell; padding:0.2em} </style></head><body> <h1>Please enter the parameters</h1> <form action="SetColors" method="get"> <p>Background color: <span><input type="text" name="bgcolor"/></span></p> <p>Font color: <span><input type="text" name="fgcolor"/> </span> </p> <p>Font size: <span><input type="text" name="size"/></span></p> <h2> <input type="submit" value="Submit Parameters"/></h2> </form> </body></html> parameters.html

  22. An Example (cont) publicclass SetColors extends HttpServlet { publicvoid doGet(HttpServletRequest request,HttpServletResponse response) throws ServletException, IOException { response.setContentType("text/html"); PrintWriter out = response.getWriter(); String bg = request.getParameter("bgcolor"); String fg = request.getParameter("fgcolor"); String size = request.getParameter("size"); SetColors.java

  23. An Example (cont) out.println("<html><head><title>Set Colors Example" +"</title></head>"); out.println("<body style=\"color:" + fg + ";background-color:" + bg + ";font-size:"+ size + "px\">"); out.println("<h1>Set Colors Example</h1>"); out.println("<p>You requested a background color " + bg + "</p>"); out.println("<p>You requested a font color " + fg + "</p>"); out.println("<p>You requested a font size " + size + "</p>"); out.println("</body></html>"); } SetColors.java

  24. Servlet Response

  25. HTTP Response • The response includes: • Status line: version, status code, status message • Response headers • Empty line • Content HTTP/1.1 200 OK Content-Type: text/html Content-Length: 89 Server: Apache-Coyote/1.1 <HTML><HEAD><TITLE>HELLO WORLD</TITLE></HEAD> <BODY><H1>Hello World </H1></BODY></HTML>

  26. Sample HTTP Response • Another example HTTP/1.1 200 OK Date: Mon, 06 Dec 1999 20:54:26 GMT Server: Apache/1.3.6 (Unix) Last-Modified: Fri, 04 Oct 1996 14:06:11 GMT Content-length: 327 Connection: close Content-type: text/html <title>Sample Homepage</title> <img src="/images/oreilly_mast.gif"> <h1>Welcome</h2>Hi there, this is a simple web page. Granted, it may…

  27. Generating Responses • Servlets can return any HTTP response they want. • Useful for lots of scenarios: • Redirecting to another web site. • Restricting access to approved users. • Specifying content-type other than text/html. • Return images instead of HTML.

  28. Setting the Response Status • See other class material for details. • Use the following HttpServletResponse methods to set the response status: • setStatus(int sc) • Use when there is no error, like 201 (created) • sendError(sc), sendError(sc, message) • Use in erroneous situations, like 400 (bad request) • The server may return a formatted message • sendRedirect(String location) • Redirect to the new location

  29. Setting the HTTP Status Code • Be sure to set the status code before sending any document content to the client.

  30. Using setStatus() • setStatus takes an integer value. But, it’s best to use the predefined integers in the HttpServletResponse. Here are a few: • SC_BAD_REQUEST • Status code (400) indicating the request sent by the client was syntactically incorrect. • SC_FORBIDDEN • Status code (403) indicating the server understood the request but refused to fulfill it. • SC_INTERNAL_SERVER_ERROR • Status code (500) indicating an error inside the HTTP server which prevented it from fulfilling the request. • SC_NOT_FOUND • Status code (404) indicating that the requested resource is not available.

  31. Sending Redirects • You can redirect the browser to a different URL by issuing a Moved Temporarily Status Code: • SC_MOVED_TEMPORARILY: Status code (302) indicating that the resource has temporarily moved to another location. • Because this is so common, the HttpServletResponse interface also has a sendRedirect() method. • Example: res.sendRedirect( “http://www.yahoo.com”);

  32. package coreservlets; import java.io.*; import javax.servlet.*; import javax.servlet.http.*; public class WrongDestination extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { String userAgent = request.getHeader("User-Agent"); if ((userAgent != null) && (userAgent.indexOf("MSIE") != -1)) { response.sendRedirect("http://home.netscape.com"); } else { response.sendRedirect("http://www.microsoft.com"); } } }

  33. Setting Response Headers • Use the following HTTPServletResponse methods to set the response headers: • setHeader(String hdr, String value), setIntHeader(String hdr, int value) • Override existing header value • addHeader(String hdr, String value), addIntHeader(String hdr, int value) • The header is added even if another header with the same name exists

  34. Specific Response Headers • Class HTTPServletResponse provides setters for some specific headers: • setContentType • setContentLength • automatically set if the entire response fits inside the response buffer • setDateHeader • setCharacterEncoding

  35. More Header Methods • containsHeader(String header) • Check existence of a header in the response • addCookie(Cookie) • sendRedirect(String url) • automatically sets the Location header • Do not write into the response after sendError or sendRedirect

More Related