Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/qlik-oss/server-side-extension
A Qlik server-side extension protocol for extending the Qlik built-in expression library with functionality from external calculation engines.
https://github.com/qlik-oss/server-side-extension
advanced-analytics-integration cpp csharp java protobuf python qlik
Last synced: 2 days ago
JSON representation
A Qlik server-side extension protocol for extending the Qlik built-in expression library with functionality from external calculation engines.
- Host: GitHub
- URL: https://github.com/qlik-oss/server-side-extension
- Owner: qlik-oss
- License: mit
- Created: 2017-06-26T11:13:15.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-04-12T16:53:12.000Z (over 1 year ago)
- Last Synced: 2024-06-18T20:26:05.943Z (5 months ago)
- Topics: advanced-analytics-integration, cpp, csharp, java, protobuf, python, qlik
- Language: Batchfile
- Size: 18.5 MB
- Stars: 150
- Watchers: 40
- Forks: 127
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Server Side Extension
This repository provides a server-side extension (SSE) protocol based on gRPC that allows you to extend the Qlik built-in expression library with functionality from external calculation engines. You can use external calculation engines in both load scripts and charts. In Qlik Sense and QlikView, you connect to these server-side extensions (SSEs) by defining analytic connections.
This repository includes documentation that describes the SSE protocol, how to use it and how to build your own plugins. We have also examples written in a couple of different languages.
## Status
[![CircleCI](https://circleci.com/gh/qlik-oss/server-side-extension.svg?style=shield)](https://circleci.com/gh/qlik-oss/server-side-extension)__Latest SSE Version:__ [v1.1.0](https://github.com/qlik-oss/server-side-extension/releases/latest)
__Examples Disclaimer:__ The examples provided are just examples, therefore __use them at your own risk__.| __Latest Product Version__ | __SSE Supported__ |
| ----- | ----- |
| Qlik Sense February 2018 | v1.1.0 |
| QlikView November 2017| v1.0.0 |[Previous Versions](CHANGELOG.md)
## Documentation
* [Overview](docs/README.md)
* [Communication flow](docs/communication_flow.md)
* [Generating certificates for secure connection](generate_certs_guide/README.md)
* [Configuring SSE plugins in Qlik Sense and QlikView](docs/configuration.md)
* [Writing an SSE plugin](docs/writing_a_plugin.md)
* [Protocol Documentation](docs/SSE_Protocol.md) (API reference)## Examples
### Python
* [Getting started with the Python examples](examples/python/GetStarted.md)
* [Writing an SSE plugin using Python](examples/python/README.md)### C++
* [Writing an SSE Plugin using C++](examples/cpp/README.md)
* [A basic example](examples/cpp/basic_example/README.md)### C#
* [Writing an SSE Plugin using C#](examples/CSharp/README.md)
* The [SSE R-plugin](https://github.com/qlik-oss/sse-r-plugin) is written in C#### Java
* [A basic Java example](examples/java/basic_example/README.md)
* [Writing an SSE plugin using Java](examples/java/basic_example/WritingAnSSEPluginUsingJava.md)### Go
* [A basic Go example](examples/go/basic_example/README.md)
* [Writing an SSE Plugin using Go](examples/go/README.md)## Contributing
Please follow the instructions in [CONTRIBUTING.md](.github/CONTRIBUTING.md).## Getting help
1. Look at the documentation and examples in this repo again.
2. Do a search in [Qlik Community](https://community.qlik.com/t5/Qlik-Server-Side-Extensions/bd-p/qlik-sse-discussions) to see if there is already an answer to your question.If not, you can either
* Ask your question in #sse on [Qlik Branch slack](https://qlik-branch.slack.com). For access, go to [Qlik Branch](https://developer.qlik.com/#squad) and qlik on [SLACK](https://qlikbranch-slack-invite.herokuapp.com/). This is good for small questions and usually gives quick feedback.
* Create a new question on [Qlik Community](https://community.qlik.com/t5/forums/postpage/board-id/qlik-sse-discussions). This is a good option for questions you think more people are interested in since question and answer will remain for others to see.There are also several projects using SSE on [Qlik Branch](https://developer.qlik.com/globalsearch?search=sse%20aai) which can serve as useful examples.