networkingtestandutils/networkingexamples/webserver/Documentation/README2.txt
changeset 0 af10295192d8
child 6 c64cefac6e99
equal deleted inserted replaced
-1:000000000000 0:af10295192d8
       
     1 //
       
     2 //    readme2.txt - http server development notes
       
     3 //
       
     4 //    Portions Copyright (c) Symbian Software Ltd. 2007.
       
     5 //    Portions Copyright (C) 1999-2004 Nokia. * Nokia Core OS *
       
     6 //    Save as expressly licensed to you by Symbian Software Ltd, all rights reserved.
       
     7 //
       
     8 ////////////////////////////////////////////////////////////////
       
     9 
       
    10 /* EPOC - WebServer. (WebServer condiotional complaint HTTP/1.1) 					  */			   	          */
       
    11 /* The Webserver works fine with the epoc browser, Internet Explorer 4.01 and Netscape Communicator 4.06. */
       
    12 /* Functionality level.											  */					
       
    13 /* 24 - 1 - 2000 											  */
       
    14 
       
    15 General Issues
       
    16 ==============
       
    17 
       
    18 Chunked encoding is not supported.
       
    19 Accept headers are not supported.
       
    20 Authentication is not supported.
       
    21 
       
    22 Persistent connections are supported.
       
    23 
       
    24 There is no interface for the log file.
       
    25 There is no interface for the config file.
       
    26 There is no interface for the mime-types file(which associates an extension with a mime type).
       
    27 
       
    28 GET Method
       
    29 ==========
       
    30 
       
    31 Unconditional and Conditional (If headers) requests are supported.
       
    32 Query requests are supported, but not fully tested.
       
    33 Range requests are supported, but multi-range request are not supported.
       
    34 
       
    35 HEAD Method
       
    36 ===========
       
    37 
       
    38 Unconditional and Conditional (If headers) requests are supported.
       
    39 Query requests are supported, but not fully tested.
       
    40 Range and multi-range requests are supported and tested
       
    41 
       
    42 POST Method
       
    43 ===========
       
    44 
       
    45 Parse headers requests are supported, but are not fully tested.
       
    46 Non-parse headers requests are supported, but are NOT tested.
       
    47 
       
    48 OPTIONS Method
       
    49 ==============
       
    50 
       
    51 Supported and partially tested.
       
    52 
       
    53 TRACE Method
       
    54 ============
       
    55 
       
    56 Supported and partially tested.
       
    57 
       
    58 PUT Method
       
    59 ==========
       
    60 
       
    61 Supported and partially tested.
       
    62 
       
    63 
       
    64 DELETE Method
       
    65 =============
       
    66 
       
    67 Supported and partially tested.