1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type" /> 5 <title>Support for WebStack Features in Server Environments</title> 6 <meta name="generator" 7 content="amaya 8.1a, see http://www.w3.org/Amaya/" /> 8 <link href="styles.css" rel="stylesheet" type="text/css" /> 9 </head> 10 <body> 11 <h1>Support for WebStack Features in Server Environments</h1> 12 <p>Some basic features of Web applications are not supported by all 13 server environments or frameworks. The table below summarises the 14 implementation details of such features when applications are deployed 15 in each server environment.</p> 16 <table align="center" border="1" cellpadding="5" cellspacing="0" 17 width="80%"> 18 <tbody> 19 <tr> 20 <td></td> 21 <th>BaseHTTPRequestHandler</th> 22 <th>CGI</th> 23 <th>mod_python</th> 24 <th>Java Servlet API</th> 25 <th>Twisted</th> 26 <th>Webware</th> 27 <th>WSGI</th> 28 <th>Zope 2</th> 29 </tr> 30 <tr> 31 <th>Unicode response writing</th> 32 <td>WebStack</td> 33 <td>WebStack</td> 34 <td>WebStack</td> 35 <td>Framework</td> 36 <td>WebStack</td> 37 <td>WebStack</td> 38 <td>WebStack</td> 39 <td>WebStack</td> 40 </tr> 41 <tr> 42 <th>Cookies</th> 43 <td>WebStack [1]</td> 44 <td>WebStack [1]</td> 45 <td>Framework [2]</td> 46 <td>Framework [3]</td> 47 <td>Framework [3]</td> 48 <td>Framework [3]</td> 49 <td>WebStack [1]</td> 50 <td>Framework [3]</td> 51 </tr> 52 <tr> 53 <th>Sessions</th> 54 <td>WebStack</td> 55 <td>WebStack</td> 56 <td>Framework [4]</td> 57 <td>Framework</td> 58 <td>WebStack</td> 59 <td>Framework</td> 60 <td>WebStack</td> 61 <td>Framework</td> 62 </tr> 63 </tbody> 64 </table> 65 <h3>Notes</h3> 66 <ol> 67 <li>WebStack cookie support is provided using the standard library <code>Cookie</code> 68 module.</li> 69 <li>Some mod_python releases do not provide cookie support directly.</li> 70 <li>An additional class is employed to provide a uniform cookie API 71 on certain frameworks.</li> 72 <li>Some mod_python releases do not provide session support directly.</li> 73 </ol> 74 </body> 75 </html>