########################################## # # compat.prop - configuration file for the LDJ Kit # ########################################## ############################################################################## # LDJ KIT PROPERTIES ############################################################################## # These two values specify directories for the installation. The scratchDir is # used for temporary storage and the installDir is used to find LDJ Kit JAR files # and other configuration files. These properties must be changed to reflect # your particular installation of the LDJ Kit. The paths MUST be absolute, # including a leading slash (/) on UNIX or a drive letter (:\\) # on Windows. Slashes in Windows path names must be doubled (\\). # If the scratchDir does not exist, an attempt will be made to create it # for you. com.sun.jini.compat.scratchDir=/tmp com.sun.jini.compat.installDir=/files/jinildj1_0 # Sets the smallest unit of time, in milliseconds, that is useful for failure # detection. Multiples of this time are used in many tests for timing. # The default value is 30000 milliseconds (30 seconds). com.sun.jini.compat.failureTime=30000 # The category of the program that you are testing. The possible values are: # client, service, and lookup. You can specify multiple categories by using a # comma-separated list with no spaces. This property can be commented out # only if a category is specified from the command line. com.sun.jini.compat.categories=service # Specifies the implementation class of the admin component. If you want to # use your own admin, you should specify it here. This property must be set # to a valid value. The valid values for the default admins provided # in the LDJ Kit are: # com.sun.jini.compat.harness.DefaultClientAdmin # com.sun.jini.compat.harness.DefaultServiceAdmin # com.sun.jini.compat.harness.DefaultLookupAdmin # # Example admins (used to test the services in the Jini Technology Starter Kit) # which are included in the LDJ Kit are: # com.sun.jini.compat.admin2.ServiceStarterAdmin (for service starter compatible Jini 2.0 services) # com.sun.jini.compat.admin2.ExecServiceAdmin (for any Jini 2.0 services) # com.sun.jini.compat.admin1.FiddlerAdmin (for Jini 1.2.x services) # com.sun.jini.compat.admin1.MahaloAdmin (for Jini 1.2.x services) # com.sun.jini.compat.admin1.MercuryAdmin (for Jini 1.2.x services) # com.sun.jini.compat.admin1.NormAdmin (for Jini 1.2.x services) # com.sun.jini.compat.admin1.OutriggerAdmin (for Jini 1.2.x services) # com.sun.jini.compat.admin1.ReggieAdmin (for Jini 1.2.x services) # com.sun.jini.compat.admin1.ReggieServiceAdmin (for Jini 1.2.x services) # com.sun.jini.compat.admin1.TransientServiceAdmin (for Jini 1.2.x services) com.sun.jini.compat.adminClass=com.sun.jini.compat.harness.DefaultServiceAdmin # Specifies the directory that contains your extra classes or JAR files # that need to be in the class loader hierarchy of the LDJ Kit's # lookup service. Since all classes and JAR files in this directory # will be loaded through the extension class loader, this directory # should contain *only* the necessary classes and JAR files and # nothing more. Slashes in Windows path names must be doubled (\\). # The given directory path must be an absolute pathname. # For more information on this property see the LDJ Kit documentation. # com.sun.jini.compat.lookupPlatformDir= ############################################################################## # DEBUGGING PROPERTIES # properties used in debugging runs of the LDJ Kit ############################################################################## # Sets the time, in milliseconds, that the LDJ Kit should wait to ensure that an # action or event does not occur. Setting this property to # anything less than the default value of 600000 (10 minutes) will make the # LDJ Kit run unofficial. # com.sun.jini.compat.unofficialQuietTime=600000 # Sets the debug level of the LDJ Kit. The possible values are: # none - no extra feedback (the default) # error - only displays extra information when something goes wrong or fails # all - shows all extra information # com.sun.jini.compat.debugLevel=all ############################################################################## # DEFAULT ADMIN PROPERTIES # properties used by the default Admins ############################################################################## # All DefaultAdmin subclasses use this property to determine the host # address of the program. This property must be set to test a program # (service, client, or lookup service) that will be run on a host that # is different than where the LDJ Kit will be run. # com.sun.jini.compat.defaultAdmin.address=myHostName # The DefaultLookupAdmin uses this port to know where to look for the running # lookup when it tries to get a ServiceRegistrar. If this property is commented # out, then the value defaults to 4160. # com.sun.jini.compat.defaultLookupAdmin.lookupPort=4160 ############################################################################# # JINI TECHNOLOGY STARTER KIT 2.0 ADMIN PROPERTIES # properties used by the example admins included in the LDJ Kit ############################################################################# # Here are the properties that com.sun.jini.compat.admin2.ServiceStarterAdmin # uses. This admin is useful for starting services that conform to the # Jini Service Starter. You'll need to uncomment and set each of # these properties to reflect the appropriate locations on your system. # com.sun.jini.compat.admin2.starterConfig=/files/jinildj1_0/configs/.config # com.sun.jini.compat.admin2.jskHome=/files/jini2_1 # com.sun.jini.compat.admin2.javaHome=/files/java # Here are the properties that com.sun.jini.compat.admin2.ExecServiceAdmin # uses. This admin is useful for starting any Jini service. You'll need to # uncomment and set each of these properties to reflect the appropriate # locations on your system. # com.sun.jini.compat.admin2.execServiceAdmin.startCommand= # com.sun.jini.compat.admin2.execServiceAdmin.interface= # com.sun.jini.compat.admin2.execServiceAdmin.lookupPort=4160 ############################################################################# # JINI TECHNOLOGY STARTER KIT 1.2.1_01 ADMIN PROPERTIES # properties used by the example admins included in the LDJ Kit ############################################################################# # Here are the properties that com.sun.jini.compat.admin1.ReggieAdmin # uses. You'll need to uncomment and set each of these properties to reflect # the appropriate locations on your system. # com.sun.jini.compat.admin1.reggie.codebase=http://myHostName:8081/reggie-dl.jar # com.sun.jini.compat.admin1.reggie.classpath=/files/jini1_2/lib/reggie.jar # com.sun.jini.compat.admin1.reggie.policy=/files/jini1_2/policy/policy.reggie # com.sun.jini.compat.admin1.reggie.outputDir=/tmp/reggie_log # Here are the properties that com.sun.jini.compat.admin1.ReggieServiceAdmin # uses. You'll need to uncomment and set each of these properties to reflect # the appropriate locations on your system. # com.sun.jini.compat.admin1.reggieService.codebase=http://myHostName:8081/reggie-dl.jar # com.sun.jini.compat.admin1.reggieService.classpath=/files/jini1_2/lib/reggie.jar # com.sun.jini.compat.admin1.reggieService.policy=/files/jini1_2/policy/policy.all # com.sun.jini.compat.admin1.reggieService.outputDir=/tmp/reggie_service_log # Here are the properties that com.sun.jini.compat.admin1.MahaloAdmin # uses. You'll need to uncomment and set each of these properties to reflect # the appropriate locations on your system. # com.sun.jini.compat.admin1.mahalo.codebase=http://myHostName:8081/mahalo-dl.jar # com.sun.jini.compat.admin1.mahalo.classpath=/files/jini1_2/lib/mahalo.jar # com.sun.jini.compat.admin1.mahalo.policy=/files/jini1_2/policy/policy.mahalo # com.sun.jini.compat.admin1.mahalo.outputDir=/tmp/txn_log # Here are the properties that com.sun.jini.compat.admin1.OutriggerAdmin # uses. You'll need to uncomment and set each of these properties to reflect # the appropriate locations on your system. # com.sun.jini.compat.admin1.outrigger.codebase=http://myHostName:8081/outrigger-dl.jar # com.sun.jini.compat.admin1.outrigger.classpath=/files/jini1_2/lib/outrigger.jar # com.sun.jini.compat.admin1.outrigger.policy=/files/jini1_2/policy/policy.outrigger # com.sun.jini.compat.admin1.outrigger.outputDir=/tmp/persistent_log # Here are the properties that com.sun.jini.compat.admin1.NormAdmin # uses. You'll need to uncomment and set each of these properties to reflect # the appropriate locations on your system. # com.sun.jini.compat.admin1.norm.codebase=http://myHostName:8081/norm-dl.jar # com.sun.jini.compat.admin1.norm.classpath=/files/jini1_2/lib/norm.jar # com.sun.jini.compat.admin1.norm.policy=/files/jini1_2/policy/policy.norm # com.sun.jini.compat.admin1.norm.outputDir=/tmp/persistentlogdir # Here are the properties that com.sun.jini.compat.admin1.MercuryAdmin # uses. You'll need to uncomment and set each of these properties to reflect # the appropriate locations on your system. # com.sun.jini.compat.admin1.mercury.codebase=http://myHostName:8081/mercury-dl.jar # com.sun.jini.compat.admin1.mercury.classpath=/files/jini1_2/lib/mercury.jar # com.sun.jini.compat.admin1.mercury.policy=/files/jini1_2/policy/policy.mercury # com.sun.jini.compat.admin1.mercury.outputDir=/tmp/persistentlogdir # Here are the properties that com.sun.jini.compat.admin1.FiddlerAdmin # uses. You'll need to uncomment and set each of these properties to reflect # the appropriate locations on your system. # com.sun.jini.compat.admin1.fiddler.codebase=http://myHostName:8081/fiddler-dl.jar # com.sun.jini.compat.admin1.fiddler.classpath=/files/jini1_2/lib/fiddler.jar # com.sun.jini.compat.admin1.fiddler.policy=/files/jini1_2/policy/policy.fiddler # com.sun.jini.compat.admin1.fiddler.outputDir=/tmp/persistentlogdir # Here are the properties that com.sun.jini.compat.admin1.TransientServiceAdmin # requires. You'll need to uncomment and set each of these properties to # reflect the appropriate locations on your system. Additional optional # properties supported by this admin are documented in the javadoc for # TransientServiceAdmin # com.sun.jini.compat.service.proxyclass=com.sun.jini.outrigger.SpaceProxy # com.sun.jini.compat.service.jarfile=http://myHostName:8081/transient-outrigger.jar # com.sun.jini.compat.service.codebase=http://myHostName:8081/outrigger-dl.jar # com.sun.jini.compat.service.policy=/files/jini1_2/policy/policy.transient-outrigger # com.sun.jini.compat.service.optional_jvm_args=-Djava.compiler=