Hi i am currently playing around with the SDKs and i can’t get the dotnet SDK to log into the server. The server is a self hosted opencore.
I can .connect just fine, but when i call:
var (jwt, error, success) = await client.Signin(“marvstestbot”,“marvstestbot”);
the program is stuck waiting for it to return. The log shows the following:
2025-01-30T12:00:33.510291Z DEBUG signin: openiap_client: Attempting sign-in using SigninRequest { username: "marvstestbot", password: "marvstestbot", jwt: "", ping: false, validateonly: false, agent: "dotnet", version: "0.0.18", longtoken: false }
2025-01-30T12:00:33.510827Z TRACE signin:send:send_noawait:send_envelope: openiap_client: Sending signin message, in the thread
2025-01-30T12:00:33.510991Z DEBUG openiap_client::ws: Send #2 #naqyf6 signin message
2025-01-30T12:00:33.784019Z TRACE parse_incomming_envelope: openiap_client: parse_incomming_envelope, command: signinreply
2025-01-30T12:00:33.784261Z DEBUG parse_incomming_envelope: openiap_client: Received #2 #o16lksctt (reply to #naqyf6) signinreply message
2025-01-30T12:00:33.784503Z DEBUG signin: openiap_client: Sign-in reply received
2025-01-30T12:00:33.784641Z DEBUG signin: openiap_client: Sign-in successful
2025-01-30T12:00:33.784786Z TRACE signin: openiap_client: Set connected: Signedin from Connected
any idea what i am doing wrong?