0

I am creating a UWP application for Hololens and I need the Kafka-Client. I used the pre-built .dlls from confluent-kafka-dotnet (https://github.com/confluentinc/confluent-kafka-dotnet) and librdkafka (https://github.com/edenhill/librdkafka) but when I run the application I get that error:

"Unable to load DLL 'kernel32.dll': The specified module could not be found."

I think the problem is on librdkafka.dll because the files are released for standard architectures like x86 or x64 (Desktop) not for UWP.

So, could you give me some suggestions how to procceed with that problem? It's needed to rebuild the librdkafka as VC++ project for Universal Windows Platform ?

Thanks in advance

Jonas W
  • 3,010
  • 1
  • 26
  • 42
Dimitris
  • 3
  • 3

1 Answers1

0

The problem was the releases are built for desktop applications and not for UWP. Finally, I used REST proxy for Apache Kafka over HTTP requests. You can follow the link.

Dimitris
  • 3
  • 3