Best Practices for Reporting Services Exception Handling
When developing Reporting Services applications, there are several methodologies you can use to eliminate or reduce the occurrence of exceptions. When exceptions do occur, provide clear and concise error messages to the user, and add adequate exception handling to prevent your applications from ending unexpectedly.
An application that sends requests to the Report Server Web service should do the following:
- Avoid causing exceptions by preventing as many invalid requests as possible.
- Catch exceptions and provide specific error-handling code whenever possible.
- Deal with error cases that do not throw exceptions.
Contenuto della sezione
Topic | Description |
---|---|
Describes techniques for preventing requests that are not valid from being sent to the report server. |
|
Describes how to further enhance the reliability of your application with try/catch blocks. |
|
Explains how to handle errors that do not result in an exception being thrown by Reporting Services. |
|
Explains how to programmatically handle specific errors by using the Detail property of the SoapException object. |
Vedere anche
Riferimento
Reporting Services SoapException Class
Concetti
Altre risorse
Introducing Exception Handling in Reporting Services