r3wp [groups: 83 posts: 189283]
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r3wp

[!Cheyenne] Discussions about the Cheyenne Web Server

Dockimbel
28-May-2007
[561]
The bugtracker will be fully open sourced and will also serve as 
demo of a complete online application done in RSP with a DB backend 
(MySQL currently).
Graham
28-May-2007
[562]
cool
Will
28-May-2007
[563]
I'd say GREAT! the live patching was a real adrenaline experience 
8-))
btiffin
28-May-2007
[564]
great news.
BrianH
28-May-2007
[565]
I always love your work :)
Maarten
29-May-2007
[566]
Love it!
DaveC
29-May-2007
[567]
Look forward to your new release. Keep up the good work!
Dockimbel
29-May-2007
[568]
Thanks you all, guys, for your enthusiasm! :-)
Henrik
29-May-2007
[569]
looking forward to trying it. will Cheyenne be R2 only?
Pekr
29-May-2007
[570x2]
So RSP and sessions are already working? That's cool! Top quality 
http server which does not need to be installed!
And I am loooking forward to compare Cheyenne R2 vs Cheyenne R3 (using 
threads), and to see speed, and system resources requirements :-)
Will
29-May-2007
[572]
about R2, have an ajax app with db calls (ok mysql +query cache enabled) 
, 200 reqs/sec brings a dualG5 2GHz at 80% cpu pretty fast 8-)
Pekr
29-May-2007
[573x2]
isn't 200 req/sec job for some server, than desktop machine? ;-)
ah, misplace RSP with RPC, heh :-) RSP - typical old model :-)
Will
29-May-2007
[575]
now that Cheyenne is ultrastable on heavy traffic, I'm more looking 
forward to a Intel native rebol for os x running on a 8core xserve 
than a R3 version ;-)
Pekr
29-May-2007
[576x2]
why? Shouldn't R3 be just more async and shouldn't threading be there 
to provide us with better scaling?
btw - could I do following? Set my .html files to be treated as CGI, 
via some handler? I can't stand using mixing templates with html 
codes, especially in that manner, where your template code ruins 
normal browser display ....
Will
29-May-2007
[578x2]
still looking forward to a faster R3 version, shouldn't be to hard 
to add machines and distribute task-handlers , and if the main process 
get too busy, put a lighthttpd proxy in front.
not sure I understand but you can set .html in config to be handled 
by rsp
Pekr
29-May-2007
[580]
I simply want my index.html (or other) to be submitted to mine registered 
cgi, which I call rsp.cgi. This "dispatcher" looks into list, if 
this page is registered as dynamic, and if not, returns requested 
html page directly, or scans it for module names, which are then 
loaded and know what to do. I simply want my gfx man to have free 
hands, not requiring to fill any rebol code into templates - just 
marking sections ...
Will
29-May-2007
[581]
you could pretty easly write a mod, you may able to do that with 
mod-rewrite which get called in the url-translate phase
Pekr
29-May-2007
[582]
ok, fair enough, thanks :-)
Maarten
29-May-2007
[583]
Doc: will Cheyenne also be available as source and Linux binary (and 
FreeBSD)? If you need help whit encapping, let me know.
Dockimbel
29-May-2007
[584]
Yes, it will be released also as binaries in separate packages (apart 
from the source code package). I already have binaries for windows 
and linux, i'll be glad if you could encap it for FreeBSD.
Terry
29-May-2007
[585]
Is it wednesday in Europe yet ;)
Dockimbel
29-May-2007
[586x4]
Btw, the encapping system for Cheyenne is a little odd : to be able 
to run it in normal mode and encap mode without changing the source 
code, I wrote a special lib emulating the filesystem but in memory. 
I didn't had time yet to check if Ladislav's Include could do the 
job. My encapping system needs to generate a .encap-fs file, so it 
needs that Cheyenne be run in normal mode at least once. I'll document 
that in a few days.
Terry, not yet ! ;-P
Cheyenne early release 0.9.10.0 (source code only) : http://softinnov.org/tmp/cheyenne-r09100.zip
See Cheyenne/docs/rsp.html for the new RSP API (the doc is half complete, 
I should finish it tomorrow and add a CSS)
Terry
29-May-2007
[590x2]
Im looking to run my Uniserve service along side of Cheyenne.. using 
a particular port.. but the one last thing i need to do is pass messages 
from the httpd to the service.. will this be trivial?
Cool
Dockimbel
29-May-2007
[592x2]
I also add a general manual for setting up Cheyenne and basic CGI, 
RSP and Session concepts in the next days.
I also -> I'll also
Louis
29-May-2007
[594]
Thanks! This makes you an official REBOL hero.
Dockimbel
29-May-2007
[595x2]
Terry, in my todo-list, I have a generic module for interfacing cheyenne's 
HTTPd with REBOL applications called mod-map-url (or mod-mapping). 
It will map predefined URLs to REBOL objects. Example: http://domain.com/app/show
will call the function ''show from your object 'app. This module 
should cover most of needs if you have to embed Cheyenne in your 
REBOL application. If it doesn't cover your specific needs, you'll 
have to write a specific mod_xyz HTTPd module, which might be a little 
more complex.
Louis: thanks, releasing a new version is like winning a battle (against 
all those evil little details!) ;-).
Terry
29-May-2007
[597]
Yeah, not so much a URL.. but a message.. I want to be able to push 
to the browser.. client logs in, we grab his IP, pass this to the 
rebol script that can push to a receiving JS script.
Dockimbel
29-May-2007
[598]
In any cases, HTTP communications involve a request from the client, 
so it implies an URL...unless your JS is not using HTTP protocol 
?
Terry
29-May-2007
[599]
Wrote our own.
Dockimbel
29-May-2007
[600]
So your wrote your own UniServe service to answer to JS scripts requests 
?
Terry
29-May-2007
[601]
Um, no.. I wrote a uniserve service to push messages to a flash script 
embedded in the page.. the script then passes the message on to JS
Dockimbel
29-May-2007
[602]
You can use the uniserve's shared space to share data and functions 
between services (anyway you'll have to add a specific module to 
HTTPd to be able to exchange data through the shared space, HTTPd 
is not exposing any function nor callbacks to the shared space, but 
it might be a good idea to add such feature...).
Terry
29-May-2007
[603]
I hacked your HTTPd somewhat to 'intervene' .. just wondering if 
there was a purer method.
Dockimbel
29-May-2007
[604]
Ok, I see now :-) You could use the REBOL plugin instead of Flash 
to achieve that, but I guess that you don't want your users to have 
to install any new plugin.
Terry
29-May-2007
[605x2]
exact.. especially not the rebol one  (way too buggy)
flash works great.. did you see the RASH windows demo .. I embed 
that into a page, and push data to it from my uniserve service
Dockimbel
29-May-2007
[607x2]
The current clean way to extend Cheyenne is to write a mod_xyz module. 
The module specifications are documented in Cheyenne/docs, and your 
have several examples in Cheyenne/mods. I can provide some additionnal 
explainations through this altme channel if needed.
your -> you
Terry
29-May-2007
[609]
great thanks
Dockimbel
29-May-2007
[610]
It's not that hard to write one, the hard part is to correctly set 
the execution order for each callback (each module competes with 
all other modules for a given callback event, and you have only 3 
possible positions, 'first, 'normal (middle) and 'last.) The loading 
order of modules in the config file (httpd.cfg) also impact the final 
order of callbacks execution. I plan to move to a much more simplier 
system for Cheyenne 2.0, it will loose some little flexibility, but 
it will be much more easier to write extension modules. But , that's 
long-term, i need first to reach 1.0 ;-).