Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
               xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
               xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
                               http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
                               version="2.5">

   <resource-ref>
       <res<res-ref-name>jdbc/DataSource</res-ref-name>
       <res<res-type>javax.sql.DataSource</res-type>
       <res<res-auth>Container</res-auth>
       <res<res-sharing-scope>Shareable</res-sharing-scope>
   </resource-ref>
 
   <welcome-file-list>
    
    <welcome-file>jsp/EMPdemo.jsp</welcome-file>
  
  </welcome-file-list>  
</web-app>

Sample geronimo-web.xml 

...