summaryrefslogtreecommitdiffstats
path: root/base/tps/java/org/dogtagpki/tps/server/TPSServlet.java
blob: 78e6df4f8b4a7de5a285183e83d4f9a584e66b00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// --- BEGIN COPYRIGHT BLOCK ---
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; version 2 of the License.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//
// (C) 2013 Red Hat, Inc.
// All rights reserved.
// --- END COPYRIGHT BLOCK ---
package org.dogtagpki.tps.server;

import java.io.IOException;

import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.dogtagpki.tps.TPSConnection;
import org.dogtagpki.tps.TPSMessage;

/**
 * @author Endi S. Dewata <edewata@redhat.com>
 */
public class TPSServlet extends HttpServlet {

    private static final long serialVersionUID = -1092227495262381074L;

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

        response.setHeader("Transfer-Encoding", "chunked");

        TPSConnection con = new TPSConnection(
                request.getInputStream(), response.getOutputStream(), true);

        TPSMessage message = con.read();
        System.out.println("Receive: " + message);

        message = new TPSMessage();
        message.put("msg_type", 9);
        message.put("pdu_size", 12);
        message.put("pdu_data", new byte[] {
                (byte)0x00, (byte)0xA4, (byte)0x04, (byte)0x00,
                (byte)0x07, (byte)0xA0, (byte)0x00, (byte)0x00,
                (byte)0x00, (byte)0x03, (byte)0x00, (byte)0x00
        });

        System.out.println("Send: " + message);
        con.write(message);

        message = con.read();
        System.out.println("Receive: " + message);
    }
}