Posts Tagged 'exception handling'

SSL Errors when Connecting to RiverStar Servers

Posted by:

Problem

When connecting from a local tomcat instance to one of RiverStar servers, such as when invoking a REST web service hosted on our servers, you may occasionally get this error:

Resolution

This error indicates that the version of Java that you currently have configured for Tomcat DOES NOT contain the proper root SSL certificate. To fix this issue, simply download the attached zip file and follow the directions in README.rtf.

[wpdm_file id=1 title=”true” desc=”true” ]

Continue Reading →
0

Throwing Exceptions on a Database Interface

Posted by:

Prior to Studio Release 12, database interface exceptions were commonly handled by:

  1. Including a result code field for each database interface.
  2. Confirming the results for each return call of a database interface to decide the action to take (i.e. throw exception).
  3. Executing a special exception workflow with appropriate notifications.

For example, for one RiverStar client we created custom action to execute on every database interface that called an API to check the result code field. If it was set to “1”, the API would ...

Continue Reading →
0