Example usage for org.apache.commons.httpclient.server SimpleHttpServerConnection writeResponse

List of usage examples for org.apache.commons.httpclient.server SimpleHttpServerConnection writeResponse

Introduction

In this page you can find the example usage for org.apache.commons.httpclient.server SimpleHttpServerConnection writeResponse.

Prototype

public void writeResponse(final SimpleResponse response) throws IOException 

Source Link

Usage

From source file:org.eclipse.ecf.tests.remoteservice.rest.service.SimpleRestService.java

protected void hookResponse(SimpleHttpServerConnection conn, String body) throws IOException {
    SimpleResponse res = new SimpleResponse();
    res.setStatusLine(HttpVersion.HTTP_1_1, HttpStatus.SC_OK);
    res.setBodyString(body);/* w  w  w.j  a  v  a  2s  . co  m*/
    conn.setKeepAlive(false);
    conn.writeResponse(res);
}