http://fce.cc.gatech.edu/~bolot/squeak/comanche/kom47-beyond.05Feb2002.cs.gz this is the latest 'beyond' package, it incorporates the previous one and adds some new things to play with: - (old) PWSComanche(Server|Service) -- use ConnectionQueue - LTDComanche(Server|Service) -- use Lex's limitConnections patch - fix to String-to-HttpResponse conversion - add HelloWorldModule example Get Comanche 4.7 from: http://fce.cc.gatech.edu/~bolot/squeak/comanche/kom47-base.16Jan1158.cs.gz You can use the below as your admin workspace: (note that you can change the module at run time) svc := LTDComancheService named: 'Comanche' onPort: 8080. svc comancheServer limitConnectionsTo: 5. svc module: (HelloWorldModule new). svc module: (RemoteDisplayModule new). svc start. Preferences disable: #standaloneServer "to stop this madness, execute the two lines below" ComancheNetService removeServiceNamed: 'Comanche'. | che | (che := ComancheServer serverOnPort: 8080 ifAbsent: []) ifNotNil: [che stop] Bolot
