audit-trail

Storing XML Audit

My program needs to start auditing saved XML data for users. Whenever the user clicks 'Save'; I'll need to insert his current data (serialized to XML) and save it somewhere. What is the better option between: 1) Creating a text file and dropping all the xml in there. (Creating a new text file per save) 2) Using a table in MS Access ...

How to represent successful, failed login and logout events

We have an audit requirement where we need to track user activity (e.g. successful login, logout actions and failed logins). We have defined 3 event types to track this information. What would be a nice way to show these violations (e.g. failed logins) or normal events (e.g. successful login, logout events) for the system administrator....

Avoid OpenERP audittrail bug

I'd like to manage OpenERP user's activity by installing the audittrail module. After creating some rules ( define which user, which object and which activity (create, update..) will be monitored). I update a product to see it works. When I've tried to update a product i got the system error. Seeing the log, I get [2010-08-31 12:53:35,0...

Telerik Open access Audit Trail

hi, How can i best implement an audit trail for an application that uses Telerik open access. I have posted this question on their support but there has been no reply for days (sucks) I have already tried the Tracking events within each scope but am unable to save the field that contain List or class attributes. (open access does not su...

How to log user operations for a asp.net application ?

How can we log user operations for a asp.net application. Further what is the approach for saving the log data ? Kindly guide. ...

Hibernate Interceptors or Events for Audit Trail?

I record a history of all changes to some entities and am about to implement a mechanism similar to Envers to take care of this automatically. My question is whether to use Hibernate interceptors or their event system? It seems like interceptors is a little simpler and does all I need. And Hibernate's own documentation suggests using ...