Lines Matching refs:response

16     public void doGet(HttpServletRequest request, HttpServletResponse response)  in doGet()  argument
20 response.setContentType("text/plain;charset=utf-8"); in doGet()
21 response.setHeader("X-Character-Encoding", response.getCharacterEncoding()); in doGet()
22 response.setHeader("X-Content-Type", response.getContentType()); in doGet()
27 response.setContentType("text/plain"); in doGet()
28 response.setHeader("X-Character-Encoding", response.getCharacterEncoding()); in doGet()
29 response.setHeader("X-Content-Type", response.getContentType()); in doGet()
34 response.setContentType("text/plain;charset=utf-8"); in doGet()
35 response.setCharacterEncoding("windows-1251"); in doGet()
36 response.setHeader("X-Character-Encoding", response.getCharacterEncoding()); in doGet()
37 response.setHeader("X-Content-Type", response.getContentType()); in doGet()
42 response.setCharacterEncoding("windows-1251"); in doGet()
43 response.setContentType("text/plain"); in doGet()
44 response.setHeader("X-Character-Encoding", response.getCharacterEncoding()); in doGet()
45 response.setHeader("X-Content-Type", response.getContentType()); in doGet()
50 response.setContentType("text/plain;charset=utf-8"); in doGet()
51 response.setCharacterEncoding(null); in doGet()
52 response.setHeader("X-Character-Encoding", response.getCharacterEncoding()); in doGet()
53 response.setHeader("X-Content-Type", response.getContentType()); in doGet()
58 response.setContentType("text/plain;charset=utf-8"); in doGet()
59 response.setContentType(null); in doGet()
60 response.setHeader("X-Character-Encoding", response.getCharacterEncoding()); in doGet()
61 response.setHeader("X-Content-Type", response.getContentType()); in doGet()
66 response.setContentType("text/plain;charset=utf-8"); in doGet()
68 PrintWriter out = response.getWriter(); in doGet()
70 response.setCharacterEncoding("windows-1251"); in doGet()
71 response.setHeader("X-Character-Encoding", response.getCharacterEncoding()); in doGet()
72 response.setHeader("X-Content-Type", response.getContentType()); in doGet()
77 response.setContentType("text/plain;charset=utf-8"); in doGet()
79 PrintWriter out = response.getWriter(); in doGet()
81 response.setContentType("text/html;charset=windows-1251"); in doGet()
82 response.setHeader("X-Character-Encoding", response.getCharacterEncoding()); in doGet()
83 response.setHeader("X-Content-Type", response.getContentType()); in doGet()
87 response.sendError(404); in doGet()