[Seaside] The best combination of stuff for SeaSide?

Lukas Renggli renggli at hotmail.com
Mon May 19 17:37:54 CEST 2003


Stephen,

although this is not a Seaside related question, I risk to ask it here 
anyway: I've just downloaded Comanche 6.1 from SM today and setup the 
following configuration to map all the requests beginning with '/seaside' to 
WAKom and all beginning with '/resources' to a local directory:

	| module |
	module := ModuleAssembly core.
	module alias: '/seaside' to: [
		module addPlug: [ :request | self seaside process: request ] ].
	module alias: '/resources' to: [
		module documentRoot: self resourcePath.
		module directoryIndex: 'index.html index.htm'.
		module serveFiles ].
	(HttpService startOn: 8080 named: 'PLKom')
		plug: module rootModule.

On Windows it works perfectly, but on Macintosh I have troubles accessing 
files (the file listing works perfectly):

What I type in the browser:
http://..../resources/5b.jpeg

What I get from the server:
The requested URL /resources/5b.jpeg/ was not found on this server

Thanks for any help (or corrections, if I am doing something wrong), 
relating this problem
Lukas

_________________________________________________________________




More information about the Seaside mailing list