Eclypses MTE Tutorials
Purpose
The objective of an MTE "Tutorial" is to provide a simple, complete, end-to-end example of an MTE project. It is meant to be a step-by-step, guided tutorial of a common use case. Our tutorial utilizes web sockets to securely encode string values and send them to a receiver to be decoded (and visa versa). This is only a sample - the MTE does NOT require the usage of sockets. You can use whatever communication protocol that is needed.
Goals
The goals of the development team at Eclypses is to provide:
- An MTE tutorial in as many languages as possible
- Each "Client" can communicate with any "Server" - Example. A client written in Swift and a server written in Java.
- A well-documented, repeatable representation of MTE Integration
- And Most Importantly! - a solid starting place for your own implementation
How to get a tutorial:
Eclypses has provided public git repositories to our customers. The types are below:
Socket Tutorials
This tutorial is the most basic method of sending MTE transactions. It is useful for backend server implementations, mobile devices, IOT devices, etc.
IOT and Low Power Tutorials
- C Socket Tutorial - https://github.com/Eclypses/tutorial-mte-socket-c
- C++ Socket Tutorial - https://github.com/Eclypses/tutorial-mte-socket-cpp
Backend Server Tutorials
- C# Socket Tutorial - https://github.com/Eclypses/tutorial-mte-socket-csharp
- Go Socket Tutorial - https://github.com/Eclypses/tutorial-mte-socket-go
- Java Socket Tutorial - https://github.com/Eclypses/tutorial-mte-socket-java
- Python Socket Tutorial - https://github.com/Eclypses/tutorial-mte-socket-python
- Objective C MacOS Tutorial - https://github.com/Eclypses/tutorial-mte-socket-objc-macos
- Swift MacOS Tutorial - https://github.com/Eclypses/tutorial-mte-socket-swift-macos
Mobile Application Tutorials
- Java Android Socket Tutorial - https://github.com/Eclypses/tutorial-mte-socket-java-android
- Kotlin Android Socket Tutorial - https://github.com/Eclypses/tutorial-mte-socket-kotlin-android
- Swift iOS Socket Tutorial - https://github.com/Eclypses/tutorial-mte-socket-swift-ios
HTTP Tutorials
This tutorial is sending messages via an HTTP connection. It is useful for MTE Web Implementations
- C# .NET Core Web App - https://github.com/Eclypses/tutorial-mte-http-csharp
JavaScript Framework tutorials
- JavaScript Angular Framework Tutorial - https://github.com/Eclypses/tutorial-mte-http-javascript-angular
- JavaScript ReactJS Tutorial - https://github.com/Eclypses/tutorial-mte-http-javascript-react
- JavaScript VueJS Tutorial - https://github.com/Eclypses/tutorial-mte-http-javascript-vue
- JavaScript Browser Tutorial - https://github.com/Eclypses/tutorial-mte-http-javascript-dom
- JavaScript NodeJS Server Tutorial - https://github.com/Eclypses/tutorial-mte-http-javascript-node
WebSocket Tutorials
This tutorial is sending messages via a WebSocket connection. It is useful for backend or simple server implementations
- C# WebSocket Tutorial - https://github.com/Eclypses/tutorial-mte-websocket-csharp
- NodeJS WebSocket Tutorial - https://github.com/Eclypses/tutorial-mte-websocket-javascript-node
- JavaScript Browser Tutorial - https://github.com/Eclypses/tutorial-mte-websocket-javascript-dom