Advertisement
Guest User

Untitled

a guest
May 17th, 2017
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.40 KB | None | 0 0
  1. <server description="new server">
  2.  
  3. <!-- Enable features -->
  4. <featureManager>
  5. <feature>javaee-7.0</feature>
  6. <feature>localConnector-1.0</feature>
  7. </featureManager>
  8.  
  9. <!-- This template enables security. To get the full use of all the capabilities, a keystore and user registry are required. -->
  10.  
  11. <!-- For the keystore, default keys are generated and stored in a keystore. To provide the keystore password, generate an
  12. encoded password using bin/securityUtility encode and add it below in the password attribute of the keyStore element.
  13. Then uncomment the keyStore element. -->
  14. <!--
  15. <keyStore password=""/>
  16. -->
  17.  
  18. <!--For a user registry configuration, configure your user registry. For example, configure a basic user registry using the
  19. basicRegistry element. Specify your own user name below in the name attribute of the user element. For the password,
  20. generate an encoded password using bin/securityUtility encode and add it in the password attribute of the user element.
  21. Then uncomment the user element. -->
  22. <basicRegistry id="basic" realm="BasicRealm">
  23. <!-- <user name="yourUserName" password="" /> -->
  24. </basicRegistry>
  25.  
  26. <!-- To access this server from a remote client add a host attribute to the following element, e.g. host="*" -->
  27. <httpEndpoint httpPort="9080" httpsPort="9443" id="defaultHttpEndpoint"/>
  28.  
  29. <!-- Automatically expand WAR files and EAR files -->
  30. <applicationManager autoExpand="true"/>
  31.  
  32.  
  33. <applicationMonitor updateTrigger="mbean"/>
  34.  
  35. <keyStore id="defaultKeyStore" password="Mateusz"/>
  36.  
  37. <basicRegistry id="basic" realm="BasicRealm">
  38. <user name="Mateusz" password="Mateusz"/>
  39. </basicRegistry>
  40.  
  41. <library filesetRef="${wlp.server.name}" id="ElephantSQL">
  42. <fileset dir="${server.config.dir}/resources/lib" includes="postgresql-9.3-1104.jdbc41.jar"/>
  43. </library>
  44.  
  45. <dataSource jndiName="jdbc/postgresql" statementCacheSize="10" type="javax.sql.DataSource">
  46. <jdbcDriver libraryRef="ElephantSQL"/>
  47. <properties databaseName="inghietq" password="GmQ7fr6zgWDPUpfkfDuAONr__PiWgDgH" portNumber="5432" serverName="babar.elephantsql.com" user="inghietq"/>
  48. <connectionManager maxPoolSize="3" purgePolicy="FailingConnectionOnly"/>
  49. </dataSource>
  50.  
  51. <library filesetRef="${wlp.server.name}" id="dashDB">
  52. <fileset dir="${server.config.dir}/resources/lib" includes="db2jcc4.jar"/>
  53. </library>
  54. <dataSource jndiName="jdbc/dashdb" statementCacheSize="10" type="javax.sql.DataSource">
  55. <jdbcDriver libraryRef="dashDB"/>
  56. <properties.db2.jcc databaseName="BLUDB" password="Ux73Sn}qRQf@" portNumber="50000" serverName="dashdb-entry-yp-dal09-10.services.dal.bluemix.net" user="dash14399"/>
  57. <connectionManager maxPoolSize="3" purgePolicy="FailingConnectionOnly"/>
  58. </dataSource>
  59.  
  60. <httpSession cookieName="JSESSION"/>
  61.  
  62. <webApplication id="Lab3" location="Lab3.war" name="Lab3"/>
  63.  
  64. <webApplication id="Mateusz_Ciechan_01_ZTI" location="Mateusz_Ciechan_01_ZTI.war" name="Mateusz_Ciechan_01_ZTI"/>
  65.  
  66. <webApplication id="ZTI_Lab04" location="ZTI_Lab04.war" name="ZTI_Lab04"/>
  67.  
  68. <webApplication id="ZTI_Lab05" location="ZTI_Lab05.war" name="ZTI_Lab05"/>
  69.  
  70. <webApplication id="Ciechan_Lab01" location="Ciechan_Lab01.war" name="Ciechan_Lab01"/>
  71. </server>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement