summaryrefslogtreecommitdiffstats
path: root/base/tps-tomcat/src/org/dogtagpki/tps/server/TPSServlet.java
diff options
context:
space:
mode:
Diffstat (limited to 'base/tps-tomcat/src/org/dogtagpki/tps/server/TPSServlet.java')
-rw-r--r--base/tps-tomcat/src/org/dogtagpki/tps/server/TPSServlet.java61
1 files changed, 61 insertions, 0 deletions
diff --git a/base/tps-tomcat/src/org/dogtagpki/tps/server/TPSServlet.java b/base/tps-tomcat/src/org/dogtagpki/tps/server/TPSServlet.java
new file mode 100644
index 000000000..78e6df4f8
--- /dev/null
+++ b/base/tps-tomcat/src/org/dogtagpki/tps/server/TPSServlet.java
@@ -0,0 +1,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);
+ }
+}