Single instance HTTP Server using WiFly Interface.

Dependents:   WiFlyHTTPServerSample MultiThreadingHTTPServer

This is my implementation for a HTTP Server using the WiFly Interface. Please note that this is still under development.

It may still contain several bugs. I have tested it using a 1768 on an application board plus RN-XV board.

Currently there is only a FileSystem implemented. Also it is limited to GET request.

I try to extend it further so it will be more useful.

Btw, it does NOT work with RTOS, which seems not to be the Problem of my library.

Do not Forget to Import the WiFly Interface into your Project when using this library.

Change History:

REV5: - added support for basic RPC GET request functionality.

REV4: - added argument parsing from the request uri. - documentation extended and updated.

Revision:
12:ba81cc117fb6
Parent:
7:cb7fec1265b5
Child:
13:93ff322420b0
diff -r 3943841e1798 -r ba81cc117fb6 HTTPRequestHandler.h
--- a/HTTPRequestHandler.h	Sun Jun 02 22:59:51 2013 +0000
+++ b/HTTPRequestHandler.h	Wed Jun 05 23:39:24 2013 +0000
@@ -132,6 +132,8 @@
         /** Handler function to serve POST requests. Send data to webserver. Can also be appended to uri.
         */
         virtual int handlePostRequest() = 0;
+        
+        void getStandardHeaders(HTTPHeaders& header, const char* fext = NULL);
 };
 
 #endif //   __HTTPREQUESTHANDLER_H__
\ No newline at end of file