I am porting a "legacy" application from IIS/ASP to Apache/PHP4.  The 
ASP application instantiates server side COM object implemented by 
custom out of process server.  This COM object is then maintained for 
the duration of the session.  Subsequent HTTP request are processed by 
the ASP code which calls methods of the same COM object instance.  Also 
appreciated is the fact that IIS takes care of garbage collection - the 
COM object is gracefully destroyed upon session expiration even if the 
session was abandoned.

I'd like to implement the behavior described above in PHP4/Apache. 
Ideally both CGI and server API versions of PHP should be supported.

I consider implementation of the custom session handler.  It could be 
done in the context of the separate process which will garbage collect 
expired sessions and more importantly, destroy COM objects.

Thoughts? Recommendations?

Thanks


-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to