Help with Swazoo 1.0

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

Help with Swazoo 1.0

Glenn Swanlund-3
I'm trying to get Swazoo 1.0 running on a fresh image of D6 Pro but
can't get it started. The test is as follows:

   site := Site new name: 'test'.
   site host: 'localhost' ip: '127.0.0.1' port: 8888.
   SwazooServer singleton addSite: site.
   site start.
   resource := HelloWorldResource new uriPattern: 'helloworld.html'.
   composite := CompositeResource new uriPattern: '/'.
   composite addResource: resource.
   (SwazooServer singleton siteNamed: 'test') addResource: composite.

Can anyone point out what else is needed to get it running?

Regards,
Glenn