OPC-UA-to-MQTT-Gateway icon indicating copy to clipboard operation
OPC-UA-to-MQTT-Gateway copied to clipboard

RE: executable exe for the source code

Open siddharthtaunk opened this issue 7 years ago • 3 comments

Hi,

This is not a issue, but a request. As mentioned on your page, you show an client GUI for the code. Can I please have the executable file(.exe) for the same. I am not a C++ developer nor I have an environment to work with.

Kindly help.

Siddharth

siddharthtaunk avatar Nov 30 '17 10:11 siddharthtaunk

Hey!

You can download a windows executable here; https://github.com/Harha/OPC-UA-to-MQTT-Gateway/releases

Harha avatar Nov 30 '17 13:11 Harha

Thanks for your compiled exe.

I would like to change the source to send the data to restAPI. Kindly let me know the IDE to recompile your source code. A link to the same would be great.

regards. Siddharth

siddharthtaunk avatar Dec 01 '17 12:12 siddharthtaunk

@siddharthtaunk There is another project I've made as a school project which does just that. Just look in the github page's 'releases' section, you can find an .exe there.

https://github.com/Harha/OPC-UA-Data-Gateway

That program can be linked to read any variables in the OPC UA server and it will use POST messages to update the variable states to a REST API. It even supports reading data from multiple OPC UA servers at once and sending the data to a single target REST API.

My example REST API; https://github.com/Harha/OPC-UA-Data-REST My example client; https://github.com/Harha/OPC-UA-Data-Visualizer

And as for compiling the source code. It's c++, you can use for example Visual Studio 2015 Community or something like that. Point is, it isn't dependent on any single 'IDE', you can just compile and link it into an exe on windows or linux or whatever. Use MSVC, GCC, MinGW32 or LLVM for compiler/linker toolchain. That other project I linked contains a visual studio solution, so it should be easy to just use visual studio for compiling it.

Harha avatar Dec 01 '17 15:12 Harha