This is a server-side host object representing the server. There is only one and you cannot instantiate it although you can make references to it. All users on the web server share this object.
This is an object that allows you to share values across all sessions running in all applications across the entire server. The locking facilities permit you to lock resources while you are using them.
Because this applies server-wide, there is even more reason to ensure you lock objects for the minimum of time and relinquish the locks as soon as possible. It is quite feasible to completely stall the whole server by locking a vital resource during the processing of a single client request. The effect of this is to make your server a single-threaded non-concurrent session server. That is, it will only actually serve one client request at a time.
Prev | Home | Next |
SendMail.To | Up | server.agent |
JavaScript Programmer's Reference, Cliff Wootton Wrox Press (www.wrox.com) Join the Wrox JavaScript forum at p2p.wrox.com Please report problems to support@wrox.com © 2001 Wrox Press. All Rights Reserved. Terms and conditions. |