Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

...

For that, edit var/config/config.xml file, adjust NamingProperties GBean configuration as follows:

Code Block
xmlxml
borderStylesolid
xml
<gbean name="NamingProperties">
  <attribute name="namingFactoryUrlPkgs">org.apache.harmony.jndi.provider</attribute>
  <attribute name="namingProviderUrl">rmi://${ServerHostname}:${NamingPort + PortOffset}</attribute>
</gbean>

...

Harmony doesn't have SSL implementation (see HARMONY-5191), so the following statements have to be added to var/config/config.xml file to instruct Geronimo to use TLS instead of SSL:

xml
Code Block
xml
borderStylesolid
xml
<module name="org.apache.geronimo.configs/j2ee-corba-yoko/2.0.2/car">
  <gbean name="CORBASSLConfig">
    <attribute name="protocol">TLS</attribute>
  </gbean>
</module>

...

Web interface and console only work through HTTPS port (https://localhost:8443/Image Removed). When working through HTTP port (http://localhost:8080/Image Removed) large portions of interface are not drawn correctly. This is still to be investigated.

...