Activity overview
Latest activity by danielsena
Managed to get a fix for this, as listed on post viewtopic.php?t=15857 ... was able to put a task to upload new reports before running the sync. / comments
Managed to get a fix for this, as listed on post viewtopic.php?t=15857 ... was able to put a task to upload new reports before running the sync.
SmartAssembly to Jira Sync
I have managed to setup the Jira sync and have it working, except for one issue.
I have noticed that exceptions only appear in the SmartAssembly database, ExceptionReports table after i have opened...
I managed to find a work around to my problem, although it is not a nice solution...
I added code to the SA custom template OnReportException method.
if (e.Exception.HelpLink != "SHOW_EXCEPTION" && e.CanContinue)
{
e.TryToContinue = true;
return;
}
And in my generic exception handler I added the SHOW_EXCEPTION string to the HelpLink. / comments
I managed to find a work around to my problem, although it is not a nice solution...
I added code to the SA custom template OnReportException method.
if (e.Exception.HelpLink != "SHOW_EXCEPTION" &&...
Manually controlling exception handling
I would like to control unhandled exceptions within my program manually, utilizing the SmartAssembly features to report the error if needed.
I have added event handlers to the AppDomain.CurrentDoma...
Dynamically set locations at runtime
For SmartAssembly exception reporting, how do you dynamically set the database, web service and file store locations at run time.
I would like to have a single build process for an application, but...
i realize that my question is a bit too specific to my environment so have rephrased it and will post now... / comments
i realize that my question is a bit too specific to my environment so have rephrased it and will post now...
SmartAssembly with runtime web service/database location
Hello,
I am trying to use SmartAssembly in an enterprise level application for user exception reporting and would like to have the web service and database server externally configurable at runtime...