ILOG JRules User Guide > Running and Debugging > Getting Started > Tutorial: Debugging a Remote Rule Execution Server Application > Tutorial Scenario

A loan company typically needs to implement its continuously evolving loan validation policy, and to provide a loan validation application to its agents.

First the application needs to validate input data from a Web application. Then it needs to calculate its customer eligibility given the personal profile, the score, and the requested loan amount. The application evaluates a specific criteria or score to accept or reject the loan. Finally, the application computes an insurance rate from a function of the computed score, if the loan is accepted.

The application ruleflow is as follows:

flowtask main
{
  body   {
    initResult;
    dataValidation;
    if (?context.?report.isValidData())
    {
      computation;
      eligibility;
      if (?context.?report.isApproved())
      {
        insurance;
      }
    }
  }
};

images/loanvalidationruleflow.png

images/arrow_next.gif Start this tutorial: Task 1: Deploying the Loan Validation Application

Related Tasks

Creating a Debugger Launch Configuration
Debugging

Related Samples and Tutorials

Tutorial: Debugging a Ruleset