- Log in to post comments
User bio
404 bio not found
Member since Jul 17, 2023
Posts:
Stephan has not published any posts yet.
Replies:
Certifications & Credly badges:
Followers:
Stephan has no followers yet.
Following:
Stephan has not followed anybody yet.
We had the same issue after upgrading from Ensemble and got around it by doing a session login and end session explicitly in the handler method in our REST Dispatcher class.
For example:
ClassMethod PatientHandler(pId As %String = "") As %Status
{
set sc = %session.Login("rest_user","",1)
// ...... Rest of the method code ....
set %session.EndSession = 1
quit sc
}