I upgraded to version 5.8 and the webservice /authenticate no longer works (despite it being listed as authenticate in the wsdl. /auth does work.
Is there a way I can decorate the service to get /authenticate back ?
Regards.
I upgraded to version 5.8 and the webservice /authenticate no longer works (despite it being listed as authenticate in the wsdl. /auth does work.
Is there a way I can decorate the service to get /authenticate back ?
Regards.
You can call AddAuthenticateAliasRoutes()
, e.g:
Plugins.Add(new AuthFeature { ... }.AddAuthenticateAliasRoutes());
Thanks Mythz as always!