Running Java RPC Server under linux, this server connects to a JBoss application to run our business logic.
We create a hourly job to connect to JBoss and the RPC server to check if they are running ok.
Is there a argument to be given to com.softwareag.entirex.aci.RPCServer to deregister from broker without manual intervention(System Management Hub)? Any other ideas?
configure entirex.server.minserver=1, entirex.server.fixedservers=no with entirex.server.waitserver=nS
When the waitserver timeout is reached, the server will deregister until there is only 1 (minserver) server running (set maxserver to number of concurrent processes you expect; this can be 1 also). Note that at least one server is always running.
These parameters can be supplied from the command line or the properties file.
This is what we have on our properties file
entirex.server.waitserver=15S
entirex.server.maxservers=32
entirex.server.minservers=1
entirex.server.fixedservers=no
entirex.server.restartcycles=15
But yet this server sometimes stop working properly, than I have to shut it down manually than restart. Am I setting something wrong or is there a way around?
We suspect a remote ejb class was out dated, but error message was saying it could load the class, so… my bad… I was wondering if is there anyone using avaRPCServer with JMX? It could be great being able to run a test call or use a timer call…