DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
This is necessary to allow the SPECjAppServer2004 Driver to remotely access the EJBs deployed in Geronimo.
| Code Block | ||||||
|---|---|---|---|---|---|---|
| ||||||
<configuration name="geronimo/j2ee-server/1.0/car">
<gbean name="geronimo:name=EJB,type=NetworkService">
<attribute name="host">0.0.0.0</attribute>
<attribute name="port">4201</attribute>
<attribute name="allowHosts">0.0.0.0</attribute>
</gbean>
</configuration>
|
If your geronimo.host and your driver.host are the same machine, you have to adjust the port number of the Geronimo RMI Registry (to e. g. 10099), otherwise it would conflict with the SPECjAppServer2004 Driver that uses the default port of 1099:
| Code Block | ||||||
|---|---|---|---|---|---|---|
| ||||||
<configuration name="geronimo/rmi-naming/1.0/car">
<gbean name="RMIRegistry">
<attribute name="port">10099</attribute>
</gbean>
<gbean name="NamingProperties">
<attribute name="namingProviderUrl">rmi://0.0.0.0:10099</attribute>
</gbean>
</configuration>
|
...