I am new in computer science (so hopefully I am using the right words and give the right information to answer this question), hopefully you guys can help me. I want to automatically transfer (JSON) data between two .NET Solutions.
I have two Solutions in .NET:
The Bot Framework SDK - Build in .NET Core 2.2 (https://learn.microsoft.com/en-us/azure/bot-service/dotnet/bot-builder-dotnet-sdk-quickstart?view=azure-bot-service-4.0)
- From what I understand: build in ASP.NET Core
The Qlik Sense .Net SDK. - build in .NET Framework 4.5.2 (https://github.com/kolsrud/qlik-dot-net-sdk-hypercube-usage)
I want to let these two solutions communicate with each other.
On the one hand: in the QlikSense.NET SDK we store all the data into a variable (let's say variable 'Sales', holding JSON data), if this variable is updated, I want to transfer it to the Bot framework (and store the data here).
On the other hand: we have a variable in the Bot Framework (let's say variable 'Query', holding JSON data), if that variable is updated, I want to pass it to the Qliksense SDK.
Summarized: I want to automatically transfer (JSON) data between the Qliksense SDK and the Bot framework SDK. How can I do that?
Again, sorry if something is unclear. Thanks in advance for you help! Appreciated!
Edit 1:
What have I tried? As asked by Selvin:
The only thing that I could come up with, was writing the JSON variable into a text file, and read that Text file from the other script. But, I don't think that this is a proper 'solution'.