It is ridiculous that I’m having to write one myself right in the middle of some UI development. It would have been better if there existed a C++ “Holochain-connector” library which, when given the URL&port, and the agent-id you wanna make the call as, and obviously, the fully-resolved function name, take a C++ struct, serialize it with messagepack (using their C++ library), listen the result and have it be deserialized into the supplied template-arg type that the caller expects for the result.
Saying that “We talk WebSocket, so you can connect the UI from any language that talks WebSocket” is rude. It’s equivalent to saying, “If you want to write a (h)app’s UI, you better be ready for drudgery”. You should better provide ready-made client libraries for all languages that people use to write UIs, especially C++ [not everyone loves node].
I’m guessing it’d be really similar, and isn’t too difficult. I’ve suggested that the API needs documentation. Agree that there needs to be more diverse client libraries
The request::payload has to be binary (msgpack encoded), or rather, the request::data::payload.
But does the “request” that the conductor_api expects have to be binary as well (as you suggest)? Can’t it just be string? The request being: cell_id, fn name, zome name, payload, etc. What’s the point to encode it too with msgpack as “data”?
Did you write your client library separately (so as to be someday pushed to the Github/Holochain organization as a standard C# client library (community developed)), or did you just jam it in your (h)app’s C# UI code itself?
I’m still cleaning it up but it will be easily extractable, though it relies on two (unvetted) packages (one for websockets, and one for msgpack). The holochain interface itself is barely 200 lines of code, and I think after cleaning it up it will be smaller. The most difficult part was making sense of some parts of documentation, and getting help from @Connoropolous about specific corners of the holochain codebase I needed to solve my problem.
For reference, here’s a gist of my C# implementation when it was finally working end-to-end (with absolutely no refactoring or cleanup )
Hey…
I’ve been dancing around the possibility of doing this write up for a while… can y’all check this out? @jakintosh does this read right with your experience. I actually did read your source code again for some degree of confirmation and sanity checking.
Now @Connoropolous has finally helped me get a windows binary working again after waiting 2 years when HoloNET was first built (the first C#/Unity client for Holochain), I can now finish the upgrade to RSM as well as the .NET HDK and then STAR ODK, all of which will be released soon…
I was about to create a Nuget package for HoloNET 2 years ago but then NixOS and then RSM threw 2 curved balls at me so I delayed doing that until could get it working properly on Windows again…
Hopefully the very long way will have been worth it! lol
In my case, I was unnecessarily converting a C# string into a utf8 encoded byte[]; directly passing the string itself solved my problem. I think this is because the hash is not actually encoded in UTF8, but that you do that for readability purposes, but I’m still a little fuzzy on that.
It would help to know what you are doing that results in the error you are getting. From my understanding when I as troubleshooting, you can also run into this problem if you send the wrong kind of hash (like a dna hash when it’s expecting an agent hash). Perhaps you have set up your cell definitions backwards, swapping agent hash and dna hash.
It worked! Thank you so so so so so much, @jakintosh… You’re my hero! Love you! This saved my life! I was almost on the brink of a mental breakdown (haha!). I now realize that being an early adopter of a really new tech has its downsides. But a community like this one nullifies all those downsides. Thanks for helping really. I guess it was foolish of me to not explore that option myself. I wonder why Connor did not mention that in the hackmd doc. Anyway, right now I’m able to 1) run the app in the sandbox, 2) port-forward the app-ws port from WSL to native Windows, 3) allow it through firewall, 4) connect to the app-ws from my UE4 game/UI, 5) make the zome call without any errors.
What should my payload be? I’m passing an empty object
Looks like my app’s init() function panicked or something. 'Cause I just ran hc sandbox call activate-app test-app, and it said
Error: Failed to activate app, got: Error(InternalError(“Conductor returned an error while using a ConductorApi: AppNotInstalled(“test-app”)”))
By the way, calling hc sandbox call install-app yielded
hc sandbox call install-app uhC0k5PE8a9AjyXj5RDqDPFiQG0zhrY0nghGjyIH5b7pCMOYVvJxP
Error: Failed to install app: Expected AdminResponse::AppInstalled but got Error(InternalError(“Conductor returned an error while using a ConductorApi: AppAlreadyInstalled(“test-app”)”))
It sure must be my lengthy init() function that’s failing… Would try calling a simpler app first.
By the way, @Connoropolous, what does activate-app do? Does it call the app’s (the DNA’s) init() function, as I’m assuming?
LogTemp: Warning: Socket connected.
LogTemp: Warning: CallZomeFunction: assembled the wire-message.
LogTemp: Warning: CallZomeFunction: sent the dumped wire-message. WireMessage:
LogTemp: data : ??data??cap??cell_id??5uhC0kb8NAI6Ts9fdahNGoz-xttLBSKg1G9v3AgsdcNb70LxmOwzS9?5uhCAk1gCrNfN6cJN6Owloj_lec-eC_6kczLrYjwnSGFt7zCjQh2GA?fn_name?say_hello?payload???Input?Nothing?provenance?5uhCAk1gCrNfN6cJN6Owloj_lec-eC_6kczLrYjwnSGFt7zCjQh2GA?zome_name?map?type?zome_call
LogTemp: id : 6259
LogTemp: type : Request
LogTemp: Warning: Added local function to delegate.
LogTemp: Warning: Test function ends.
LogTemp: Warning: Socket: Plain message received: ??type?Response?id?s?data?-??type?zome_call?data???output?Hello, honey!
Thank you so much guys for all the help. It finally worked!
I’ve been having a week with less-than-average keyboard time so haven’t been able to respond.
Well worked through! I will review my doc to see what exactly is amiss
Not exactly, ‘init’ gets called at the time of the first zome call…
activate-app is required in order for the conductor to actually allocate memory and resources to the cells in the app. In particular, to perform gossip and make network connections with peers
No it’s not that because it says ‘uhc0k’ which is what Holochain says it expects as a DnaHash… the problem revolves around the fact that this encoding is a base64 encoded string. utf-8 has nothing to do with it, minus the fact that’s how we read the chars
Oh oops, you said “you can also run into this problem if you send the wrong kind of hash” which is true!