Imagine the following scenario: (All) (Realtime) Data Exchange between the client- and server-side is done via a WebSocket Framework; that is instead of using the HTTP protocol, the WS protocol is used ! This could be quite a web app dev paradigm change ...
I have found the following in the docs which seems to fit this development paradigm: Excerpt from the "SmartClient Quick Start Guide", Chapter 8: Data Integration
"Finally, setting DataSource.dataProtocol to DSProtocol.CLIENTCUSTOM prevents a DataSource from trying to directly send an HTTP request, allowing integration with data that has already been loaded by a third party communication system, or integration in-browser persistence engines such as HTML5 localStorage or Google Gears."
Is there a comprehensive overview available for how to leverage such a WebSocket-based approach in conjunction with the client-side SmartClient Framework ? And perhaps another client-side JavaScript Framework which handles routes, etc. ?
Or is there still another way of leveraging the WS protocol WITHOUT setting DataSource.dataProtocol to DSProtocol.CLIENTCUSTOM ?
I have found the following in the docs which seems to fit this development paradigm: Excerpt from the "SmartClient Quick Start Guide", Chapter 8: Data Integration
"Finally, setting DataSource.dataProtocol to DSProtocol.CLIENTCUSTOM prevents a DataSource from trying to directly send an HTTP request, allowing integration with data that has already been loaded by a third party communication system, or integration in-browser persistence engines such as HTML5 localStorage or Google Gears."
Is there a comprehensive overview available for how to leverage such a WebSocket-based approach in conjunction with the client-side SmartClient Framework ? And perhaps another client-side JavaScript Framework which handles routes, etc. ?
Or is there still another way of leveraging the WS protocol WITHOUT setting DataSource.dataProtocol to DSProtocol.CLIENTCUSTOM ?
Comment