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

Maxim
6-Jun-2007
[1360]
but alas, I just realised we are in cheyenne group... DOH!    sorry 
for the pollution.
Dockimbel
6-Jun-2007
[1361x2]
Cheyenne release v0.9.13 beta. Download at http://softinnov.org/tmp/cheyenne-r0913.zip

Changelog :


 o Session cookie management refactored. Cookies are now cached in 
 memory. 
	  Fixes all issues related to timezone.
	  

 o HTTPd request pipeline refactored. It's now more reliable, little 
 faster and

   able to handle extreme situations (stressing with FasterFox). Several 
   core parts
	  of Cheyenne have been touched, so watch out for regressions.
	  

 o Added 'forward method to RSP's Response object (now possible thanks 
 to the 
	  new pipeline engine).
	  

 o Internal modules API changed : 'deferred? property removed (not 
 needed 
	  anymore with new pipeline).
	  

 o Added 'on-status-code option in config file (see example in %httpd.cfg).
	  

 o do-sql now catches internal errors, so they can be more easily 
 located in 
	  calling context.
Remember that I've done some deep changes in this version, so test 
it carefully before putting it online.
Graham
6-Jun-2007
[1363x2]
Regarding TIFF images, I have no control there.  Incoming faxes are 
saved as TIFF images and stored in the file system.  TIFF because 
they are often multipage images.  I am just serving them out again.
There's another anomaly I have with IE.  If you login as guest and 
click on the link immunizations, it tries to download the page instead 
of showing the 404 handler page which does work with FF.
Dockimbel
7-Jun-2007
[1365x2]
Content-Type: none, in the response. Are your using version 0.9.13 
and the new 'on-status-code option ?
(btw, I'm watching the response header using IEWatch component)
Graham
7-Jun-2007
[1367x3]
I'll download 9.13 now
crap .. just overwrote my files with yours :(
Ok, 9.13 fixes the problem with the 404
Maxim
7-Jun-2007
[1370x2]
dockimbel are you available for real support in the next few days?
I have a past project which *might* need to be replaced by cheyenne... 
but I will have tons of questions for sure... and without quick response... 
I am a bit wont to put time on this fix... since I am not totally 
sure it will do what I need....
Dockimbel
7-Jun-2007
[1372]
Max: I'll be online in AltME from 9 jun to 13 jun most of the time, 
so, in this range, I should be able to answer your questions in  
12 hours max delay. But I guess other people, like Will, could also 
answer most of your questions. If you have a lot of questions,m aybe 
it would be better to send them on a private channel, or Chat channel.
Graham
8-Jun-2007
[1373]
Would it be difficult to encap all the rsp pages with Cheyenne so 
that Cheyenne grabs the rsp pages from it's virtual filing system?
Will
8-Jun-2007
[1374]
have no idea about encapping but maybe look in cheyenne.r and also 
in mod-internal.r  not sure..
Maxim
8-Jun-2007
[1375]
ok, so I'll try to look at cheyenne within the next few days.  is 
the MOD building documented anywhere?
Will
8-Jun-2007
[1376]
/Cheyenne/docs/developer-guide.html + look at the many examples ;-)
Maxim
8-Jun-2007
[1377x2]
thanks.  is the MOD system flexible enough to allow the server to 
be something else than a "WEB" server...  more precisely, a web service, 
I already have all the XML and schema validation libs to make it... 
its just that my current server is blocking and when I relay commands 
to othe servers, it causes timeouts on new commands.
oops on new *connections*
Will
8-Jun-2007
[1379]
if you don't need the http service than you propably need only uni-engine.r 
and build your own service/protocol otherwise mods can override every 
phase of the httpd .. better wait for DocK..
Maxim
8-Jun-2007
[1380x3]
ok the "every phase of httpd" is just wanted to hear  :-)
web services usually use http, but don't serve out cgi nor web "pages"... 
so the return values are always processed.
has anyone succcessfully used OpenSSL, or is it still a "just use 
OpenSSL" suggestion...
Will
8-Jun-2007
[1383]
look at phase return codes in the doc, and search in this group for 
phase order execution
Terry
8-Jun-2007
[1384x3]
If by sucessful you mean Open
SSL... working along side of Cheyenne.. then yeah.. and sTunnel as 
well.
If you mean tying the OpenSSL libs directly via view/pro, then no.
Dockimbel
8-Jun-2007
[1387x2]
Graham: there's some experimental stuff about that in mod-internal, 
but still needs some improvement to be ready to encap a complete 
web site in the Cheyenne binary. But that's a planned feature, I'll 
provide better support for that in a week or 2.
Maxim, I'll provide this weekend a new module for easy Cheyenne embedding 
in third-party REBOL application. It should give you all the hooks 
you need to interface with your code and build your specialized server.
Graham
8-Jun-2007
[1389]
Cool.  Thanks.
Maxim
8-Jun-2007
[1390]
ok, will wait for that then  :-)
Maarten
9-Jun-2007
[1391]
Doc, how are the docs coming along?
Will
9-Jun-2007
[1392]
in the meantime me I help?
Graham
9-Jun-2007
[1393]
may I help ?
Will
9-Jun-2007
[1394]
;-)
Terry
9-Jun-2007
[1395]
May I help?  <- note there's a capital M and no space before the 
question mark.
Will
9-Jun-2007
[1396]
ok hopefully the qtask module grammar tha will make us "write like 
an 8th grader" will come soon! not really looking forward for the 
lie detector thought! ;-)
Graham
9-Jun-2007
[1397x4]
I'm thinking this is not a good error to get ..

Script: "Untitled" (none)
## Error in [task-handler] : Make object! [
    code: 316
    type: 'script
    id: 'no-memory
    arg1: none
    arg2: none
    arg3: none
    near: [insert tail series :value]
    where: 'append
] !
/
I think it happened when I left the trailing %> off a rsp page.
How about including a global url-encode function ?
Or, where is the appropriate place to define globals like this?
Dockimbel
9-Jun-2007
[1401x2]
Url-encode is already defined and available in RSP scripts ;-)
I've just fixed the error you've reported.
Graham
9-Jun-2007
[1403x7]
I've got a new problem
could be mea culpa
but login as guest / 1234
https://www.compkarori.co.nz/
Click on results
click on "O2 Sat" at the bottom there
Now the url looks okay at the top, but the request url is wrong