server = HttpServer.create(addr, 10);
server.createContext("/ATOM", new GenericHandler("public_timeline.atom"));
server.createContext("/RSS", new GenericHandler("public_timeline.rss"));
server.createContext("/SOAP", new GenericHandler("simple_soap.xml"));
server.createContext("/JSON", new GenericHandler("public_timeline.json"));
server.createContext("/XML", new GenericHandler("public_timeline.xml"));
server.createContext("/TEXT", new TEXTHandler());
server.createContext("/TEXT2", new TEXTHandler());