PackageDescription: Swazoo-Development(Bundle)


Swazoo - Development

Last published: November 27, 2006 by 'bbadger'


Here is how to start the simplest possible HTTP server (so, for simplicity, I make it single-thread):

Swazoo.HTTPServer new
ip: 'localhost';
port: 8080;
setSingleThreading;
start

Swazoo.HTTPServer allInstances do: [:anHTTPServer | anHTTPServer stop]