michael@0: function handleRequest(request, response) michael@0: { michael@0: response.setStatusLine("1.0", 200, "OK"); michael@0: response.setHeader("Content-Type", "text/plain; charset=utf-8", false); michael@0: response.write("Ciao"); michael@0: }