Advertisement
Guest User

Untitled

a guest
Jan 25th, 2013
364
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.19 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
  3.     <display-name>SimpleWebApp</display-name>
  4.  
  5.     <servlet>
  6.         <servlet-name>hello</servlet-name>
  7.         <servlet-class>be.ecornely.HelloServlet</servlet-class>
  8.     </servlet>
  9.     <servlet-mapping>
  10.         <servlet-name>hello</servlet-name>
  11.         <url-pattern>/hello</url-pattern>
  12.     </servlet-mapping>
  13.  
  14.     <session-config>
  15.         <session-timeout>60</session-timeout>
  16.     </session-config>
  17.     <welcome-file-list>
  18.         <welcome-file>index.jsp</welcome-file>
  19.         <welcome-file>index.jspx</welcome-file>
  20.         <welcome-file>index.html</welcome-file>
  21.     </welcome-file-list>
  22.     <resource-ref>
  23.         <description>Electrabel IPP DataSource</description>
  24.         <res-ref-name>jdbc/IPPProject.DataSource</res-ref-name>
  25.         <res-type>javax.sql.DataSource</res-type>
  26.         <res-auth>Container</res-auth>
  27.         <res-sharing-scope>Shareable</res-sharing-scope>
  28.     </resource-ref>
  29.    
  30.     <resource-ref>
  31.         <description>Sungard AuditTrail DataSource</description>
  32.         <res-ref-name>jdbc/AuditTrail.DataSource</res-ref-name>
  33.         <res-type>javax.sql.DataSource</res-type>
  34.         <res-auth>Container</res-auth>
  35.         <res-sharing-scope>Shareable</res-sharing-scope>
  36.     </resource-ref>
  37.     <resource-ref>
  38.         <description>Sungard AuditTrailArchived DataSource</description>
  39.         <res-ref-name>jdbc/AuditTrailArchived.DataSource</res-ref-name>
  40.         <res-type>javax.sql.DataSource</res-type>
  41.         <res-auth>Container</res-auth>
  42.         <res-sharing-scope>Shareable</res-sharing-scope>
  43.     </resource-ref>
  44.     <resource-ref>
  45.         <description>Reporting DataSource</description>
  46.         <res-ref-name>jdbc/Report.DataSource</res-ref-name>
  47.         <res-type>javax.sql.DataSource</res-type>
  48.         <res-auth>Container</res-auth>
  49.         <res-sharing-scope>Shareable</res-sharing-scope>
  50.     </resource-ref>
  51.     <resource-ref>
  52.         <description>Sungard Carnot JMS Connection Factory</description>
  53.         <res-ref-name>jms/CarnotXAConnectionFactory</res-ref-name>
  54.         <res-type>javax.jms.ConnectionFactory</res-type>
  55.         <res-auth>Container</res-auth>
  56.         <res-sharing-scope>Shareable</res-sharing-scope>
  57.     </resource-ref>
  58.     <resource-env-ref>
  59.         <description>Sungard Carnot System Queue</description>
  60.         <resource-env-ref-name>jms/CarnotSystemQueue</resource-env-ref-name>
  61.         <resource-env-ref-type>javax.jms.Queue</resource-env-ref-type>
  62.     </resource-env-ref>
  63.     <resource-env-ref>
  64.         <description>Sungard Carnot Daemon Queue</description>
  65.         <resource-env-ref-name>jms/CarnotDaemonQueue</resource-env-ref-name>
  66.         <resource-env-ref-type>javax.jms.Queue</resource-env-ref-type>
  67.     </resource-env-ref>
  68.     <resource-env-ref>
  69.         <description>Sungard Carnot Application Queue</description>
  70.         <resource-env-ref-name>jms/CarnotApplicationQueue</resource-env-ref-name>
  71.         <resource-env-ref-type>javax.jms.Queue</resource-env-ref-type>
  72.     </resource-env-ref>
  73.     <resource-ref>
  74.         <description>Sungard JackRabbit JCR</description>
  75.         <res-ref-name>jcr/AuditTrail.ContentRepository</res-ref-name>
  76.         <res-type>javax.jcr.Repository</res-type>
  77.         <res-auth>Container</res-auth>
  78.         <res-sharing-scope>Shareable</res-sharing-scope>
  79.     </resource-ref>
  80. </web-app>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement