I am a .NET developer and have an small enterprise too. I want to start a new develpment line in python specially because of its simplisity and high performance. Before i do this i have started a lot of research trying to find out the best way to use it on web develoment which is a very discussed issue from 2003 (i guess).
Of course the way for this is finding the way for full portability and performance which ultimately means that my APPs should run unchaged for IIS and APACHE LINUX or WINDOWS. I have made the following advance by analising the stuff on the net: Python can be run as CGI or embeded but, of course, embeded is the best option so i won'nt tell anything about this. For apache the best way is MOD_PYTHON For iis there are two options: ISAPI_WSGI and PyISAPIe. By the reading i think the best option for IIS is PyISAPIe because it looks better supported, they have measures with very good results and the architechture seams clearer to me: ISAPI_WSGI depends on ActivePython which seems to depend on windows libs (anti cross-platafform architecture). But there is also an important concern. Python released WSGI which is an standarization for the WebServer-Python interfase and neither MOD_PYTHON nor PyISAPIe implements WSGI. Only ISAPI_WSGI does. This means that for now my recomendation is to use one of the following combinations: FOR IIS: IIS + PyISAPIe + [YOUR PERSONAL WSGI Implementation] + YOUR APP. FOR APACHE: APACHE + MOD_PYTHON + [SOME WSGI Implementation. see WSGI_Handler for mod pyhton.] + YOUR APP I hupe it donĀ“t be too hard to implement WSGI for PyISAPIe, because i think i am going this way. Please tell me if you find some thing else. Good Luck. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---