Search found 2 matches

by swegele
Sat May 14, 2016 11:43 am
Forum: DocuVieware
Topic: Session from CustomAction
Replies: 3
Views: 4487

Re: Session from CustomAction

I think I figured out a solution. Add this to your Global.asax.cs and scope it to the level of docuviewerapi method that you want. Here I am attaching Session (read-only) to all of the api calls. ReadOnly ensures that multiple concurrent api calls won't block each other while waiting for a previous ...
by swegele
Sat May 14, 2016 9:32 am
Forum: DocuVieware
Topic: Session from CustomAction
Replies: 3
Views: 4487

Session from CustomAction

I need access to Session variables when handling CustomActions events on the server. When I debug the Session property of HTTPContext.Current is null. I have important business objects stored in session. They work together with imaging functionality controlling auditing, permissions, etc. Can you he...