Saturday, November 12, 2005
PRS 4 - Server RMI start up error
We have fixed the "class not found" problem and was able to start the
server RMI on AIX on Friday.
In case you are interested in the cause of the problem, here is a brief
summary.
Turns out the problem was caused by the settings in the
prs-rmiservices.xml file where the three services were defined. The
service lookup attribute seems to require an explicit RMI URL prefix in
order to work in AIX.
[Before]
<SERVICE>
<SERVICE_NAME>CONFIGURATION</SERVICE_NAME>
<SERVICE_LOOKUP>dev_4/grs/config</SERVICE_LOOKUP>
</SERVICE>
[After]
<SERVICE>
<SERVICE_NAME>CONFIGURATION</SERVICE_NAME>
<SERVICE_LOOKUP>rmi://127.0.0.1/dev_4/grs/config</SERVICE_LOOKUP>
</SERVICE>
Cheers!
David Chen