durusmail: quixote-users: Xitami
Xitami
Xitami
Patrick K. O'Brien
2002-04-29
Yes, I'm just using Xitami and CGI for development. This will most likely be
deployed on Apache. But Xitami does have a fastCGI-like mechanism called
LRWP (Long Running Web Process) written by Robin Dunn of wxPython fame:

http://www.imatix.com/html/xitami/index12.htm

I haven't tried it yet, but the example for Python looks like this:

from lrwplib import LRWP

def main():
    lrwp = LRWP('hello', 'localhost', 81)
    lrwp.connect()
    count = 0
    while count < 5:        # exit after servicing 5 requests
        count = count + 1
        req = lrwp.acceptRequest()
        req.out.write('Content-type: text/html\r\n\r\n')
        req.out.write('hello<')
        req.out.write('\n')
        req.out.write('

Hello from LRWP

\nCount = ' + str(count)) req.out.write('\n\n') req.finish() lrwp.close() if __name__ == '__main__': main() --- Patrick K. O'Brien Orbtech > -----Original Message----- > From: Neil Schemenauer [mailto:nascheme@mems-exchange.org]On Behalf Of > Neil Schemenauer > Sent: Monday, April 29, 2002 2:24 PM > To: Patrick K. O'Brien > Cc: Quixote > Subject: Re: [Quixote-users] Xitami > > > On Mon, Apr 29, 2002 at 01:37:13PM -0500, Patrick K. O'Brien wrote: > > Just FYI, Quixote is running just fine with Xitami on Win98. > > I assume you are using CGI. Does Xitami have a native extension > interface or do people just use ISAPI? > > Neil
reply