Advertisement
Guest User

server.xml

a guest
Jan 20th, 2016
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.10 KB | None | 0 0
  1. <server description="new server">
  2.  
  3.             <!-- Enable features -->
  4.             <featureManager>
  5.                          <feature>servlet-3.0</feature>
  6.                          <feature>localConnector-1.0</feature>
  7.                          <feature>jaxrs-1.1</feature>
  8.                          <feature>jsp-2.2</feature>
  9.                          <feature>jsf-2.0</feature>
  10.                          <feature>cdi-1.0</feature>
  11.     </featureManager>
  12.  
  13.             <!-- To access this server from a remote client add a host attribute to
  14.                         the following element, e.g. host="*" -->
  15.             <httpEndpoint httpPort="9080" httpsPort="9443" id="defaultHttpEndpoint"/>
  16.  
  17.  
  18.             <applicationMonitor updateTrigger="mbean"/>
  19.             <library id="web_shared">
  20.                          <fileset dir="c:/web/config" includes="*"/>
  21.             </library>
  22.             <library id="jsf-2.2">
  23.                          <fileset dir="c:/web/lib/jsf-2.2" includes="*.jar"/>
  24.             </library>
  25.  
  26.     <enterpriseApplication id="web-ear" location="web-ear.ear" name="web-ear"/>
  27. </server>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement