On 30-Jan-09, at 10:41 PM, lowlycoder wrote:
can i write web apps using jazz scheme? if so, please give me some pointers. thanks!
You can also try out the Gambit web-server example in examples/web- server and there is also a web server on the Gambit dumping grounds which implements cookies and server pages (http://dynamo.iro.umontreal.ca/~gambit/wiki/index.php/Dumping_Grounds#Full_A... ).
Marc
Afficher les réponses par date
On 31-Jan-09, at 11:26 AM, Marc Feeley wrote:
On 30-Jan-09, at 10:41 PM, lowlycoder wrote:
can i write web apps using jazz scheme? if so, please give me some pointers. thanks!
You can also try out the Gambit web-server example in examples/web- server and there is also a web server on the Gambit dumping grounds which implements cookies and server pages (http://dynamo.iro.umontreal.ca/~gambit/wiki/index.php/Dumping_Grounds#Full_A... ).
Marc
By the way, to get the dumping grounds web server application working on recent releases of Gambit you must change the definition of open- server-socket in server.scm to:
(define (open-server-socket host port) ;; (declare (fixnum port)) (open-tcp-server (list eol-encoding: 'cr-lf server-address: (or host "localhost") ;; #f is no longer accepted port-number: port reuse-address: #t)))
Marc
2009/1/31 Marc Feeley feeley@iro.umontreal.ca
On 31-Jan-09, at 11:26 AM, Marc Feeley wrote:
On 30-Jan-09, at 10:41 PM, lowlycoder wrote:
can i write web apps using jazz scheme? if so, please give me some pointers. thanks!
You can also try out the Gambit web-server example in examples/web- server and there is also a web server on the Gambit dumping grounds which implements cookies and server pages (
http://dynamo.iro.umontreal.ca/~gambit/wiki/index.php/Dumping_Grounds#Full_A...http://dynamo.iro.umontreal.ca/%7Egambit/wiki/index.php/Dumping_Grounds#Full_Applications
).
Marc
By the way, to get the dumping grounds web server application working on recent releases of Gambit you must change the definition of open- server-socket in server.scm to:
(define (open-server-socket host port) ;; (declare (fixnum port)) (open-tcp-server (list eol-encoding: 'cr-lf server-address: (or host "localhost") ;; #f is no longer accepted port-number: port reuse-address: #t)))
Marc
Gambit-list mailing list Gambit-list@iro.umontreal.ca https://webmail.iro.umontreal.ca/mailman/listinfo/gambit-list
The evolution of the old dumping grounds web server is the one that you could find at http://futhark.berlios.de/
I've replaced the old one in the dumping grounds with a newer version. it is also avaliable as git repository
git clone git://git.berlios.de/futhark
francesco bracchi