Support
Joined: 18 Jul 2005 Posts: 731
|
Posted: Thu Apr 19, 2012 4:27 am Post subject: INFO: Common Exception Reporting Service related issues and their solutions |
|
|
1. Did you specify the correct service URL which is http://MyServiceBaseURL/Service.asmx
2. When obfuscating your assemblies, did you specify the above URL in the Exception Reporting tab?.
3. Did you give read-write permissions to the App_Data folder? Please see the topic Crypto Obfuscator UI Reference: Create Exception Reporting Service Dialog in the help file for detailed instructions.
4. Can you see a list of service operations when you access the exception reporting service URL from your browser?
5. If the service is still not working properly, check for any exceptions that might be occurring when the service runs. The service will log exceptions to the App_Data folder. This facilitates trouble-shooting and diagnosing any problems with the service.
Each exception is logged to its own file having following name: "exception_dd-MMM-yyyy_HH.mm.txt".
Note: To disable exception logging, set the ExceptionReportingService.LogExceptions property to False in the ExceptionReportingService.cs file as follows:
C#
Code: | public ExceptionReportingServiceClass()
{
this.LogExceptions=false;
} |
VB.Net
Code: | Public Sub New()
Me.LogExceptions = False
End Sub |
|
|