KieSession kSession = getModelSession( pmmlSource, false );
// One entry-point per input field
// field name "xyz" => entry point name "in_Xyz"
kSession.getEntryPoint( "in_Temp" ).insert( 22.0 );
kSession.fireAllRules();
// Query results
// output field name --> query name
// model name --> first arg
// value --> second arg ( Variable.v for output, any value for testing )