Advertisement
Guest User

context.xml

a guest
Jun 17th, 2016
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.33 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor
  3. license agreements. See the NOTICE file distributed with this work for additional
  4. information regarding copyright ownership. The ASF licenses this file to
  5. You under the Apache License, Version 2.0 (the "License"); you may not use
  6. this file except in compliance with the License. You may obtain a copy of
  7. the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
  8. by applicable law or agreed to in writing, software distributed under the
  9. License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
  10. OF ANY KIND, either express or implied. See the License for the specific
  11. language governing permissions and limitations under the License. --><!-- The contents of this file will be loaded for each web application -->
  12. <Context>
  13.  
  14. <!-- Default set of monitored resources -->
  15. <WatchedResource>WEB-INF/web.xml</WatchedResource>
  16.  
  17. <!-- Uncomment this to disable session persistence across Tomcat restarts -->
  18. <!-- <Manager pathname="" /> -->
  19.  
  20. <!-- Uncomment this to enable Comet connection tacking (provides events
  21. on session expiration as well as webapp lifecycle) -->
  22. <!-- <Valve className="org.apache.catalina.valves.CometConnectionManagerValve"
  23. /> -->
  24.  
  25.  
  26. <Resource name="jdbc/content" auth="Container" type="javax.sql.DataSource"
  27. driverClassName="com.microsoft.sqlserver.jdbc.SQLServerDriver"
  28. url="jdbc:sqlserver://STGSQLiCL08\INSTA:58369;databaseName=WebContent_Stage_Copy"
  29. username="b2b_cp_user" password="newcpus3r" maxActive="20" maxIdle="10"
  30. maxWait="-1" />
  31.  
  32. <Resource name="jdbc/cruisingpower" auth="Container"
  33. type="javax.sql.DataSource" driverClassName="com.microsoft.sqlserver.jdbc.SQLServerDriver"
  34. url="jdbc:sqlserver://tstsqlicl06:58369;databaseName=cruisingpowerweb"
  35. username="b2b_cp_user" password="newcpus3r" maxActive="20" maxIdle="10"
  36. maxWait="-1" />
  37.  
  38. <!-- <Resource name="jdbc/catalog" auth ="Container" type="javax.sql.DataSource"
  39. driverClassName ="com.microsoft.sqlserver.jdbc.SQLServerDriver" url ="jdbc:sqlserver://devsqlicl07:14725;databaseName=WebRemoteDataAccess_PBND"
  40. username="b2b_cp_user" password ="newcpus3r" maxActive="20" maxIdle="10"
  41. maxWait="-1" /> -->
  42.  
  43. <Resource name="jdbc/catalog" auth="Container" type="javax.sql.DataSource"
  44. driverClassName="com.microsoft.sqlserver.jdbc.SQLServerDriver"
  45. url="jdbc:sqlserver://devsqlicl07:14725;databaseName= WebRemoteDataAccess_RLD"
  46. username="b2b_cp_user" password="newcpus3r" maxActive="20" maxIdle="10"
  47. maxWait="-1" />
  48.  
  49. <Resource name="jdbc/ebiz" auth="Container"
  50. driverClassName="com.ibm.as400.access.AS400JDBCDriver" maxActive="20"
  51. maxIdle="10" maxWait="60" password="cp3#odja" type="javax.sql.DataSource"
  52. url="jdbc:as400://AUGUSTA.RCCL.COM;libraries=PTD_RLDQAD DTD_RLD PPD_PSS RDB_GDOC"
  53. username="CPOWRSTPRO" />
  54.  
  55. <Resource name="jdbc/activities" auth="Container" type="javax.sql.DataSource"
  56. driverClassName="com.microsoft.sqlserver.jdbc.SQLServerDriver"
  57. url="jdbc:sqlserver://tstsqlicl06:58369;databaseName=WebActivities"
  58. username="b2b_cp_user" password="newcpus3r" maxActive="20" maxIdle="10"
  59. maxWait="-1" />
  60. <Valve changeSessionIdOnAuthentication="false"
  61. className="org.apache.catalina.authenticator.BasicAuthenticator" />
  62.  
  63.  
  64. </Context>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement