networkingtestandutils/networkingexamples/webserver/Documentation/README2.txt
changeset 0 af10295192d8
child 6 c64cefac6e99
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/networkingtestandutils/networkingexamples/webserver/Documentation/README2.txt	Tue Jan 26 15:23:49 2010 +0200
@@ -0,0 +1,67 @@
+//
+//    readme2.txt - http server development notes
+//
+//    Portions Copyright (c) Symbian Software Ltd. 2007.
+//    Portions Copyright (C) 1999-2004 Nokia. * Nokia Core OS *
+//    Save as expressly licensed to you by Symbian Software Ltd, all rights reserved.
+//
+////////////////////////////////////////////////////////////////
+
+/* EPOC - WebServer. (WebServer condiotional complaint HTTP/1.1) 					  */			   	          */
+/* The Webserver works fine with the epoc browser, Internet Explorer 4.01 and Netscape Communicator 4.06. */
+/* Functionality level.											  */					
+/* 24 - 1 - 2000 											  */
+
+General Issues
+==============
+
+Chunked encoding is not supported.
+Accept headers are not supported.
+Authentication is not supported.
+
+Persistent connections are supported.
+
+There is no interface for the log file.
+There is no interface for the config file.
+There is no interface for the mime-types file(which associates an extension with a mime type).
+
+GET Method
+==========
+
+Unconditional and Conditional (If headers) requests are supported.
+Query requests are supported, but not fully tested.
+Range requests are supported, but multi-range request are not supported.
+
+HEAD Method
+===========
+
+Unconditional and Conditional (If headers) requests are supported.
+Query requests are supported, but not fully tested.
+Range and multi-range requests are supported and tested
+
+POST Method
+===========
+
+Parse headers requests are supported, but are not fully tested.
+Non-parse headers requests are supported, but are NOT tested.
+
+OPTIONS Method
+==============
+
+Supported and partially tested.
+
+TRACE Method
+============
+
+Supported and partially tested.
+
+PUT Method
+==========
+
+Supported and partially tested.
+
+
+DELETE Method
+=============
+
+Supported and partially tested.