| ILOG JRules User Guide > Running and Debugging > Getting Started > Tutorial: Debugging a Remote Rule Execution Server Application > Tutorial Scenario |
Tutorial Scenario |
PREVIOUS NEXT |
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;
}
}
}
};
Start this tutorial: Task 1: Deploying the Loan Validation Application
| Copyright © 1987-2008 ILOG S.A. All rights reserved. Legal terms. Documentation homepage. | PREVIOUS NEXT |