Bug:Fix file validation issue
[vnfsdk/refrepo.git] / vnfmarket / src / main / webapp / vnfmarket / node_modules / socket.io-client / lib / vendor / web-socket-js / README.md
1 ## How to try the sample
2
3 Assuming you have Web server (e.g. Apache) running at **http://example.com/** .
4
5 1. Download [web-socket-ruby](http://github.com/gimite/web-socket-ruby/tree/master).
6 2. Run sample Web Socket server (echo server) in example.com with: (#1)<br>
7 ```
8 $ ruby web-socket-ruby/samples/echo_server.rb example.com 10081
9 ```
10 3. If your server already provides socket policy file at port **843**, modify the file to allow access to port **10081**. Otherwise you can skip this step. See below for details.
11 4. Publish the web-socket-js directory with your Web server (e.g. put it in ~/public_html).
12 5. Change ws://localhost:10081 to **ws://example.com:10081** in sample.html.
13 6. Open sample.html in your browser.
14 7. After "onopen" is shown, input something, click [Send] and confirm echo back.
15
16 \#1: First argument of echo_server.rb means that it accepts Web Socket connection from HTML pages in example.com.
17
18
19 ## How to use it in your application
20
21 - Copy swfobject.js, web_socket.js, WebSocketMain.swf to your application directory.
22 - Write JavaScript code:
23
24 ```html
25 <!-- Import JavaScript Libraries. -->
26 <script type="text/javascript" src="swfobject.js"></script>
27 <script type="text/javascript" src="web_socket.js"></script>
28
29 <script type="text/javascript">
30   
31   // Let the library know where WebSocketMain.swf is:
32   WEB_SOCKET_SWF_LOCATION = "WebSocketMain.swf";
33   
34   // Write your code in the same way as for native WebSocket:
35   var ws = new WebSocket("ws://example.com:10081/");
36   ws.onopen = function() {
37     ws.send("Hello");  // Sends a message.
38   };
39   ws.onmessage = function(e) {
40     // Receives a message.
41     alert(e.data);
42   };
43   ws.onclose = function() {
44     alert("closed");
45   };
46   
47 </script>
48 ```
49
50 - Put Flash socket policy file to your server unless you use web-socket-ruby or em-websocket as your WebSocket server. See "Flash socket policy file" section below for details.
51
52
53 ## Troubleshooting
54
55 If it doesn't work, try these:
56
57 1. Try Chrome and Firefox 3.x.
58
59    - It doesn't work on Chrome:<br>
60      It's likely an issue of your code or the server. Debug your code as usual e.g. using console.log.
61    - It works on Chrome but it doesn't work on Firefox:<br>
62      It's likely an issue of web-socket-js specific configuration (e.g. 3 and 4 below).
63    - It works on both Chrome and Firefox, but it doesn't work on your browser:<br>
64      Check "Supported environment" section below. Your browser may not be supported by web-socket-js.
65
66 2. Add this line before your code:
67        WEB_SOCKET_DEBUG = true;
68 and use Developer Tools (Chrome/Safari) or Firebug (Firefox) to see if console.log outputs any errors.
69
70 3. Make sure you do NOT open your HTML page as local file e.g. file:///.../sample.html. web-socket-js doesn't work on local file. Open it via Web server e.g. http:///.../sample.html.
71
72 4. If you are NOT using web-socket-ruby or em-websocket as your WebSocket server, you need to place Flash socket policy file on your server. See "Flash socket policy file" section below for details.
73
74 5. Check if sample.html bundled with web-socket-js works.
75
76 6. Make sure the port used for WebSocket (10081 in example above) is not blocked by your server/client's firewall.
77
78 7. Install [debugger version of Flash Player](http://www.adobe.com/support/flashplayer/downloads.html) to see Flash errors.
79
80
81 ## Supported environments
82
83 It should work on:
84
85 - Google Chrome 4 or later (just uses native implementation)
86 - Firefox 3.x, 4.x, Internet Explorer 8, 9 + Flash Player 10 or later
87
88 It may or may not work on other browsers such as Safari, Opera or IE 6. Patch for these browsers are appreciated, but I will not work on fixing issues specific to these browsers by myself.
89
90
91 ## Limitations/differences compared to native WebSocket
92
93 - You need some more lines in your JavaScript code. See "How to use it in your application" section above for details.
94 - It requires Flash Player 10 or later unless the browser supports native WebSocket.
95 - Your server must provide Flash socket policy file, unless you use web-socket-ruby or em-websocket. See "Flash socket policy file" section below for details.
96 - It has limited support for Cookies on WebSocket. See "Cookie support" section below for details.
97 - It doesn't use proxies specified in browser config. See "Proxy support" section below for details.
98
99
100 ### Flash socket policy file
101
102 This implementation uses Flash's socket, which means that your server must provide Flash socket policy file to declare the server accepts connections from Flash.
103
104 If you use [web-socket-ruby](http://github.com/gimite/web-socket-ruby/tree/master) or [em-websocket](https://github.com/igrigorik/em-websocket), you don't need anything special, because they handle Flash socket policy file request. But if you already provide socket policy file at port **843**, you need to modify the file to allow access to Web Socket port, because it precedes what the libraries provide.
105
106 If you use other Web Socket server implementation, you need to provide socket policy file yourself. See [Setting up A Flash Socket Policy File](http://www.lightsphere.com/dev/articles/flash_socket_policy.html) for details and sample script to run socket policy file server. [node.js implementation is available here](http://github.com/LearnBoost/Socket.IO-node/blob/master/lib/socket.io/transports/flashsocket.js).
107
108 Actually, it's still better to provide socket policy file at port 843 even if you use web-socket-ruby or em-websocket. Flash always try to connect to port 843 first, so providing the file at port 843 makes startup faster.
109
110
111 ### Cookie support
112
113 web-socket-js has limited supported for Cookies on WebSocket.
114
115 Cookie is sent if Web Socket host is exactly the same as the origin of JavaScript (The port can be different). Otherwise it is not sent, because I don't know way to send right Cookie (which is Cookie of the host of Web Socket, I heard). Also, HttpOnly Cookies are not sent.
116
117 Note that it's technically possible that client sends arbitrary string as Cookie and any other headers (by modifying this library for example) once you place Flash socket policy file in your server. So don't trust Cookie and other headers if you allow connection from untrusted origin.
118
119
120 ### Proxy support
121
122 [The WebSocket spec](http://tools.ietf.org/html/draft-hixie-thewebsocketprotocol) specifies instructions for User Agents to support proxied connections by implementing the HTTP CONNECT method.
123
124 The AS3 Socket class doesn't implement this mechanism, which renders it useless for the scenarios where the user trying to open a socket is behind a proxy. 
125
126 The class RFC2817Socket (by Christian Cantrell) effectively lets us implement this, as long as the proxy settings are known and provided by the interface that instantiates the WebSocket. As such, if you want to support proxied conncetions, you'll have to supply this information to the WebSocket constructor when Flash is being used. One way to go about it would be to ask the user for proxy settings information if the initial connection fails.
127
128
129 ## How to host HTML file and SWF file in different domains
130
131 By default, HTML file and SWF file must be in the same domain. You can follow steps below to allow hosting them in different domain.
132
133 **WARNING**: If you use the method below, HTML files in ANY domains can send arbitrary TCP data to your WebSocket server, regardless of configuration in Flash socket policy file. Arbitrary TCP data means that they can even fake request headers including Origin and Cookie.
134
135 1. Unzip WebSocketMainInsecure.zip to extract WebSocketMainInsecure.swf.
136 2. Put WebSocketMainInsecure.swf on your server, instead of WebSocketMain.swf.
137 3. In JavaScript, set WEB_SOCKET_SWF_LOCATION to URL of your WebSocketMainInsecure.swf.
138
139
140 ## How to build WebSocketMain.swf
141
142 Install [Flex 4 SDK](http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+4).
143
144     $ cd flash-src
145     $ ./build.sh
146
147
148 ## WebSocket protocol versions
149
150 - web-socket-js supports [Hixie 76 version](http://tools.ietf.org/html/draft-hixie-thewebsocketprotocol-76) of WebSocket protocol by default i.e. in [master branch](https://github.com/gimite/web-socket-js).
151 - If you want to try newer [Hybi 07 version](http://tools.ietf.org/html/draft-ietf-hybi-thewebsocketprotocol-07), check out from [hybi-07 branch](https://github.com/gimite/web-socket-js/tree/hybi-07). This will become the master branch in the future, probably when Chrome switches to Hybi 07.
152 - Hixie 75 or before is no longer supported.
153
154
155 ## License
156
157 New BSD License.