OmniScript: Difference between revisions
Max Campbell (talk | contribs) |
Max Campbell (talk | contribs) No edit summary |
||
Line 31: | Line 31: | ||
}} | }} | ||
The Scriptel OmniScript product is a small integrated web server installed on a personal computer or embedded device that exists to expose Scriptel ScripTouch signature digitizers to a computer network. | The [[Scriptel]] OmniScript product is a small integrated web server installed on a personal computer or embedded device that exists to expose Scriptel ScripTouch signature digitizers to a computer network. | ||
OmniScript primarily communicates with applications through the use of WebSockets. These are essentially network sockets that contain a special handshake at the beginning of the connection to ensure that the server is soliciting such connections. | OmniScript primarily communicates with applications through the use of WebSockets. These are essentially network sockets that contain a special handshake at the beginning of the connection to ensure that the server is soliciting such connections. | ||
WebSockets have the advantage of allowing web applications to directly communicate with OmniScript without the need for an intermediate server. This means that an application can be pushed to a client and your application can take advantage of an OmniScript installation within their firewall without the need for any special network configuration. Data can then be pushed back to the server side of your application from the client. | |||
[[File:OmniScript-Integration.png|666px]] | |||
== Platform Independent == | == Platform Independent == |
Revision as of 11:44, 11 July 2016
Developer(s) | Scriptel Corporation |
---|---|
Website |
scriptel |
The Scriptel OmniScript product is a small integrated web server installed on a personal computer or embedded device that exists to expose Scriptel ScripTouch signature digitizers to a computer network.
OmniScript primarily communicates with applications through the use of WebSockets. These are essentially network sockets that contain a special handshake at the beginning of the connection to ensure that the server is soliciting such connections.
WebSockets have the advantage of allowing web applications to directly communicate with OmniScript without the need for an intermediate server. This means that an application can be pushed to a client and your application can take advantage of an OmniScript installation within their firewall without the need for any special network configuration. Data can then be pushed back to the server side of your application from the client.
Platform Independent
Traditional Model of Integration
In traditional hardware application interfaces, the interface dictates the programming language needed to integrate the device and developers generally need to recompile their code for each operating system they wish to integrate with.
OmniScript Model of Integration
With OmniScript, platform specific device interfaces are embedded within the server application. This allows developers to communicate with a single platform independent interface.
- Allows mix and match between client machines
- Multiple Operating System Support – Mac, Windows, Linux
- No Java Plugins/ActiveX Controls needed for web development
-
Example of a traditional model of integration
-
Example of OmniScript model of integration