Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] [ANN] rebXR experimental pre-release

From: andreas::bolka::gmx::net at: 24-May-2004 21:35

Fellow Rebolers! I'm sure some of you remember Maarten Koopmans' excellent asnyc:// tutorial sent to the list some time ago. What you might not know, is that Maarten also did some most excellent work combining a standalone server (based on async://) with rebXR. Based on Maarten's stuff, I have a new rebXR version in the works, which includes a standalone server and maybe an async client. Here is an experimental pre-release of that rebXR version. You can fetch it at: - http://earl.strain.at/rebol/rebXR/rebXR-experimental-20040524.zip Included is a "make-lib.r" script, which combines all rebXR modules (except the cgi-server module) into a single file, rebxr.r. The async server is started via xmlrpc-serve port-number allowed-methods So a full async XML-RPC "add" server would be: -- snip -- do %rebxr.r sample-add: func [ a b ] [ return a + b ] xmlrpc-serve 9090 [ sample-add ] -- snap -- I'd appreciate any bug reports (preferrably via personal email) and hope to get out the new stable version of rebXR "Real Soon Now" :) -- Best regards, Andreas