Mailing List Archive

Python on a Novell Netware, Netscape web server
I am working on a port of Python to NetWare as an NLM. Its still very crude.
I have almost all of the NDS api swig'd for both client-side development and
python.nlm

However the best solution to this is to use UCS (Universal Component
Software) api to interconnect Python with Netbasic, Perl, Netscape and other
services (and vice-versa). I'm still plying Novell to get the necessary
APIs.

Right now this is a NW5 solution (NW4 doesn't support virtual memory, which
could be a problem for Python depending on your application).

Also, I don't have modules working as .lib NLMs yet, so everything must be
precompiled into one giant size python.nlm

Without module finalization, I can't free memory when Python is unloaded,
hence netware complains about unreleased resources.

--
Brad Clements,
bkc@murkworks.com
Bret Orrell <breto@waymark.net> wrote in message
news:mt2.0-15236-933815857@news.informatik.uni-bonn.de...
> I have a Novell Netware 4.11 sever at work running Netscape Enterprise
> server 3.5.
>
> The Netscape server comes with Perl and there is a CGI2PERL.NLM module
that
> loads when it needs to run a Perl script. Is there a version of Python
for
> this?
>
> Python.org lists just about every platform except for Novell and Netscape.
>
> I'm not real fimilar with setting up a web server but this project got
> dumped on me anyways.
Python on a Novell Netware, Netscape web server [ In reply to ]
>>I am working on a port of Python to NetWare as an NLM.
Super cool.

>>Right now this is a NW5 solution
I suppose that a version for NW3.12 is out of the question then, right?

Bill Scherer