RUL-05403--Rules Migration
I have a big problem while doing migration from 10.1.3.5 rules to 11.1.1.2 SOA. I was getting the rule error RUL-05403 but no traces for this anywhere. I am wondering where this error code is tagged. The underlying problem is...
oracle.rules.tools.migrator.MigrationException: an exception occurred RUL-05403: The parameter "srcOutdir" is null. Ensure that the parameter is not null. the following snipped was picked from the actual program.
MigrateRuleRepository conv = new MigrateRuleRepository();
// Set the output buffer
conv.setOutLog(new PrintWriter(System.out));
// Set input properties (SDK format)
conv.setOriginLocation(rule zip);
conv.setOriginType(MigrateRuleRepository.FILE_REPO);
conv.setOriginDictionaryName(MigrateRuleRepository.MIGRATE_ALL);
conv.setOriginVersionName(MigrateRuleRepository.MIGRATE_ALL);
// Set output properties
conv.setDestinationLocation("C:/Temp/");
System.out.println("Before calling migrate");
conv.migrate();