Error processing SSI file
LEADTOOLS Leadtools.Documents (Leadtools.Documents assembly)

ParseError Method

Show in webframe
Creates a ServiceError object from the parameters of a Promisefail callback.
Syntax
 function Leadtools.Documents.ServiceError.parseError( 
   jqXHR ,
   statusText ,
   errorThrown 
)

Parameters

ParameterTypeDescription
jqXHRobject
statusTextstring
errorThrownstring
Remarks

When a Documents Library Service call fails for any reason, the Promise object returned from that method will call its fail handler. The arguments provided to a function registered in the fail handler are the jQuery jqXHR object (a superset of the XML Http Response object), a statusText string, and an errorThrown string.

If the error occurred within the Documents Service, all three of these parameters should have values. If the error occurred while parsing or delivering the data (and thus was not the fault of the service), only errorThrown, the third argument, will have a value. If a UploadFile service call was aborted using the special abort method, all of the parameters to the fail callback will be null.

These three objects can be passed to ParseError as-is to create a new ServiceError object. ParseError parses the name of the original method call as a string and sets it as MethodName.

See ServiceError or Promises in the Documents Library Service for more information.

Example
Refer to LoadFromUri for an example.
See Also

Reference

ServiceError Object
ServiceError Members

Error processing SSI file