application.xml
01 <?xml version="1.0" encoding="UTF-8"?>
02 
03 <application xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.4">
04   <description>Medical Records Patient Application</description>
05   <display-name>Medical Records Patient Application</display-name>
06   <module>
07     <web>
08       <web-uri>adminWebApp</web-uri>
09       <context-root>admin</context-root>
10     </web>
11   </module>
12   <module>
13     <web>
14       <web-uri>mainWebApp</web-uri>
15       <context-root>/</context-root>
16     </web>
17   </module>
18   <module>
19     <web>
20       <web-uri>patientWebApp</web-uri>
21       <context-root>patient</context-root>
22     </web>
23   </module>
24   <module>
25     <ejb>entityEjbs</ejb>
26   </module>
27   <module>
28     <ejb>mdbEjbs</ejb>
29   </module>
30   <module>
31     <ejb>sessionEjbs</ejb>
32   </module>
33   <module>
34     <web>
35       <web-uri>MedRecWebServices</web-uri>
36       <context-root>/ws_medrec</context-root>
37     </web>
38   </module>
39   <module>
40     <web>
41       <web-uri>MedRecRMWebServices</web-uri>
42       <context-root>/ws_rm_medrec</context-root>
43     </web>
44   </module>
45 </application>