I have a ServiceStack GlobalRequestFilters
filter in the apphost
file that catch the authenticate request, the filter is working fine but the problem is in the dto in req
, res
and requestDto
is null ??!
this.GlobalRequestFilters.Add((req, res, requestDto) => {
if (req.OperationName.ToLower()== "authenticate")
{
var authData =req.GetDto();
}
});