54 import RemoteVizRenderArea = require("./RemoteVizClient");
57* <h2> Web browser image streaming support </h2>
59* Image streaming mode (JPEG/PNG) is supported by all modern web browsers.
61* <h2> Web browser video streaming support </h2>
63* <h3> H.264 streaming support </h3>
65* H.264 streaming mode requires that the web browser supports Media Source extension API and H.264 live streaming (no frame delay).\n
66* The array below shows the supported web browsers:
71* <td>Google Chrome</td>
72* <td>Mozilla Firefox</td>
73* <td>Edge (version 12 to 18)</td>
74* <td>Edge (version 79 and higher)</td>
79* <td bgcolor="#ffff99"> <a href="https://bugs.chromium.org/p/chromium/issues/detail?id=679746">Frames latency</a></td>
80* <td bgcolor="#99ff66"> OK</td>
81* <td bgcolor="#ff3300"> <a href="https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/10570808/">Not functional</a></td>
82* <td bgcolor="#ffff99"> Frames latency</td>
83* <td bgcolor="#7f7f7f"> Web browser not available on this platform</td>
86* <td>Windows 8.X / 10</td>
87* <td bgcolor="#99ff66"> OK</td>
88* <td bgcolor="#99ff66"> OK</td>
89* <td bgcolor="#ff3300"> <a href="https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/10570808/">Not functional</a></td>
90* <td bgcolor="#99ff66"> OK</td>
91* <td bgcolor="#7f7f7f"> Web browser not available on this platform</td>
95* <td bgcolor="#ffff99"> Frames latency</td>
96* <td bgcolor="#99ff66"> OK</td>
97* <td bgcolor="#7f7f7f"> Web browser not available on this platform</td>
98* <td bgcolor="#ffff99"> Frames latency</td>
99* <td bgcolor="#99ff66"> OK</td>
103* <td bgcolor="#99ff66"> OK</td>
104* <td bgcolor="#99ff66"> OK</td>
105* <td bgcolor="#7f7f7f"> Web browser not available on this platform</td>
106* <td bgcolor="#99ff66"> OK</td>
107* <td bgcolor="#7f7f7f"> Web browser not available on this platform</td>
111* <td bgcolor="#99ff66"> OK</td>
112* <td bgcolor="#99ff66"> OK</td>
113* <td bgcolor="#99ff66"> OK</td>
114* <td bgcolor="#99ff66"> OK</td>
115* <td bgcolor="#7f7f7f"> Web browser not available on this platform</td>
119* <td bgcolor="#ff6600"> Media Source Extension not supported by iOS</td>
120* <td bgcolor="#ff6600"> Media Source Extension not supported by iOS</td>
121* <td bgcolor="#7f7f7f"> Web browser not available on this platform</td>
122* <td bgcolor="#ff6600"> Media Source Extension not supported by iOS</td>
123* <td bgcolor="#ff6600"> Media Source Extension not supported by iOS</td>
127* <td bgcolor="#ff6600"> Media Source Extension not available</td>
128* <td bgcolor="#ff6600"> Media Source Extension not available</td>
129* <td bgcolor="#ff6600"> Media Source Extension not available</td>
130* <td bgcolor="#ff6600"> Media Source Extension not available</td>
131* <td bgcolor="#99ff66"> OK</td>
136* <h3> VP9 streaming support </h3>
138* VP9 streaming mode requires that the web browser supports Media Source extension API and VP9 live streaming.\n
139* The array below shows the supported web browsers:
144* <td>Google Chrome</td>
145* <td>Mozilla Firefox</td>
146* <td>Edge (version 12 to 18)</td>
147* <td>Edge (version 79 and higher)</td>
152* <td bgcolor="#99ff66"> OK</td>
153* <td bgcolor="#99ff66"> OK</td>
154* <td bgcolor="#ff3300"> Not supported</td>
155* <td bgcolor="#99ff66"> OK</td>
156* <td bgcolor="#7f7f7f"> Web browser not available on this platform</td>
159* <td>Windows 8.X / 10</td>
160* <td bgcolor="#99ff66"> OK</td>
161* <td bgcolor="#99ff66"> OK</td>
162* <td bgcolor="#ff3300"> Not supported</td>
163* <td bgcolor="#99ff66"> OK</td>
164* <td bgcolor="#7f7f7f"> Web browser not available on this platform</td>
168* <td bgcolor="#99ff66"> OK</td>
169* <td bgcolor="#99ff66"> OK</td>
170* <td bgcolor="#7f7f7f"> Web browser not available on this platform</td>
171* <td bgcolor="#99ff66"> OK</td>
172* <td bgcolor="#ff3300"> Not supported</td>
176* <td bgcolor="#99ff66"> OK</td>
177* <td bgcolor="#99ff66"> OK</td>
178* <td bgcolor="#7f7f7f"> Web browser not available on this platform</td>
179* <td bgcolor="#99ff66"> OK</td>
180* <td bgcolor="#7f7f7f"> Web browser not available on this platform</td>
184* <td bgcolor="#99ff66"> OK</td>
185* <td bgcolor="#99ff66"> OK</td>
186* <td bgcolor="#ff3300"> Not supported</td>
187* <td bgcolor="#99ff66"> OK</td>
188* <td bgcolor="#7f7f7f"> Web browser not available on this platform</td>
192* <td bgcolor="#ff6600"> Media Source Extension not supported by iOS</td>
193* <td bgcolor="#ff6600"> Media Source Extension not supported by iOS</td>
194* <td bgcolor="#7f7f7f"> Web browser not available on this platform</td>
195* <td bgcolor="#ff6600"> Media Source Extension not supported by iOS</td>
196* <td bgcolor="#ff6600"> Media Source Extension not supported by iOS</td>
200* <td bgcolor="#ff6600"> Media Source Extension not available</td>
201* <td bgcolor="#ff6600"> Media Source Extension not available</td>
202* <td bgcolor="#ff6600"> Media Source Extension not available</td>
203* <td bgcolor="#ff6600"> Media Source Extension not available</td>
204* <td bgcolor="#ff3300"> Not supported</td>
208* The function RemoteVizRenderArea#isImageStreamingSupported enables to know if image streaming mode (JPEG/PNG decoding) is supported by the web browser.\n\n
209* The function RemoteVizRenderArea#isVideoStreamingSupported enables to know if video streaming mode (H.264/VP9 decoding) is supported by the web browser.\n\n
211* <h2> HTTP Content-Security-Policy </h2>
213* The HTTP Content-Security-Policy response header allows web site administrators to control resources the user agent is
214* allowed to load for a given page. This helps guard against cross-site scripting attacks (XSS).\n
215* In order to use this feature with RemoteViz, the RemoteViz WebSocket's server address has to be explicitly set as a property
216* on the 'connect-src' directive (for example: "connect-src ws://serverip:serverport" or "connect-src ws://example.com").
217* In case of using image streaming mode, the source 'data:' has to be explicitly set as a property on the directive 'img-src'.
219* <h2> Microsoft Edge </h2>
221* Running the RemoteViz examples on localhost using Microsoft Edge can fail because of the network isolation.
222* This happens because Edge runs as a Windows modern app different from IE and thus it is has network isolation by default for security reasons.
223* You can either change the network interface used by the RemoteViz examples or enable loopback in the net isolation settings:
224* \verbatim For Build 10158 or newer: CheckNetIsolation LoopbackExempt -a -n=Microsoft.MicrosoftEdge_8wekyb3d8bbwe \endverbatim
226* <a href="https://blogs.msdn.microsoft.com/msgulfcommunity/2015/07/01/how-to-debug-localhost-on-microsoft-edge/">More information</a>
232* <title>RemoteViz Example</title>
233* <link rel="stylesheet" type="text/css" href="loader.css"> <!-- include the loader css -->
234* <script type="text/javascript" src="RemoteVizClient.js"></script> <!-- include the RemoteViz javascript client -->
235* <script type="text/javascript">
237* var theRenderArea = null;
239* function init() // This function is called immediately after the page is loaded.
241* // Initialize the renderArea on the server.
242* // "TheDiv" is the id of the image container, which must be a <div>.
243* // "640" and "480" are the container width and height and will be set as
244* // the requested width and height for the renderArea managed by the service.
245* theRenderArea = new RemoteVizRenderArea("TheDiv", 640, 480);
247* // Listen for start and stop bandwidth calibration events to display or hide the loader.
248* theRenderArea.addServiceListener(service);
250* // Connect to the service.
251* // The IP address and the port refer to those of the service (see main.cpp).
252* // "TheDemo" specifies the name of the requested renderArea.
253* theRenderArea.connectTo("ws://127.0.0.1:8080/TheDemo");
256* function service(event) // This function is called when a message is received from the service.
258* var message = event[0];
260* case "startNetworkCalibration":
261* case "pendingNetworkCalibration":
262* document.getElementById("loaderGroup").style.display = "inline";
264* case "finishedNetworkCalibration":
265* document.getElementById("loaderGroup").style.display = "none";
271* <body onload="init()" bgcolor="silver">
272* <div id="loaderGroup" style="display:none;"><div id="loader"></div>
273* <div id="loaderText">Bandwidth calibration</div></div> <!-- loader notifying the network bandwidth calibration -->
274* <div id="TheDiv"> <!-- element displaying the renderArea -->
330 RemoteVizRenderArea(String|HTMLElement container, Number containerWidth, Number containerHeight, String displayMode);
removeMouseMoveListener(Function eventHandler)
Removes a listener on the container (DIV element) mouseMove event.
addResizeListener(Function resizeHandler)
Adds a listener on the renderArea resize event.
String getStreamingMode()
Returns the type of streaming currently used by the client.
addKeyUpListener(Function eventHandler)
Adds a listener on the image container keyUp event.
Boolean isConnected()
Checks if the service connection is established.
addTouchCancelListener(Function eventHandler)
Adds a listener on the image container touchCancel event.
removeMouseDownListener(Function eventHandler)
Removes a listener on the container (DIV element) mouseDown event.
removeResizeListener(Function resizeHandler)
Removes a listener on the renderArea resize event.
requestRenderAreaSize(Number width, Number height)
Sends a request to resize the renderArea associated with the connection.
messageHandler(String|Uint8Array message)
MessageHandler.
addKeyDownListener(Function eventHandler)
Adds a listener on the image container keyDown event.
addServiceListener(Function serviceHandler)
Adds an event listener on the service runtime.
removeDecodedFrameListener(Function decodedFrameHandler)
Removes a listener on the decoded frame event.
Boolean eventHandler(Event event)
EventHandler.
removeKeyDownListener(Function eventHandler)
Removes a listener on the container (DIV element) keyDown event.
addMouseDownListener(Function eventHandler)
Adds a listener on the image container mouseDown event.
disconnect()
Closes the service connection.
removeMessageListener(Function messageHandler)
Adds an event listener on the received message.
addReceivedFrameListener(Function receivedFrameHandler)
Adds a listener on the received frame event.
Number getRenderAreaHeight()
Returns the height of the renderArea managed by the RemoteViz service.
resizeHandler(Array size)
ResizeHandler.
connectTo(String serviceUrl)
Opens a new connection between the HTML webpage and the RemoteViz service.
serviceHandler(Object notification)
ServiceHandler.
Boolean isImageStreamingSupported()
Checks if the client supports image streaming.
removeTouchCancelListener(Function eventHandler)
Removes a listener on the container (DIV element) touchCancel event.
removeTouchMoveListener(Function eventHandler)
Removes a listener on the container (DIV element) touchMove event.
resizeRenderAreaContainer(Number width, Number height)
Resizes the renderArea container.
removeTouchStartListener(Function eventHandler)
Removes a listener on the container (DIV element) touchStart event.
Boolean isVideoStreamingSupported()
Checks if the client supports video streaming (H.264 or VP9).
addDecodedFrameListener(Function decodedFrameHandler)
Adds a listener on the decoded frame event.
addTouchEndListener(Function eventHandler)
Adds a listener on the image container touchEnd event.
receivedFrameHandler(Number frameId, Number dataLength, String message)
ReceivedFrameHandler.
removeMouseOutListener(Function eventHandler)
Removes a listener on the container (DIV element) mouseOver event.
addTouchStartListener(Function eventHandler)
Adds a listener on the image container touchStart event.
addMouseWheelListener(Function eventHandler)
Adds a listener on the image container mouseWheel event.
addTouchMoveListener(Function eventHandler)
Adds a listener on the image container touchMove event.
Number getRenderAreaWidth()
Returns the width of the renderArea managed by the RemoteViz service.
Number getContainerWidth()
Returns the width of the renderArea container.
RemoteVizRenderArea(String|HTMLElement container, Number containerWidth, Number containerHeight, String displayMode)
This constructor associates a RemoteViz RenderArea on the server with an HTML container.
sendMessage(String|Uint8Array message)
Sends a message to the service.
removeMouseDoubleClickListener(Function eventHandler)
Removes a listener on the container (DIV element) mouseDoubleClick event.
addMessageListener(Function messageHandler)
Adds an event listener on the received message event.
removeMouseWheelListener(Function eventHandler)
Removes a listener on the container (DIV element) mouseWheel event.
addMouseOverListener(Function eventHandler)
Adds a listener on the image container mouseOver event.
removeTouchEndListener(Function eventHandler)
Removes a listener on the container (DIV element) touchEnd event.
removeMouseOverListener(Function eventHandler)
Removes a listener on the container (DIV element) mouseOver event.
removeKeyUpListener(Function eventHandler)
Removes a listener on the container (DIV element) keyUp event.
addMouseMoveListener(Function eventHandler)
Adds a listener on the container (DIV element) mouseMove event.
addMouseUpListener(Function eventHandler)
Adds a listener on the image container mouseUp event.
decodedFrameHandler(Number frameId, Boolean isLossless, String message)
DecodedFrameHandler.
removeMouseUpListener(Function eventHandler)
Removes a listener on the container (DIV element) mouseUp event.
Number getContainerHeight()
Returns the height of the renderArea container.
addMouseOutListener(Function eventHandler)
Adds a listener on the image container mouseOut event.
addMouseDoubleClickListener(Function eventHandler)
Adds a listener on the container (DIV element) mouseDoubleClick event.
removeReceivedFrameListener(Function receivedFrameHandler)
Removes a listener on the received frame event.
removeServiceListener(Function serviceHandler)
Removes an event listener on the service runtime.