How Get Full Call Stack in Delphi Server Application

callstack, datasnap, debugging, delphi, exception

Solution

EurekaLog is extremely effective for all applications. Just configure it so that it will log the exceptions to a file and doesn't display exception dialogs at all.

Problem

I have a multi-tier software that is two application(GUI,DataSnap Server) . My DataSnap server application has a bug cause occur EAccessViolation in Some times. such this : ``` Exception EAccessViolation in module unidac160.bpl at 00010CB1. Access Violation at 002B77832 in module unidac160.bpl. Read of address 0000000C ``` I want get full Call Stack and log that in file. also i use eurekalog but it is effective just for gui application.

Original source

Related problems