You are not logged in.
Pages: 1
If a session has been closed it's possible to get an AV in TSQLRestServer.URI.
Session := SessionGet(SessionID); in line 14322 of SQLite3Commons can return nil. This causes an AV in the following line: if Session.IsValidURL...
Could a check be added.
Offline
The TAuthSession.IsValidURL method already check for self=nil in its implementation.
So IMHO no AV may occur here.
A lot of (non-virtual, of course) methods of the framework use such an internal (self=nil) test to avoid AV in the user code, even if the provided value is incorrect.
Offline
Seems that I was looking at an old version of the code. It's working now, thanks.
Offline
Pages: 1