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