Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2017
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.70 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <server description="new server">
  3. <!-- Enable features -->
  4. <featureManager>
  5. <feature>javaee-7.0</feature>
  6. <feature>localConnector-1.0</feature>
  7. <feature>adminCenter-1.0</feature>
  8. <feature>ssl-1.0</feature>
  9. <feature>appSecurity-2.0</feature>
  10. </featureManager>
  11. <keyStore id="defaultKeyStore" password="Liberty" />
  12. <!-- This template enables security. To get the full use of all the capabilities, a keystore and user registry are required. -->
  13. <!-- For the keystore, default keys are generated and stored in a keystore. To provide the keystore password, generate an
  14. encoded password using bin/securityUtility encode and add it below in the password attribute of the keyStore element.
  15. Then uncomment the keyStore element. -->
  16. <!--
  17. <keyStore password=""/>
  18. -->
  19. <!--For a user registry configuration, configure your user registry. For example, configure a basic user registry using the
  20. basicRegistry element. Specify your own user name below in the name attribute of the user element. For the password,
  21. generate an encoded password using bin/securityUtility encode and add it in the password attribute of the user element.
  22. Then uncomment the user element. -->
  23. <basicRegistry id="basic" realm="customRealm">
  24. <user name="admin" password="admin" />
  25. </basicRegistry>
  26. <administrator-role>
  27. <user>admin</user>
  28. </administrator-role>
  29. <!-- To access this server from a remote client add a host attribute to the following element, e.g. host="*" -->
  30. <httpEndpoint id="defaultHttpEndpoint" httpPort="9080" httpsPort="9443" />
  31. <!-- Automatically expand WAR files and EAR files -->
  32. <applicationManager autoExpand="true" />
  33. <applicationMonitor updateTrigger="mbean" />
  34. <library id="OracleLib">
  35. <fileset dir="C:\Users\A662392\Desktop\libs" includes="ojdbc6.jar" />
  36. </library>
  37. <!-- define jndi for ASTRA_DBPRF -->
  38. <dataSource jndiName="jdbc.ASTRA_DBPRF" id="ASTRA_DBPRF" type="javax.sql.DataSource">
  39. <jdbcDriver libraryRef="OracleLib" />
  40. <connectionManager maxPoolSize="10" minPoolSize="1" connectionTimeout="180s" agedTimeout="30m" reapTime="180s" />
  41. <properties.oracle URL="jdbc:oracle:thin:@localhost:1521:XE" user="atos" password="atos" />
  42. <!--<properties.oracle URL="jdbc:oracle:thin:@carrefour.atosservice.com:1521:NEWSIR" user="PRF_SIR" password="SirCarrefour" />-->
  43. </dataSource>
  44. <remoteFileAccess>
  45. <writeDir>${server.config.dir}</writeDir>
  46. </remoteFileAccess>
  47. <application id="sic_ear_ear" location="C:\Users\A662392\Documents\carrefour-template-distribution\sic-ear\target\sic-ear-3.1.1.ear" name="sic_ear_ear" type="ear" />
  48. </server>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement