Advertisement
Guest User

Untitled

a guest
Jul 17th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.78 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <server description="new server">
  3.  
  4. <!-- Enable features -->
  5. <featureManager>
  6. <!--feature>javaee-7.0</feature-->
  7. <------><------><feature>webProfile-7.0</feature>
  8. <------><------><!--feature>adminCenter-1.0</feature-->
  9. <------><------><!--feature>jdbc-4.0</feature-->
  10. <------><------><feature>jndi-1.0</feature>
  11.  
  12. </featureManager>
  13.  
  14. <!-- This template enables security. To get the full use of all the capabilities, a keystore and user registry are required. -->
  15. ....
  16. <!-- For the keystore, default keys are generated and stored in a keystore. To provide the keystore password, generate an.
  17. encoded password using bin/securityUtility encode and add it below in the password attribute of the keyStore element..
  18. Then uncomment the keyStore element. -->
  19. <!--
  20. <keyStore password=""/>.
  21. -->
  22. ....
  23. <!--For a user registry configuration, configure your user registry. For example, configure a basic user registry using the
  24. basicRegistry element. Specify your own user name below in the name attribute of the user element. For the password,.
  25. generate an encoded password using bin/securityUtility encode and add it in the password attribute of the user element..
  26. Then uncomment the user element. -->
  27. <basicRegistry id="basic" realm="BasicRealm">.
  28. <!-- <user name="yourUserName" password="" /> -->.
  29. </basicRegistry>
  30. ....
  31. <!-- To access this server from a remote client add a host attribute to the following element, e.g. host="*" -->
  32. <httpEndpoint id="defaultHttpEndpoint"
  33. httpPort="9080"
  34. httpsPort="9443" />
  35. ..................
  36. <!-- Automatically expand WAR files and EAR files -->
  37. <applicationManager autoExpand="true"/>
  38. <webContainer deferServletLoad="false"/>
  39. <library id="lib">
  40. <------><------><fileset dir="${server.config.dir}/lib" includes="*.jar" />
  41. <------><------><folder dir="${server.config.dir}/lib" />
  42. </library>
  43. <------>
  44.  
  45. <application id="dcbapp" name="/dcb" type="war" location="${server.config.dir}/war/dbo-dcb-server.war">.<--><------><------>
  46. <------><classloader commonLibraryRef="lib" /><><------><------>
  47. </application>
  48.  
  49. <application id="rest" name="/ic/dcb" type="war" location="${server.config.dir}/war/rest-app.war">.><------><------>
  50. <------><classloader commonLibraryRef="lib" /><><------><------>
  51. </application>
  52. <------>.
  53. <dataSource jndiName="jdbc/SBBOL" type="javax.sql.ConnectionPoolDataSource" isolationLevel="TRANSACTION_READ_COMMITTED">
  54. <jdbcDriver libraryRef="lib"/>
  55. <properties.oracle driverType="thin" user="stand_dcb3" password="******" url="jdbc:oracle:thin:@12.22.21.22:1521:test"/>
  56. </dataSource>
  57. </server>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement