Blazer Server app, dotnet 7, SS 6.7, I have cleared all nuget caches, deleted all obj/bin folders, cleaned and build the solution.
In 6.5.1, I can call the following code to create a session, I made this change based on previous issues with session having issues with Blazor:
var session = (CustomUserSession)JwtAuthProviderReader.CreateSessionFromJwt(base.Request);
However in 6.7, the following error occurs:
System.ArgumentNullException: Value cannot be null. (Parameter 'jwt')
at ServiceStack.Auth.JwtAuthProviderReader.ConvertJwtToSession(IRequest req, String jwt) in /home/runner/work/ServiceStack/ServiceStack/ServiceStack/src/ServiceStack/Auth/JwtAuthProviderReader.cs:line 832
at ServiceStack.Auth.JwtAuthProviderReader.CreateSessionFromJwt(IRequest req) in /home/runner/work/ServiceStack/ServiceStack/ServiceStack/src/ServiceStack/Auth/JwtAuthProviderReader.cs:line 867
at CRM.ServiceInterface.GraphServices.<>c__DisplayClass11_0.<<Any>b__0>d.MoveNext() in /***MY CUSTOM CODE***/GraphServices.cs:line 114
I do notice in the base.Request that no cookies are provided. I cleared cookies, relogged in no change.
I tried adding [Authenticate] to the service method, but I just get a 401 error now.
My code is configured to use UseInProcessClient for all requests.