Java tutorial
package com.conwet.silbops.connectors.comet.handlers; /* * #%L * SilboPS Service * %% * Copyright (C) 2011 - 2014 CoNWeT Lab., Universidad Politcnica de Madrid * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * 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 Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * #L% */ import java.io.IOException; import java.io.PrintWriter; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.json.simple.JSONObject; import org.json.simple.JSONValue; import org.json.simple.parser.ParseException; import com.conwet.silbops.apibroker.EndPoint; import com.conwet.silbops.broker.Broker; import com.conwet.silbops.connectors.comet.ConnectionStatus; import com.conwet.silbops.connectors.comet.HttpEndPoint; import com.conwet.silbops.model.Context; import com.conwet.silbops.msg.ContextMsg; public class ContextResponse extends AbstractResponse { public ContextResponse(Broker broker, String recvMessage, ConnectionStatus connStatus) { super(broker, recvMessage, connStatus); } @Override protected void reply(HttpServletRequest req, HttpServletResponse res, PrintWriter writer, HttpEndPoint httpEndPoint, EndPoint connection) { try { String context = retriveParameter(req, "context"); JSONObject jsonContext = (JSONObject) JSONValue.parseWithException(context); ContextMsg msg = new ContextMsg(null, Context.fromJSON(jsonContext)); logger.debug("Endpoint {}, Context: {}", httpEndPoint, msg); broker.receiveMessage(msg, connection); writeOut(writer, httpEndPoint.getEndPoint(), "context success"); } catch (ParseException ex) { logger.warn("Context exception: {}", ex.getMessage()); try { res.sendError(HttpServletResponse.SC_BAD_REQUEST); } catch (IOException ex1) { logger.warn("Context reply exception: {}", ex1.getMessage()); } } } @Override protected boolean supportPublisherOperations() { return false; } @Override protected boolean supportSubscriberOperations() { return true; } }