Hello,
here is an example configuration for a client:
#------------------------------------------------------------------------------#
# Host name, or ip address, of the host the JPPF driver is running on #
#------------------------------------------------------------------------------#
jppf.server.host = localhost
#------------------------------------------------------------------------------#
# port number for the class server that performs remote class loading #
# default value is 11111; uncomment to specify a different value #
#------------------------------------------------------------------------------#
#class.server.port = 11111
#------------------------------------------------------------------------------#
# port number the clients / applications connect to #
# default value is 11112; uncomment to specify a different value #
#------------------------------------------------------------------------------#
#app.server.port = 11112
#------------------------------------------------------------------------------#
# Automatic recovery: number of seconds before the first reconnection attempt. #
# default value is 1; uncomment to specify a different value #
#------------------------------------------------------------------------------#
#reconnect.initial.delay = 1
#------------------------------------------------------------------------------#
# Automatic recovery: time after which the system stops trying to reconnect, #
# in seconds. #
# default value is 60; uncomment to specify a different value #
#------------------------------------------------------------------------------#
#reconnect.max.time = 60
#------------------------------------------------------------------------------#
# Automatic recovery: time between two connection attempts, in seconds. #
# default value is 1; uncomment to specify a different value #
#------------------------------------------------------------------------------#
#reconnect.interval = 1
If you have downloaded the sources zip, you will also find examples of it in the demo project, in the config folder: jppf-client1.properties and jppf-client2.properties
-Laurent