Versions Compared

Key

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

...

Actualmente, Geronimo esta usando ORB de Sun para RMI, por lo cual es necesario usar SUN JDK. El uso de un JDK distinto ó de JDK versión distinta puede provocar errores de compilación. Consulta al siguiente URL para detalles en cómo descargar e instalar J2SE 1.4.2: http://java.sun.comImage Removed

Note

Apache Geronimo v1.0 no soporta Java 1.5, si empleas esa versión, Geronimo fallará al iniciar.

...

Crea un archivo de texto plano dentro del directorio <app_home>/WEB-INF, llamándolo geronimo-web.xml, y copia el contenido del ejemplo siguiente.

Code Block
xmlxml
borderStylesolid
titlePlan de activación Geronimo geronimo-web.xml
xml
<?xml version="1.0"?>
<web-app 
   xmlns="http://geronimo.apache.org/xml/ns/web" 
   xmlns:naming="http://geronimo.apache.org/xml/ns/naming"
   configId="HolaMundo">

   <context-root>/hola</context-root>

</web-app>

Crea un archivo de texto plano dentro del directorio <app_home>/WEB-INF, llamándolo web.xml, y copia el contenido del ejemplo siguiente.

Code Block
xmlxml
borderStylesolid
titleweb.xml
xml
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee">
   <welcome-file-list>
      <welcome-file>HolaMundo.jsp</welcome-file>
   </welcome-file-list>
</web-app>

...