Example usage for javax.servlet.http HttpServlet subclass-usage

List of usage examples for javax.servlet.http HttpServlet subclass-usage

Introduction

In this page you can find the example usage for javax.servlet.http HttpServlet subclass-usage.

Usage

From source file SendWord.java

public class SendWord extends HttpServlet {
    public void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        //get the 'file' parameter
        String fileName = (String) request.getParameter("file");
        if (fileName == null || fileName.equals(""))

From source file DateLocaleServlet.java

public class DateLocaleServlet extends HttpServlet {

    public void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, java.io.IOException {

        //Get the client's Locale

From source file org.oryxeditor.server.BPMN2XPDLServlet.java

/**
 * Copyright (c) 2010 Markus Goetz
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights

From source file SessionSnoop.java

public class SessionSnoop extends HttpServlet {

    public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException {
        res.setContentType("text/html");
        PrintWriter out = res.getWriter();

From source file SendXml.java

public class SendXml extends HttpServlet {

    public void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {

        //get the 'file' parameter

From source file RequestDisplay.java

public class RequestDisplay extends HttpServlet {

    public void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, java.io.IOException {

        ContextObject obj = (ContextObject) request.getAttribute("com.java2s.RequestObject");

From source file ContextBinder.java

public class ContextBinder extends HttpServlet {

    public void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, java.io.IOException {

        //bind an object to the servlet context

From source file CounterServer.java

public class CounterServer extends HttpServlet {
    static final String COUNTER_KEY = "Counter.txt";

    public void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        HttpSession session = req.getSession(true);
        int count = 1;

From source file SendMp3.java

public class SendMp3 extends HttpServlet {

    public void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {

        String fileName = (String) request.getParameter("file");

From source file ResourceServlet.java

public class ResourceServlet extends HttpServlet {

    public void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {

        //get web.xml for display by a servlet