Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.70 KB | None | 0 0
  1. 2013-01-06 00:18:01,078 ERROR [ProfileServiceBootstrap] (Thread-2) Failed to load profile:: org.jboss.deployers.client.spi.IncompleteDeploymentException: Summary of incomplete deployments (SEE PREVIOUS ERRORS FOR DETAILS):
  2.  
  3. *** DEPLOYMENTS MISSING DEPLOYERS: Name
  4.  
  5. vfs:///D:/downloads/jboss-6.1.0.Final/server/default/deploy/jboss-local-jdbc.rar
  6.  
  7. DEPLOYMENTS MISSING DEPENDENCIES:
  8. Deployment "jboss-switchboard:appName=practice,module=practice" is missing the following dependencies:
  9. Dependency "java:/DefaultDS" (should be in state "Installed", but is actually in state "** NOT FOUND Depends on 'java:/DefaultDS' **")
  10. Deployment "jboss.web.deployment:war=/practice" is missing the following dependencies:
  11. Dependency "jboss-switchboard:appName=practice,module=practice" (should be in state "Installed", but is actually in state "Create")
  12. Deployment "jboss:service=KeyGeneratorFactory,type=HiLo" is missing the following dependencies:
  13. Dependency "jboss.jca:name=DefaultDS,service=DataSourceBinding" (should be in state "Create", but is actually in state "** NOT FOUND Depends on 'jboss.jca:name=DefaultDS,service=DataSourceBinding' **")
  14.  
  15. DEPLOYMENTS IN ERROR:
  16. Deployment "java:/DefaultDS" is in error due to the following reason(s): ** NOT FOUND Depends on 'java:/DefaultDS' **
  17. Deployment "jboss.jca:name=DefaultDS,service=DataSourceBinding" is in error due to the following reason(s): ** NOT FOUND Depends on 'jboss.jca:name=DefaultDS,service=DataSourceBinding' **
  18. Deployment "vfs:///D:/downloads/jboss-6.1.0.Final/server/default/deploy/oracle-ds.xml" is in error due to the following reason(s): java.lang.IllegalStateException: No ConnectorMetaData found for mdf rarName: jboss-local-jdbc.rar
  19.  
  20. at org.jboss.deployers.plugins.deployers.DeployersImpl.checkComplete(DeployersImpl.java:1228) [:2.2.2.GA]
  21. at org.jboss.deployers.plugins.main.MainDeployerImpl.checkComplete(MainDeployerImpl.java:905) [:2.2.2.GA]
  22. at org.jboss.system.server.profileservice.deployers.MainDeployerPlugin.checkComplete(MainDeployerPlugin.java:87) [:6.1.0.Final]
  23. at org.jboss.profileservice.deployment.ProfileDeployerPluginRegistry.checkAllComplete(ProfileDeployerPluginRegistry.java:107) [:0.2.2]
  24. at org.jboss.system.server.profileservice.bootstrap.BasicProfileServiceBootstrap.start(BasicProfileServiceBootstrap.java:135) [:6.1.0.Final]
  25. at org.jboss.system.server.profileservice.bootstrap.BasicProfileServiceBootstrap.start(BasicProfileServiceBootstrap.java:56) [:6.1.0.Final]
  26. at org.jboss.bootstrap.impl.base.server.AbstractServer.startBootstraps(AbstractServer.java:827) [jboss-bootstrap-impl-base.jar:2.1.0-alpha-6]
  27. at org.jboss.bootstrap.impl.base.server.AbstractServer$StartServerTask.run(AbstractServer.java:417) [jboss-bootstrap-impl-base.jar:2.1.0-alpha-6]
  28. at java.lang.Thread.run(Thread.java:662) [:1.6.0_31]
  29.  
  30. 2013-01-06 00:18:01,156 INFO [org.apache.coyote.http11.Http11Protocol] (Thread-2) Starting Coyote HTTP/1.1 on http-127.0.0.1-8080
  31. 2013-01-06 00:18:01,171 INFO [org.apache.coyote.ajp.AjpProtocol] (Thread-2) Starting Coyote AJP/1.3 on ajp-127.0.0.1-8009
  32. 2013-01-06 00:18:01,171 INFO [org.jboss.bootstrap.impl.base.server.AbstractServer] (Thread-2) JBossAS [6.1.0.Final "Neo"] Started in 2m:57s:984ms
  33.  
  34. <datasources>
  35. <local-tx-datasource>
  36. <jndi-name>DefaultDS</jndi-name>
  37. <connection-url>jdbc:oracle:thin:@localhost:1521:myDB</connection-url>
  38. <driver-class>oracle.jdbc.driver.OracleDriver</driver-class>
  39. <user-name>user_name</user-name>
  40. <password>pwd</password>
  41. <min-pool-size>5</min-pool-size>
  42. <max-pool-size>20</max-pool-size>
  43. <!-- Checks the Oracle error codes and messages for fatal errors -->
  44. <exception-sorter-class-name>org.jboss.resource.adapter.jdbc.vendor.OracleExceptionSorter</exception-sorter-class-name>
  45.  
  46. <metadata>
  47. <type-mapping>Oracle9i</type-mapping>
  48. </metadata>
  49. </local-tx-datasource>
  50.  
  51. </datasources>
  52.  
  53. web.xml
  54. ....................................................
  55. <resource-ref>
  56. <description>Oracle DS</description>
  57. <res-ref-name>jdbc/DefaultDS</res-ref-name>
  58. <res-type>javax.sql.DataSource</res-type>
  59. <res-auth>Container</res-auth>
  60. </resource-ref>
  61.  
  62. jboss-web.xml
  63. ..................................................
  64. <?xml version="1.0" encoding="UTF-8"?>
  65. <jboss-web>
  66. <resource-ref>
  67. <res-ref-name>jdbc/DefaultDS</res-ref-name>
  68. <res-type>javax.sql.DataSource</res-type>
  69. <jndi-name>java:/DefaultDS</jndi-name>
  70. </resource-ref>
  71. </jboss-web>
  72.  
  73.  
  74. Any help will be appreciated.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement