Generic application and system error XML messages
In WebSphere Commerce, generic application and system errors can occur. XML messages are generated if a command, invoked by an inbound message through WebSphere MQ, encounters a generic application or a generic system exception.
A generic application error message is sent to the outbound queue if the error is related to the user. When a user enters an invalid parameter in an XML message, an ECApplicationException is thrown. The message is then sent to the outbound queue and the exception is documented in a log file.
A generic system error message is sent to the outbound queue if a runtime exception or a WebSphere Commerce configuration error is detected, such as null-pointer exceptions and transaction rollback exceptions.
The contents of generic XML messages vary depending on the contents of inbound XML messages however, the format is similar to the following:
<?xml version="1.0" encoding="UTF-8"?>
<WCS_Error type="GenericApplicationError"> (or <WCS_Error type="GenericSystemError">)
<RequestAttributes>
...(Error parameters and data of inbound XML message)
<excMsg>(Error message key, e.g. _ERR_REMOTE_EXCEPTION)</excMsg>
...
</RequestAttributes>
</WCS_Error>