World: r3wp
[!Cheyenne] Discussions about the Cheyenne Web Server
older newer | first last |
Graham 9-Jun-2007 [1428] | url-encoded patch working :) |
Dockimbel 9-Jun-2007 [1429] | Cheyenne release v0.9.14 beta. Download at http://softinnov.org/tmp/cheyenne-r0914.zip Changelog : o response/forward improved : - fully supports URLs as argument (can now forward to another virtual host). - URL validity check (must have an explicit target). - protection against cycles. o Command line option -p extended, now you can specify several listen ports separated by a comma (ex: -p 80,10443). o New command line option -e : load and initialize Cheyenne without entering the event loop (needed for embedding Cheyenne in third party apps). o Added a new experimental module: mod-embed. Purpose is to allow easy Cheyenne integration in third-party REBOL applications that require an embedded web server. (Uncomment mod-embed in httpd.cfg file to activate it) o Added %embed-demo.r file to show a sample of the mod-embed usage and API. o RSP: <% without %> eats all the memory. Fixed. o URL-encoded request values were not parsed correctly. Fixed. o RSP: fixed a typo in 'decode-params blocking the multipart data decoding and also a local word ('type) leaking in GC. o UniServe's service startup refactored to be more flexible. The new mod-embed is experimental. Please look at the %embed-demo.r file and send your feedbacks here. |
Terry 9-Jun-2007 [1430x5] | the mad Doctor cranking it out ;) |
so, i take it each mod-embed can have it's own listen port? | |
hmm.. followed the instructions.. uncommented the httpd.conf (need to comment out the others??) [uniserve] Async Protocol FastCGI loaded [uniserve] Starting task-master... [uniserve] Starting HTTPd... ## Error in [uniserve] : On-received call failed with error: make object! [ code: 303 type: 'script id: 'expect-arg arg1: 'in arg2: 'object arg3: [object! port!] near: [if in site 'on-request [ if site/on-request req params svc [return true] ]] where: 'handler ] ! | |
ahh ok.. need to run embed-demo.r rather than cheyenne.r.. working fine now | |
very very cool.. perfect for this current project | |
btiffin 9-Jun-2007 [1435] | This is somewhat historic imho. Embedding a full featured web server...historic. |
Terry 9-Jun-2007 [1436x4] | Well, you could do this with Uniserve long ago.. just not with such ease and organization. |
trailing slashes seem to play an important part.. will this be an issue with improperly formed urls? | |
cookies still not working with xp ? | |
Ok.. sessions work if i use 127.0.0.1 rather than localhost | |
Graham 9-Jun-2007 [1440x3] | Script: "Cheyenne Web Server" (9-Jun-2007) Script: "Untitled" (none) [uniserve] Async Protocol FastCGI loaded [uniserve] Starting task-master... [uniserve] Starting HTTPd... make object! [ code: 300 type: 'script id: 'no-value arg1: 'do-events arg2: none arg3: none near: [do-events] where: none ] >> |
Needs rebol/view ??? | |
>> do-events: func [ [ "Process all View events." [ ][ [ wait [] [ ] >> do %cheyenne.r Script: "Cheyenne Web Server" (9-Jun-2007) Script: "Untitled" (none) [uniserve] Async Protocol FastCGI loaded [uniserve] Starting task-master... [uniserve] Starting HTTPd... | |
Will 9-Jun-2007 [1443] | in cheyenne.r: - if unset? 'do-events [do-events: does [wait []]] + if not value? 'do-events [do-events: does [wait []]] |
Graham 9-Jun-2007 [1444x2] | must be a mistake |
instead of using do-events, just use wait [] | |
Dockimbel 10-Jun-2007 [1446] | do-events == wait [ ], the docstring inside do-events func spec is not accurate, it should be "Process all events". |
Maarten 10-Jun-2007 [1447x2] | Woha! |
(that's a compliment ;-) | |
Dockimbel 10-Jun-2007 [1449] | Archive re-released with a fixed test for 'do-events. |
Maarten 10-Jun-2007 [1450x2] | 2 questions: will you combine this with nysql:// ? I would like the session management to be databse driven so that load-balancing becomes easier? |
*mysql:// | |
Dockimbel 10-Jun-2007 [1452x2] | hum, it should be possible to store session data in DB, but you'll loose performances compared to keeping it in memory (it's stored in Cheyenne's main process). |
what kind of load-balancing architecture do you have in mind ? | |
Maarten 10-Jun-2007 [1454x5] | multiple web servers with sessions and database driven content. So based on the session ID i generate personalized content |
If the session ID is persistent in a DB any Cheyenne can handle the request | |
Ideally, you can configure the session mgt backend in httpd.cfg | |
Other question: how do I create a friendly URL mapping in Cheyenne? using the publish-site dialect? | |
(hope I'm not too demanding, just trying to match Cheyenne against a lot fatures I use in my projects) | |
Dockimbel 10-Jun-2007 [1459] | If you're using Cheyenne in embed-mode, 'publish-site let you define whatever URL mapping you want. In standalone Cheyenne, there's no general way to define URL mapping, it's currently up to each module (CGI, RSP,...) to handle their specific mappings. I'm hoping that the future mod-rewrite will allow efficient and general URL mapping (there's a mod-rewrite published by Will, who could already do that). |
Maarten 10-Jun-2007 [1460x2] | I think that embedded mode might be the killer. Especially if you can combine it with encapsulation on a virtual file system |
Is there a module writing 101? | |
Dockimbel 10-Jun-2007 [1462] | About the DB stored sessions shared across multiple Cheyenne instances, it would require a significant change in the current way session data and especially, session synchronization is handled (currently, it relies on semaphores and queuing to achieve that). |
Maarten 10-Jun-2007 [1463] | OK. The other option is using a load balancer that support sticky sessions |
Dockimbel 10-Jun-2007 [1464] | Encapsulation with virtual file system : that's planned for next week ;-) |
Oldes 10-Jun-2007 [1465] | And how it's with php and fastcgi? |
Maarten 10-Jun-2007 [1466x2] | But... also for fail-over it is nice to have it databas driven |
OK. Although I must say that on second thought for serverside softwware encapsulation isn't that interesting | |
Dockimbel 10-Jun-2007 [1468] | I agree, sessions need to be stored somewhere on disk for fail-over. |
Oldes 10-Jun-2007 [1469] | Not just session... user passwords as well |
Maarten 10-Jun-2007 [1470] | And credit card numbers! |
Oldes 10-Jun-2007 [1471] | :) |
Terry 10-Jun-2007 [1472] | Yeah, and sessions are fine if you don't mind logging in everytime you open your browser |
Maarten 10-Jun-2007 [1473] | Terry: do you mind? |
Terry 10-Jun-2007 [1474x2] | ? |
What, Im Trolling again? | |
Maarten 10-Jun-2007 [1476x2] | No! I meant : do you mind logging in every time.... |
And if so, what do you prefer and how do you solve it. | |
older newer | first last |