Infranet.properties File Unable To Accept Environment Variables
(Doc ID 2643331.1)
Last updated on MAY 17, 2021
Applies to:
Oracle Communications Billing and Revenue Management - Version 7.5.0.21.0 and laterInformation in this document applies to any platform.
Symptoms
Infranet.properties of uel and eai_js are not accepting environment variables. For the following parameters error is coming:-
UEL_infranet.properties:-
1) infranet.log.file
2) infranet.uel.load_success_file_location
3) infranet.uel.event_log_file_location
4) infranet.uel.cache_file_location
5) infranet.uel.cache_file_location
6) infranet.uel.cache_file_location
The above environment variables are now supported in BRM 7.5. This was already implemented and is working across all components.
The issue is that one Java class was missed in UEL and still uses the standard Properties class to managed properties file instead of PortalProperties.
The class is GEL_PrimaryProcess
Properties gelProps = new Properties();
gelProps.getProperty( "infranet.uel.application" );
Integer.parseInt( gelProps.getProperty( "infranet.uel.max_threads" ) );
gelProps.getProperty( "infranet.uel.event_log_file_location" ).trim();
gelProps.getProperty( "infranet.uel.cache_file_location" ).trim();
gelProps.getProperty( "infranet.uel.load_error_file_location" ).trim();
gelProps.getProperty( "infranet.uel.load_success_file_location"
).trim();
gelProps.getProperty( "infranet.log.file" );
gelProps.getProperty( "infranet.uel.filter_log_file_location" ).trim();
Integer.parseInt( gelProps.getProperty( "infranet.uel.max_load_errors"
) );
gelProps.getProperty( "infranet.uel.load_on_parse_errors" );
gelProps.getProperty( "infranet.uel.date_pattern" );
Integer.parseInt( gelProps.getProperty( "infranet.uel.queue_size" ) );
gelProps.getProperty( "infranet.uel.event_log_file_lang_code" );
gelProps.getProperty( "infranet.uel.event_log_file_country_code" );
gelProps.getProperty( "infranet.uel.event_log_file_variant_code" );
gelProps.getProperty( "infranet.uel.event_log_file_encoding" );
gelProps.getProperty( "infranet.uel.lenient" );
gelProps.getProperty( "infranet.uel.duplicate_check" );
Changes
Cause
To view full details, sign in with your My Oracle Support account. |
|
Don't have a My Oracle Support account? Click to get started! |
In this Document
Symptoms |
Changes |
Cause |
Solution |
References |