From 501645277f9c9df34b9dc04e2c2660dd941983fd Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 10 Apr 2012 13:21:14 -0400 Subject: [PATCH] add introduction of project --- README | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/README b/README index 4659567..8fda467 100644 --- a/README +++ b/README @@ -1 +1,17 @@ -This file was created by IntelliJ IDEA 10.5.4 for binding GitHub repository \ No newline at end of file + +The main idea of this project is: + +Since there are not any standards how to use Web Socket in exist Java Web Frameworks still +I got an idea to propagate http request over web socket to have a ability to integrate it +with exist web frameworks based on http interaction. +Especially this project implements integration for the Atmosphere Framework with REST (Jersey). + +Now there are two implementation of the WebSocketProtocol: + +1. The JsonWebSocketProtocol - which uses JSON for pass http request via Web Socket body. + +2. The RawWebSocketProtocol - which uses RAW format of http request by HTTP standards via Web Socket body. +(Under developing and testing still) + +Also there is the jquery.http.js to form http request on the client side. +Probably I will move it as separate project.