08-05-2020, 06:18 AM
Session ID is invalid is a normal exception. Nothing to worry about.
It is the same as an expired session.
However, your stack trace contains no useful information.
> Unknown function at TMethodImplementationIntercept
means that the debug info is not present in your build.
Please double check your application options and see if you have debug info on in both compiling and linking. Follow *carefully* the instructions on that document and you will have a nice call stack when some error occur, with the method names and line numbers which allows you to find exactly what caused the error.
But again, this exception is nothing to worry about. It is completely normal and won't ever crash your server
It is the same as an expired session.
However, your stack trace contains no useful information.
> Unknown function at TMethodImplementationIntercept
means that the debug info is not present in your build.
Please double check your application options and see if you have debug info on in both compiling and linking. Follow *carefully* the instructions on that document and you will have a nice call stack when some error occur, with the method names and line numbers which allows you to find exactly what caused the error.
But again, this exception is nothing to worry about. It is completely normal and won't ever crash your server

