1

there is grpc-dotnet, which has more support in Visual Studio for .net CORE then there is C-Core, which supports old .NET FRAMEWORK versions.

I have an Excel-Addin, which is why i am stuck with .NET FRAMEWORK. Can i program a Server Component in grpc-dotnet and consume that from a .NET FRAMEWORK software?

Jens Caasen
  • 597
  • 1
  • 6
  • 19
  • 6
    They're speaking the same protocol (gRPC), right? So why wouldn't they work? Did you try it out? What was the result? – mason Apr 23 '20 at 13:01
  • 1
    I don't see why they should not but if in doubt, I'd create a simple minimal proof of concept. – Fildor Apr 23 '20 at 13:07
  • 1
    I'm trying to make it work but I'm facing a lot of difficulties! Like the Address keep giving me Unavailable Address! Looks like that I need to do something related to SSL but with no hope till now :( – bunjeeb Jun 30 '20 at 23:20
  • I got it working. Please try my answer – Jins Peter Jul 23 '20 at 17:04
  • My answer got deleted bys moderator as I answered the same at other similar questions. The idea is I got it working with SSL. Try https://stackoverflow.com/a/63041806/6128864 – Jins Peter Jul 24 '20 at 20:39

1 Answers1

1

Absolutely. gRPC effectively, is an intermediary between two different solutions or projects, just like JSON, which can be used to share data within the same application or across.

clicksrv
  • 90
  • 9