Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.

JBoss Configuration or Start-up Problem: Non-Turnkey, Win 2003 EE, MSSQL 2005 Ent.

Avatar

Former Community Member
Hello,



I'm trying to get Jboss app. server to start cleanly. I've performed the manual installation per the instructions in the 'Preparing to Install LiveCycle ES' pdf. Hardware, OS, and MS SQL Server configurations have been vetted for use with the product.



Below I've posted the command prompt output from starting Jboss with the batch file. It has been edited for posting here. I deleted the output for most of the objects that were configured successfully. Can someone please let me know what I've missed or mis-configured?



Thanks for your help!!



Geo...



C:\Program Files\jboss-4.0.3SP1\bin>run.bat -c all

===============================================================================

.

JBoss Bootstrap Environment

.

JBOSS_HOME: C:\Program Files\jboss-4.0.3SP1\bin\\..

.

JAVA: C:\Program Files\Java\jdk1.5.0_14\\bin\java

.

JAVA_OPTS: -Dadobeidp.serverName=server1 -Dprogram.name=run.bat -Djava.security.manager -Djava.security.policy=../ser

ver/all/conf/server.policy -Djava.security.debug=failure -XX:MaxPermSize=256m -Xms256m -Xmx1024m -Djava.net.preferIPv4St

ack=true

.

CLASSPATH: C:\Program Files\Java\jdk1.5.0_14\\lib\tools.jar;C:\Program Files\jboss-4.0.3SP1\bin\\run.jar

.

===============================================================================

.

14:15:21,257 INFO [Server] Starting JBoss (MX MicroKernel)...

14:15:21,257 INFO [Server] Release ID: JBoss [Zion] 4.0.3SP1 (build: CVSTag=JBoss_4_0_3_SP1 date=200510231054)

14:15:21,257 INFO [Server] Home Dir: C:\Program Files\jboss-4.0.3SP1

14:15:21,257 INFO [Server] Home URL: file:/C:/Program Files/jboss-4.0.3SP1/

14:15:21,272 INFO [Server] Patch URL: null

14:15:21,272 INFO [Server] Server Name: all

14:15:21,272 INFO [Server] Server Home Dir: C:\Program Files\jboss-4.0.3SP1\server\all

14:15:21,272 INFO [Server] Server Home URL: file:/C:/Program Files/jboss-4.0.3SP1/server/all/

14:15:21,272 INFO [Server] Server Temp Dir: C:\Program Files\jboss-4.0.3SP1\server\all\tmp

14:15:21,272 INFO [Server] Root Deployment Filename: jboss-service.xml

14:15:21,616 INFO [ServerInfo] Java version: 1.5.0_14,Sun Microsystems Inc.

14:15:21,616 INFO [ServerInfo] Java VM: Java HotSpot(TM) Client VM 1.5.0_14-b03,Sun Microsystems Inc.

14:15:21,616 INFO [ServerInfo] OS-System: Windows 2003 5.2,x86

14:15:22,085 INFO [Server] Core system initialized

14:15:24,491 INFO [WebService] Using RMI server codebase: http://File_Server:8083/

14:15:24,522 INFO [Log4jService$URLWatchTimerTask] Configuring from URL: resource:log4j.xml

14:15:41,365 ERROR [URLDeploymentScanner] Incomplete Deployment listing:



--- MBeans waiting for other MBeans ---

ObjectName: jboss.ejb:service=EJBTimerService,persistencePolicy=database

State: CONFIGURED

I Depend On:

jboss.jca:service=DataSourceBinding,name=DefaultDS

.

.

. ObjectName output edited...

.

.



ObjectName: jboss.mq.destination:service=Queue,name=adobe_TaskEventTopic

State: CONFIGURED

I Depend On:

jboss.mq:service=DestinationManager



--- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM ---

ObjectName: jboss.jca:service=DataSourceBinding,name=DefaultDS

State: NOTYETINSTALLED

Depends On Me:

jboss.ejb:service=EJBTimerService,persistencePolicy=database

jboss:service=juddi

jboss:service=KeyGeneratorFactory,type=HiLo

jboss.mq:service=StateManager

jboss.mq:service=PersistenceManager
20 Replies

Avatar

Level 4
Please post the contents of the data source definition XML file for DefaultDS in your /deploy folder (obscure sensitive data).

Avatar

Former Community Member
Hello, Jayan,



Here's the contents of the mssql-ds.xml file. Let me know if this is the correct file -- wasn't sure if it was this file or the adobe-ds.xml file.



mssql-ds.xml:



<?xml version="1.0" encoding="UTF-8"?>

<!-- ===================================================================== -->

<!-- -->

<!-- JBoss Server Configuration -->

<!-- -->

<!-- ===================================================================== -->

<!-- $Id: mssql-ds.xml,v 1.3 2004/09/15 14:37:40 loubyansky Exp $ -->

<!-- ======================================================================-->

<!-- New ConnectionManager setup for Microsoft SQL Server 2000 driver -->

<!-- You may download the latest Microsoft JDBC driver from *Microsoft* -->

<!-- http://msdn.microsoft.com/downloads/default.asp?url=/downloads/sample.asp?url=/MSDN-FILES/027/001/77... -->

<!-- ===================================================================== -->

<datasources>

<local-tx-datasource>

<jndi-name>MSSQLDS</jndi-name>

<connection-url>jdbc:microsoft:sqlserver://172.20.5.228:1433;DatabaseName=LiveCyclePDF</connection-url>

<driver-class>com.microsoft.jdbc.sqlserver.SQLServerDriver</driver-class>

<user-name>LiveCyclePDF</user-name>

<password>#######</password>

<!-- sql to call when connection is created

<new-connection-sql>some arbitrary sql</new-connection-sql>

-->

<!-- sql to call on an existing pooled connection when it is obtained from pool

<check-valid-connection-sql>some arbitrary sql</check-valid-connection-sql>

-->

<!-- corresponding type-mapping in the standardjbosscmp-jdbc.xml (optional) -->

<metadata>

<type-mapping>MS SQLSERVER2000</type-mapping>

</metadata>

</local-tx-datasource>

</datasources>

Avatar

Level 4
Replace MSSQLDS with DefaultDS. Never change JNDI names, they have to be exactly right.



Also, try the the connection-url without microsoft in it, like this:

jdbc:sqlserver://172.20.5.228:1433;DatabaseName=LiveCyclePDF



driver class should be:

com.microsoft.sqlserver.jdbc.SQLServerDriver

not:

com.microsoft.jdbc.sqlserver.SQLServerDriver

Avatar

Former Community Member
Thanks, Jayan, for the tip about the JNDI names. I was merely following the manuals instruction and missed the step about renaming MSSQL to DefaultDS.



I did change the MSSQL to DefaultDS and got several screens of error trace, but I hadn't know to make the subsequent modification to the driver class. I'll try again and respond here with the results.



The section of the documentation that could be revised to make your instructions more clear are in document "Preparing to Install LiveCycle ES", Chapter "Configuring a JBoss Application Server", Section "Configuring SQL Server", Sub-section "Configuring the SQL Server data source", Topic "Configuring JMS with Microsoft SQL Server", Page 52.



Thanks again for your help, and I'll report back.



Cheers,



Geo...

Avatar

Former Community Member
Jayan,



I initially got the following message after making the changes you suggested:



"WARN [JBossManagedConnectionPool] Throwable while attempting to get a new connection: null

org.jboss.resource.JBossResourceException: Could not create connection; - nested throwable: (com.microsoft.sqlserver.jdbc.SQLServerException:

The TCP/IP connection to the host has failed. java.net.ConnectException: Connection refused: connect)"



I searched for it and ran across a post that suggested the following:



"Enable TCP/IP protocol.

Select Microsoft SQL Server 2005>Configuration Tools>SQL Server Configuration Manager.

In the SQL Server Configuration Manager select the node SQL Server 2005 Network Configuration>Protocols

for SQLEXPRESS. Right-click on the TCP/IP node and select Enable.

Restart the SQL Server (SQLEXPRESS) service. Right-click on the SQL Server (SQLEXPRESS) service in Services

and select Restart."



In my case, TCP/IP was enabled, but I did add the Port to each entry.

Then when I started Jboss, the output below is what was displayed on the console. Is this output what I should expect when Jboss is properly configured?



Thanks,



Geo...



C:\Program Files\jboss-4.0.3SP1\bin>run.bat -c all

===============================================================================

.

JBoss Bootstrap Environment

.

JBOSS_HOME: C:\Program Files\jboss-4.0.3SP1\bin\\..

.

JAVA: C:\Program Files\Java\jdk1.5.0_14\\bin\java

.

JAVA_OPTS: -Dadobeidp.serverName=server1 -Dprogram.name=run.bat -Djava.security.manager -Djava.security.policy=../ser

ver/all/conf/server.policy -Djava.security.debug=failure -XX:MaxPermSize=256m -Xms256m -Xmx1024m -Djava.net.preferIPv4St

ack=true

.

CLASSPATH: C:\Program Files\Java\jdk1.5.0_14\\lib\tools.jar;C:\Program Files\jboss-4.0.3SP1\bin\\run.jar

.

===============================================================================

.

11:40:39,029 INFO [Server] Starting JBoss (MX MicroKernel)...

11:40:39,044 INFO [Server] Release ID: JBoss [Zion] 4.0.3SP1 (build: CVSTag=JBoss_4_0_3_SP1 date=200510231054)

11:40:39,044 INFO [Server] Home Dir: C:\Program Files\jboss-4.0.3SP1

11:40:39,044 INFO [Server] Home URL: file:/C:/Program Files/jboss-4.0.3SP1/

11:40:39,044 INFO [Server] Patch URL: null

11:40:39,044 INFO [Server] Server Name: all

11:40:39,044 INFO [Server] Server Home Dir: C:\Program Files\jboss-4.0.3SP1\server\all

11:40:39,044 INFO [Server] Server Home URL: file:/C:/Program Files/jboss-4.0.3SP1/server/all/

11:40:39,044 INFO [Server] Server Temp Dir: C:\Program Files\jboss-4.0.3SP1\server\all\tmp

11:40:39,044 INFO [Server] Root Deployment Filename: jboss-service.xml

11:40:39,372 INFO [ServerInfo] Java version: 1.5.0_14,Sun Microsystems Inc.

11:40:39,372 INFO [ServerInfo] Java VM: Java HotSpot(TM) Client VM 1.5.0_14-b03,Sun Microsystems Inc.

11:40:39,372 INFO [ServerInfo] OS-System: Windows 2003 5.2,x86

11:40:39,857 INFO [Server] Core system initialized

11:40:42,262 INFO [WebService] Using RMI server codebase: http://File_Server:8083/

11:40:42,294 INFO [Log4jService$URLWatchTimerTask] Configuring from URL: resource:log4j.xml

Avatar

Level 4
Unfortunately, SQL Server 2005 Express is not supported or tested. The log snippet you posted looks OK.

Avatar

Former Community Member
Jayan,



Thanks again for the help and follow up -- much appreciated.



FYI, I am using SQL Server 2005 Enterprise Edition, and not SQL Server 2005 Express. The reference to that database server simply came from a post I'd found elsewhere, but helped me resolve the "connection refused" error I was receiving when starting JBoss.



Cheers,



Geo...

Avatar

Former Community Member
Hi, I have a similar problem.<br /><br />The output on starting is (snippet):<br /><br />...<br />12:13:37,513 ERROR [URLDeploymentScanner] Incomplete Deployment listing:<br /><br />--- Packages waiting for a deployer ---<br />org.jboss.deployment.DeploymentInfo@b4c293b8 { url=file:/C:/Programme/jboss/server/all/deploy/adobe-ds-jboss-mssql.xml }<br /> deployer: null<br /> status: null<br /> state: INIT_WAITING_DEPLOYER<br /> watch: file:/C:/Programme/jboss/server/all/deploy/adobe-ds-jboss-mssql.xml<br /> altDD: null<br /> lastDeployed: 1210846417513<br /> lastModified: 1210846417513<br /> mbeans:<br /><br />--- Incompletely deployed packages ---<br />org.jboss.deployment.DeploymentInfo@b4c293b8 { url=file:/C:/Programme/jboss/server/all/deploy/adobe-ds-jboss-mssql.xml }<br /> deployer: null<br /> status: null<br /> state: INIT_WAITING_DEPLOYER<br /> watch: file:/C:/Programme/jboss/server/all/deploy/adobe-ds-jboss-mssql.xml<br /> altDD: null<br /> lastDeployed: 1210846417513<br /> lastModified: 1210846417513<br /> mbeans:<br /><br />So, I know the problem might be in adobe-ds-jboss.mssql.xml. The file looks like that:<br /><br /><?xml version="1.0" encoding="UTF-8"?><br /><datasources><br /> <local-tx-datasource><br /> <jndi-name>IDP_DS</jndi-name><br /> <connection-url>jdbc:sqlserver://localhost:1433;DatabaseName=LiveCycleES</connection-url><br /> <driver-class>com.microsoft.sqlserver.jdbc.SQLServerDriver</driver-class><br /> <user-name>adobe</user-name><br /> <password>****</password><br /> <min-pool-size>1</min-pool-size> <br /> <max-pool-size>100</max-pool-size> <br /> <blocking-timeout-millis>60000</blocking-timeout-millis> <br /> <idle-timeout-minutes>15</idle-timeout-minutes> <br /> <prepared-statement-cache-size>100</prepared-statement-cache-size> <br /> <transaction-isolation>TRANSACTION_READ_COMMITTED</transaction-isolation> <br /> <!-- sql to call when connection is created<br /> <new-connection-sql>some arbitrary sql</new-connection-sql><br /> --><br /> <!-- sql to call on an existing pooled connection when it is obtained from pool <br /> <check-valid-connection-sql>some arbitrary sql</check-valid-connection-sql><br /> --><br /> <!-- corresponding type-mapping in the standardjbosscmp-jdbc.xml (optional) --><br /> <metadata><br /> <type-mapping>MS SQLSERVER2000</type-mapping><br /> </metadata><br /> </local-tx-datasource><br /> <local-tx-datasource><br /> <jndi-name>EDC_DS</jndi-name><br /> <connection-url>jdbc:sqlserver://localhost:1433;DatabaseName=LiveCycleES</connection-url><br /> <driver-class>com.microsoft.sqlserver.jdbc.SQLServerDriver</driver-class><br /> <user-name>adobe</user-name><br /> <password>****</password><br /> <min-pool-size>10</min-pool-size> <br /> <max-pool-size>30</max-pool-size> <br /> <blocking-timeout-millis>60000</blocking-timeout-millis> <br /> <idle-timeout-minutes>15</idle-timeout-minutes> <br /> <prepared-statement-cache-size>100</prepared-statement-cache-size> <br /> <transaction-isolation>TRANSACTION_READ_COMMITTED</transaction-isolation> <br /> <!-- sql to call when connection is created<br /> <new-connection-sql>some arbitrary sql</new-connection-sql><br /> --><br /> <!-- sql to call on an existing pooled connection when it is obtained from pool <br /> <check-valid-connection-sql>some arbitrary sql</check-valid-connection-sql><br /> --><br /> <!-- corresponding type-mapping in the standardjbosscmp-jdbc.xml (optional) --><br /> <metadata><br /> <type-mapping>MS SQLSERVER2000</type-mapping><br /> </metadata><br /> </local-tx-datasource><br /> <!-- The following section is only needed for BAM --><br /> <!-- <br /> <no-tx-datasource><br /> <jndi-name>com.celequest.metadata.metaDatasource</jndi-name><br /> <connection-url>jdbc:sqlserver://localhost:1433;DatabaseName=LiveCycleES</connection-url><br /> <driver-class>com.microsoft.sqlserver.jdbc.SQLServerDriver</driver-class><br /> <user-name>adobe</user-name><br /> <password>****</password><br /> <min-pool-size>10</min-pool-size> <br /> <max-pool-size>100</max-pool-size> <br /> <blocking-timeout-millis>60000</blocking-timeout-millis> <br /> <idle-timeout-minutes>15</idle-timeout-minutes> <br /> <prepared-statement-cache-size>100</prepared-statement-cache-size> <br /> <transaction-isolation>TRANSACTION_READ_COMMITTED</transaction-isolation> <br /> <metadata><br /> <type-mapping>MS SQLSERVER2000</type-mapping><br /> </metadata><br /> </no-tx-datasource><br /> --><br /></datasources><br /><br />Can anyone give me a tipp how to manage the problem?<br /><br />Thank in advance,<br />gf

Avatar

Level 4
Rename file to adobe-jboss-mssql-ds.xml



JBoss needs the data source definition to always end with -ds.xml

Avatar

Former Community Member
Hi Geo,<br /><br />Make sure that adobe-ds.xml, mssql-ds.xml have <type-mapping> set to MS SQLSERVER2000 and conf/standardjbosscmp-jdbc.xml has <datasource-mapping> set to MS SQLSERVER2000, even if you are running SQL Server 2005.<br /><br />MS SQLSERVER2005 mapping is not even an option for JBoss 4.0.3 SP1.<br /><br />-Joe

Avatar

Former Community Member
i have de same problem, can some one help me please.



===============================================================================



JBoss Bootstrap Environment



JBOSS_HOME: C:\accquisio\appservers\jboss\jboss-4.2.2.GA



JAVA: C:\Program Files\Java\jdk1.5.0_15\bin\java



JAVA_OPTS: -Dhttp.proxyHost= -Dhttp.proxyPort= -Dhttp.nonProxyHosts="localhost|127.0.0.1|PC_User" -Dhttps.proxyHost= -Dhttps.proxyPort= -Dprogram.name=run.bat -server -Xms128m -Xmx512m -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000



CLASSPATH: C:\Program Files\Java\jdk1.5.0_15\lib\tools.jar;C:\accquisio\appservers\jboss\jboss-4.2.2.GA\bin\run.jar



===============================================================================



00:05:05,545 INFO [Server] Starting JBoss (MX MicroKernel)...

00:05:05,546 INFO [Server] Release ID: JBoss [Trinity] 4.2.2.GA (build: SVNTag=JBoss_4_2_2_GA date=200710221139)

00:05:05,548 INFO [Server] Home Dir: C:\accquisio\appservers\jboss\jboss-4.2.2.GA

00:05:05,548 INFO [Server] Home URL: file:/C:/accquisio/appservers/jboss/jboss-4.2.2.GA/

00:05:05,549 INFO [Server] Patch URL: null

00:05:05,550 INFO [Server] Server Name: default

00:05:05,639 INFO [Server] Server Home Dir: C:\accquisio\appservers\jboss\jboss-4.2.2.GA\server\default

00:05:05,639 INFO [Server] Server Home URL: file:/C:/accquisio/appservers/jboss/jboss-4.2.2.GA/server/default/

00:05:05,639 INFO [Server] Server Log Dir: C:\accquisio\appservers\jboss\jboss-4.2.2.GA\server\default\log

00:05:05,640 INFO [Server] Server Temp Dir: C:\accquisio\appservers\jboss\jboss-4.2.2.GA\server\default\tmp

00:05:05,640 INFO [Server] Root Deployment Filename: jboss-service.xml

00:05:06,053 INFO [ServerInfo] Java version: 1.5.0_15,Sun Microsystems Inc.

00:05:06,053 INFO [ServerInfo] Java VM: Java HotSpot(TM) Server VM 1.5.0_15-b04,Sun Microsystems Inc.

00:05:06,139 INFO [ServerInfo] OS-System: Windows Vista 6.0,x86

00:05:06,611 INFO [Server] Core system initialized

00:05:10,740 INFO [WebService] Using RMI server codebase: http://127.0.0.1:8083/

00:05:10,743 INFO [Log4jService$URLWatchTimerTask] Configuring from URL: resource:jboss-log4j.xml

00:05:11,409 INFO [TransactionManagerService] JBossTS Transaction Service (JTA version) - JBoss Inc.

00:05:11,409 INFO [TransactionManagerService] Setting up property manager MBean and JMX layer

00:05:11,708 INFO [TransactionManagerService] Starting recovery manager

00:05:11,825 INFO [TransactionManagerService] Recovery manager started

00:05:11,825 INFO [TransactionManagerService] Binding TransactionManager JNDI Reference

00:05:17,096 INFO [EJB3Deployer] Starting java:comp multiplexer

00:05:17,537 INFO [STDOUT] no object for null

00:05:17,542 INFO [STDOUT] no object for null

00:05:17,576 INFO [STDOUT] no object for null

00:05:17,623 INFO [STDOUT] no object for {urn:jboss:bean-deployer}supplyType

00:05:17,635 INFO [STDOUT] no object for {urn:jboss:bean-deployer}dependsType

00:05:20,864 INFO [NativeServerConfig] JBoss Web Services - Native

00:05:20,864 INFO [NativeServerConfig] jbossws-native-2.0.1.SP2 (build=200710210837)

00:05:23,510 INFO [Embedded] Catalina naming disabled

00:05:23,722 INFO [AprLifecycleListener] The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: C:\Program Files\Java\jdk1.5.0_15\bin;.;C:\Windows\system32;C:\Windows;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files\Common Files\Roxio Shared\DLLShared\;C:\Program Files\Common Files\Roxio Shared\DLLShared\;C:\Program Files\Common Files\Roxio Shared\9.0\DLLShared\;C:\Program Files\QuickTime\QTSystem\;C:\Program Files\MySQL\MySQL Server 5.0\bin;c:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files\SSH Communications Security\SSH Secure Shell

00:05:23,913 INFO [Http11Protocol] Initialisation de Coyote HTTP/1.1 sur http-127.0.0.1-8080

00:05:23,917 INFO [AjpProtocol] Initializing Coyote AJP/1.3 on ajp-127.0.0.1-8009

00:05:23,917 INFO [Catalina] Initialization processed in 407 ms

00:05:23,917 INFO [StandardService] Démarrage du service jboss.web

00:05:23,920 INFO [StandardEngine] Starting Servlet Engine: JBossWeb/2.0.1.GA

00:05:24,116 INFO [Catalina] Server startup in 198 ms

00:05:24,505 INFO [TomcatDeployer] deploy, ctxPath=/, warUrl=.../deploy/jboss-web.deployer/ROOT.war/

00:05:25,537 INFO [TomcatDeployer] deploy, ctxPath=/invoker, warUrl=.../deploy/http-invoker.sar/invoker.war/

00:05:25,951 INFO [TomcatDeployer] deploy, ctxPath=/jbossws, warUrl=.../deploy/jbossws.sar/jbossws-context.war/

00:05:26,166 INFO [TomcatDeployer] deploy, ctxPath=/jbossmq-httpil, warUrl=.../deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/

00:05:28,368 INFO [TomcatDeployer] deploy, ctxPath=/web-console, warUrl=.../deploy/management/console-mgr.sar/web-console.war/



00:05:29,202 INFO [MailService] Mail Service bound to java:/Mail

00:05:29,496 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-ha-local-jdbc.rar

00:05:29,586 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-ha-xa-jdbc.rar

00:05:29,646 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-local-jdbc.rar

00:05:29,690 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-xa-jdbc.rar

00:05:29,810 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jms/jms-ra.rar

00:05:29,928 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/mail-ra.rar

00:05:29,985 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/quartz-ra.rar

00:05:30,002 INFO [QuartzResourceAdapter] start quartz!!!

00:05:30,090 INFO [SimpleThreadPool] Job execution threads will use class loader of thread: main

00:05:30,121 INFO [QuartzScheduler] Quartz Scheduler v.1.5.2 created.

00:05:30,125 INFO [RAMJobStore] RAMJobStore initialized.

00:05:30,381 INFO [StdSchedulerFactory] Quartz scheduler 'DefaultQuartzScheduler' initialized from default resource file in Quartz package: 'quartz.properties'

00:05:30,381 INFO [StdSchedulerFactory] Quartz scheduler version: 1.5.2

00:05:30,382 INFO [QuartzScheduler] Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED started.

00:05:30,623 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=ConnectionFactoryBinding,name=JmsXA' to JNDI name 'java:JmsXA'

00:05:30,809 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=Acq1DS' to JNDI name 'java:Acq1DS'

00:05:30,890 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=DefaultDS' to JNDI name 'java:DefaultDS'

00:05:35,131 INFO [TomcatDeployer] deploy, ctxPath=/jmx-console, warUrl=.../deploy/jmx-console.war/

00:05:35,373 ERROR [URLDeploymentScanner] Incomplete Deployment listing:



--- MBeans waiting for other MBeans ---

ObjectName: jboss.mq:service=InvocationLayer,type=HTTP

State: CONFIGURED

I Depend On:

jboss.mq:service=Invoker

jboss.web:service=WebServer



ObjectName: jboss.mq.destination:service=Topic,name=testTopic

State: CONFIGURED

I Depend On:

jboss.mq:service=DestinationManager

jboss.mq:service=SecurityManager



ObjectName: jboss.mq.destination:service=Topic,name=securedTopic

State: CONFIGURED

I Depend On:

jboss.mq:service=DestinationManager

jboss.mq:service=SecurityManager



ObjectName: jboss.mq.destination:service=Topic,name=testDurableTopic

State: CONFIGURED

I Depend On:

jboss.mq:service=DestinationManager

jboss.mq:service=SecurityManager



ObjectName: jboss.mq.destination:service=Queue,name=testQueue

State: CONFIGURED

I Depend On:

jboss.mq:service=DestinationManager

Avatar

Former Community Member
i have de same problem, can some one help me please.



===============================================================================



JBoss Bootstrap Environment



JBOSS_HOME: C:\accquisio\appservers\jboss\jboss-4.2.2.GA



JAVA: C:\Program Files\Java\jdk1.5.0_15\bin\java



JAVA_OPTS: -Dhttp.proxyHost= -Dhttp.proxyPort= -Dhttp.nonProxyHosts="localhost|127.0.0.1|PC_User" -Dhttps.proxyHost= -Dhttps.proxyPort= -Dprogram.name=run.bat -server -Xms128m -Xmx512m -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000



CLASSPATH: C:\Program Files\Java\jdk1.5.0_15\lib\tools.jar;C:\accquisio\appservers\jboss\jboss-4.2.2.GA\bin\run.jar



===============================================================================



00:05:05,545 INFO [Server] Starting JBoss (MX MicroKernel)...

00:05:05,546 INFO [Server] Release ID: JBoss [Trinity] 4.2.2.GA (build: SVNTag=JBoss_4_2_2_GA date=200710221139)

00:05:05,548 INFO [Server] Home Dir: C:\accquisio\appservers\jboss\jboss-4.2.2.GA

00:05:05,548 INFO [Server] Home URL: file:/C:/accquisio/appservers/jboss/jboss-4.2.2.GA/

00:05:05,549 INFO [Server] Patch URL: null

00:05:05,550 INFO [Server] Server Name: default

00:05:05,639 INFO [Server] Server Home Dir: C:\accquisio\appservers\jboss\jboss-4.2.2.GA\server\default

00:05:05,639 INFO [Server] Server Home URL: file:/C:/accquisio/appservers/jboss/jboss-4.2.2.GA/server/default/

00:05:05,639 INFO [Server] Server Log Dir: C:\accquisio\appservers\jboss\jboss-4.2.2.GA\server\default\log

00:05:05,640 INFO [Server] Server Temp Dir: C:\accquisio\appservers\jboss\jboss-4.2.2.GA\server\default\tmp

00:05:05,640 INFO [Server] Root Deployment Filename: jboss-service.xml

00:05:06,053 INFO [ServerInfo] Java version: 1.5.0_15,Sun Microsystems Inc.

00:05:06,053 INFO [ServerInfo] Java VM: Java HotSpot(TM) Server VM 1.5.0_15-b04,Sun Microsystems Inc.

00:05:06,139 INFO [ServerInfo] OS-System: Windows Vista 6.0,x86

00:05:06,611 INFO [Server] Core system initialized

00:05:10,740 INFO [WebService] Using RMI server codebase: http://127.0.0.1:8083/

00:05:10,743 INFO [Log4jService$URLWatchTimerTask] Configuring from URL: resource:jboss-log4j.xml

00:05:11,409 INFO [TransactionManagerService] JBossTS Transaction Service (JTA version) - JBoss Inc.

00:05:11,409 INFO [TransactionManagerService] Setting up property manager MBean and JMX layer

00:05:11,708 INFO [TransactionManagerService] Starting recovery manager

00:05:11,825 INFO [TransactionManagerService] Recovery manager started

00:05:11,825 INFO [TransactionManagerService] Binding TransactionManager JNDI Reference

00:05:17,096 INFO [EJB3Deployer] Starting java:comp multiplexer

00:05:17,537 INFO [STDOUT] no object for null

00:05:17,542 INFO [STDOUT] no object for null

00:05:17,576 INFO [STDOUT] no object for null

00:05:17,623 INFO [STDOUT] no object for {urn:jboss:bean-deployer}supplyType

00:05:17,635 INFO [STDOUT] no object for {urn:jboss:bean-deployer}dependsType

00:05:20,864 INFO [NativeServerConfig] JBoss Web Services - Native

00:05:20,864 INFO [NativeServerConfig] jbossws-native-2.0.1.SP2 (build=200710210837)

00:05:23,510 INFO [Embedded] Catalina naming disabled

00:05:23,722 INFO [AprLifecycleListener] The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: C:\Program Files\Java\jdk1.5.0_15\bin;.;C:\Windows\system32;C:\Windows;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files\Common Files\Roxio Shared\DLLShared\;C:\Program Files\Common Files\Roxio Shared\DLLShared\;C:\Program Files\Common Files\Roxio Shared\9.0\DLLShared\;C:\Program Files\QuickTime\QTSystem\;C:\Program Files\MySQL\MySQL Server 5.0\bin;c:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files\SSH Communications Security\SSH Secure Shell

00:05:23,913 INFO [Http11Protocol] Initialisation de Coyote HTTP/1.1 sur http-127.0.0.1-8080

00:05:23,917 INFO [AjpProtocol] Initializing Coyote AJP/1.3 on ajp-127.0.0.1-8009

00:05:23,917 INFO [Catalina] Initialization processed in 407 ms

00:05:23,917 INFO [StandardService] Démarrage du service jboss.web

00:05:23,920 INFO [StandardEngine] Starting Servlet Engine: JBossWeb/2.0.1.GA

00:05:24,116 INFO [Catalina] Server startup in 198 ms

00:05:24,505 INFO [TomcatDeployer] deploy, ctxPath=/, warUrl=.../deploy/jboss-web.deployer/ROOT.war/

00:05:25,537 INFO [TomcatDeployer] deploy, ctxPath=/invoker, warUrl=.../deploy/http-invoker.sar/invoker.war/

00:05:25,951 INFO [TomcatDeployer] deploy, ctxPath=/jbossws, warUrl=.../deploy/jbossws.sar/jbossws-context.war/

00:05:26,166 INFO [TomcatDeployer] deploy, ctxPath=/jbossmq-httpil, warUrl=.../deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/

00:05:28,368 INFO [TomcatDeployer] deploy, ctxPath=/web-console, warUrl=.../deploy/management/console-mgr.sar/web-console.war/



00:05:29,202 INFO [MailService] Mail Service bound to java:/Mail

00:05:29,496 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-ha-local-jdbc.rar

00:05:29,586 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-ha-xa-jdbc.rar

00:05:29,646 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-local-jdbc.rar

00:05:29,690 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-xa-jdbc.rar

00:05:29,810 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jms/jms-ra.rar

00:05:29,928 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/mail-ra.rar

00:05:29,985 INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/quartz-ra.rar

00:05:30,002 INFO [QuartzResourceAdapter] start quartz!!!

00:05:30,090 INFO [SimpleThreadPool] Job execution threads will use class loader of thread: main

00:05:30,121 INFO [QuartzScheduler] Quartz Scheduler v.1.5.2 created.

00:05:30,125 INFO [RAMJobStore] RAMJobStore initialized.

00:05:30,381 INFO [StdSchedulerFactory] Quartz scheduler 'DefaultQuartzScheduler' initialized from default resource file in Quartz package: 'quartz.properties'

00:05:30,381 INFO [StdSchedulerFactory] Quartz scheduler version: 1.5.2

00:05:30,382 INFO [QuartzScheduler] Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED started.

00:05:30,623 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=ConnectionFactoryBinding,name=JmsXA' to JNDI name 'java:JmsXA'

00:05:30,809 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=Acq1DS' to JNDI name 'java:Acq1DS'

00:05:30,890 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=DefaultDS' to JNDI name 'java:DefaultDS'

00:05:35,131 INFO [TomcatDeployer] deploy, ctxPath=/jmx-console, warUrl=.../deploy/jmx-console.war/

00:05:35,373 ERROR [URLDeploymentScanner] Incomplete Deployment listing:



--- MBeans waiting for other MBeans ---

ObjectName: jboss.mq:service=InvocationLayer,type=HTTP

State: CONFIGURED

I Depend On:

jboss.mq:service=Invoker

jboss.web:service=WebServer



ObjectName: jboss.mq.destination:service=Topic,name=testTopic

State: CONFIGURED

I Depend On:

jboss.mq:service=DestinationManager

jboss.mq:service=SecurityManager



ObjectName: jboss.mq.destination:service=Topic,name=securedTopic

State: CONFIGURED

I Depend On:

jboss.mq:service=DestinationManager

jboss.mq:service=SecurityManager



ObjectName: jboss.mq.destination:service=Topic,name=testDurableTopic

State: CONFIGURED

I Depend On:

jboss.mq:service=DestinationManager

jboss.mq:service=SecurityManager



ObjectName: jboss.mq.destination:service=Queue,name=testQueue

State: CONFIGURED

I Depend On:

jboss.mq:service=DestinationManager

Avatar

Former Community Member









Acq1DS
jdbc:sqlserver://127.0.0.1:1433;databaseName=acq1
com.microsoft.sqlserver.jdbc.SQLServerDriver

sa
allo
SELECT 1 FROM sysobjects


MS SQLSERVER2000




DefaultDS
jdbc:sqlserver://127.0.0.1:1433;databaseName=jboss
com.microsoft.sqlserver.jdbc.SQLServerDriver
sa
allo
true

MS SQLSERVER2000

SELECT 1 FROM sysobjects




i added also this configuration in login-config.xml





sa
allo
jboss.jca:service=LocalTxCM,name=MSSQLDS





Can anyone give me help how to manage the problem?

thank in advance.

Avatar

Former Community Member
Are you running on Windows Serer 2003 SP1 or SP2? And is MSSQl SP1?

Avatar

Level 4
The JNDI name for LiveCycle should be:
IDP_DS

Avatar

Level 2
Which JBoss tree did you use? (i.e.: did you use the Adobe-configured JBoss tree, or a stock JBoss tree from JBoss.com ?) If the former, then 'DefaultDS' is usually defined in the mysql-ds.xml file, which -- for SQLServer -- our documentation says you must delete and replace with mssql-ds.xml (something like that). Are you sure that DefaultDs is defined in one of the *-ds.xml files in the jboss/server/all/deploy folder?



Also, I'm not used to seeing Jboss under "C:\Program Files". I have no proof it's the source of your problems, but I'd keep it in mind.

Avatar

Former Community Member
I have used the information posted previously to fix some errors loading JBoss on Windows Server 2003 SP2, I'm still unable to cleanly load the server. Here is my output:

==============================================================================

Microsoft Windows [Version 5.2.3790]

(C) Copyright 1985-2003 Microsoft Corp.



D:\JBOSS\bin>run.bat -c all

===============================================================================



JBoss Bootstrap Environment



JBOSS_HOME: D:\JBOSS



JAVA: D:\Program Files\Java SDK 1.5_16\jdk1.5.0_16\bin\java



JAVA_OPTS: -Dadobeidp.serverName=server1 -DCASBOOTPROPS=bam.properties -Dcom.

celequest.bootstrap.envpropname=CASBOOTPROPS -Dfile.encoding=utf8 -Djava.net.pre

ferIPv4Stack=true -Dprogram.name=run.bat -server -Djava.security.manager -Djava.

security.policy=../server/all/conf/server.policy -Djava.security.debug=failure -

XX:PermSize=256m -XX:MaxPermSize=256m -Xms1024m -Xmx1024m -Dsun.rmi.dgc.client.g

cInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000



CLASSPATH: D:\Program Files\Java SDK 1.5_16\jdk1.5.0_16\lib\tools.jar;D:\JBOSS

\bin\run.jar



===============================================================================



11:06:29,453 INFO [Server] Starting JBoss (MX MicroKernel)...

11:06:29,453 INFO [Server] Release ID: JBoss [EAP] 4.2.0.GA_CP01 (build: SVNTag

=JBPAPP_4_2_0_GA_CP01 date=200709131706)

11:06:29,453 INFO [Server] Home Dir: D:\JBOSS

11:06:29,468 INFO [Server] Home URL: file:/D:/JBOSS/

11:06:29,468 INFO [Server] Patch URL: null

11:06:29,468 INFO [Server] Server Name: all

11:06:29,468 INFO [Server] Server Home Dir: D:\JBOSS\server\all

11:06:29,468 INFO [Server] Server Home URL: file:/D:/JBOSS/server/all/

11:06:29,468 INFO [Server] Server Log Dir: D:\JBOSS\server\all\log

11:06:29,468 INFO [Server] Server Temp Dir: D:\JBOSS\server\all\tmp

11:06:29,468 INFO [Server] Root Deployment Filename: jboss-service.xml

11:06:29,781 INFO [ServerInfo] Java version: 1.5.0_16,Sun Microsystems Inc.

11:06:29,781 INFO [ServerInfo] Java VM: Java HotSpot(TM) Server VM 1.5.0_16-b02

,Sun Microsystems Inc.

11:06:29,781 INFO [ServerInfo] OS-System: Windows 2003 5.2,x86

11:06:30,281 INFO [Server] Core system initialized

11:06:33,187 INFO [WebService] Using RMI server codebase: http://158.237.56.108

:8083/

11:06:33,187 INFO [Log4jService$URLWatchTimerTask] Configuring from URL: resour

ce:jboss-log4j.xml

11:06:46,156 ERROR [MainDeployer] Could not create deployment: file:/D:/JBOSS/se

rver/all/deploy/jms/mssql-jdbc2-service.xml

org.jboss.deployment.DeploymentException: No ClassLoaders found for: org.jboss.m

q.pm.jdbc2.MSSQLJDBCStateManager; - nested throwable: (java.lang.ClassNotFoundEx

ception: No ClassLoaders found for: org.jboss.mq.pm.jdbc2.MSSQLJDBCStateManager)



at org.jboss.system.ServiceConfigurator.install(ServiceConfigurator.java

:196)

at org.jboss.system.ServiceController.install(ServiceController.java:226

)

at sun.reflect.GeneratedMethodAccessor22.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces

sorImpl.java:25)

at java.lang.reflect.Method.invoke(Method.java:585)

at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatch

er.java:155)

at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)

at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)

at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.

java:264)

at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)

at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)

at $Proxy4.install(Unknown Source)

at org.jboss.deployment.SARDeployer.create(SARDeployer.java:249)

at org.jboss.deployment.MainDeployer.create(MainDeployer.java:969)

at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:818)

at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)

at sun.reflect.GeneratedMethodAccessor21.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces

sorImpl.java:25)

at java.lang.reflect.Method.invoke(Method.java:585)

at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatch

er.java:155)

at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)

at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractIntercept

or.java:133)

at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)

at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelM

BeanOperationInterceptor.java:142)

at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)

at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.

java:264)

at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)

at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)

at $Proxy9.deploy(Unknown Source)

at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymen

tScanner.java:421)

at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentS

canner.java:634)

at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.

doScan(AbstractDeploymentScanner.java:263)

at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(A

bstractDeploymentScanner.java:336)

at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanS

upport.java:289)

at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMB

eanSupport.java:245)

at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces

sorImpl.java:25)

at java.lang.reflect.Method.invoke(Method.java:585)

at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatch

er.java:155)

at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)

at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)

at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.

java:264)

at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)

at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceControl

ler.java:978)

at $Proxy0.start(Unknown Source)

at org.jboss.system.ServiceController.start(ServiceController.java:417)

at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces

sorImpl.java:25)

at java.lang.reflect.Method.invoke(Method.java:585)

at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatch

er.java:155)

at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)

at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)

at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.

java:264)

at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)

at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)

at $Proxy4.start(Unknown Source)

at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)

at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)

at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)

at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)

at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:766)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.

java:39)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingM

Avatar

Former Community Member
I've used some information in this post to fix a few things, but I'm still not able to cleanly load JBoss on WIndows Server 2003 SP2.

I've only posted a small part of the startup output that listed some errors.

================================================================

11:06:29,453 INFO [Server] Starting JBoss (MX MicroKernel)...

11:06:29,453 INFO [Server] Release ID: JBoss [EAP] 4.2.0.GA_CP01 (build: SVNTag

=JBPAPP_4_2_0_GA_CP01 date=200709131706)

11:06:29,453 INFO [Server] Home Dir: D:\JBOSS

11:06:29,468 INFO [Server] Home URL: file:/D:/JBOSS/

11:06:29,468 INFO [Server] Patch URL: null

11:06:29,468 INFO [Server] Server Name: all

11:06:29,468 INFO [Server] Server Home Dir: D:\JBOSS\server\all

11:06:29,468 INFO [Server] Server Home URL: file:/D:/JBOSS/server/all/

11:06:29,468 INFO [Server] Server Log Dir: D:\JBOSS\server\all\log

11:06:29,468 INFO [Server] Server Temp Dir: D:\JBOSS\server\all\tmp

11:06:29,468 INFO [Server] Root Deployment Filename: jboss-service.xml

11:06:29,781 INFO [ServerInfo] Java version: 1.5.0_16,Sun Microsystems Inc.

11:06:29,781 INFO [ServerInfo] Java VM: Java HotSpot(TM) Server VM 1.5.0_16-b02

,Sun Microsystems Inc.

11:06:29,781 INFO [ServerInfo] OS-System: Windows 2003 5.2,x86

11:06:30,281 INFO [Server] Core system initialized

===================================================

Caused by: org.jboss.resource.JBossResourceException: Wrong driver class for thi

s connection URL

at org.jboss.resource.adapter.jdbc.local.LocalManagedConnectionFactory.c

reateManagedConnection(LocalManagedConnectionFactory.java:173)

===================================================

--- Incompletely deployed packages ---

org.jboss.deployment.DeploymentInfo@bfed61cf { url=file:/D:/JBOSS/server/all/dep

loy/jms/mssql-jdbc2-service.xml }

deployer: org.jboss.deployment.SARDeployer@273686

status: Deployment FAILED reason: No ClassLoaders found for: org.jboss.mq.pm.j

dbc2.MSSQLJDBCStateManager; - nested throwable: (java.lang.ClassNotFoundExceptio

n: No ClassLoaders found for: org.jboss.mq.pm.jdbc2.MSSQLJDBCStateManager)

state: FAILED

watch: file:/D:/JBOSS/server/all/deploy/jms/mssql-jdbc2-service.xml

altDD: null

lastDeployed: 1218122579703

lastModified: 1218122579687

mbeans:



--- MBeans waiting for other MBeans ---

ObjectName: jboss.mq:service=InvocationLayer,type=HTTP

State: CONFIGURED

I Depend On:

jboss.mq:service=Invoker

jboss.web:service=WebServer



ObjectName: jboss:service=KeyGeneratorFactory,type=HiLo

State: FAILED

Reason: org.jboss.deployment.DeploymentException: Error while checking if tabl

e aleady exists HILOSEQUENCES; - nested throwable: (org.jboss.util.NestedSQLExce

ption: Could not create connection; - nested throwable: (org.jboss.resource.JBos

sResourceException: Wrong driver class for this connection URL); - nested throwa

ble: (org.jboss.resource.JBossResourceException: Could not create connection; -

nested throwable: (org.jboss.resource.JBossResourceException: Wrong driver class

for this connection URL)))

I Depend On:

jboss:service=TransactionManager

jboss.jca:service=DataSourceBinding,name=DefaultDS

=======================================================

--- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM ---

ObjectName: jboss.mq:service=DestinationManager

State: NOTYETINSTALLED

Depends On Me:

jboss.mq.destination:service=Queue,name=adobe_PECommandQueue

jboss.mq.destination:service=Queue,name=adobe_PEDCommandQueue

jboss.mq.destination:service=Queue,name=adobe_PEInteractionQueue

jboss.mq.destination:service=Queue,name=adobe_JobManagerQueue

jboss.mq.destination:service=Queue,name=adobe_TaskEventTopic

jboss.mq.destination:service=Topic,name=testTopic

jboss.mq.destination:service=Topic,name=securedTopic

jboss.mq.destination:service=Topic,name=testDurableTopic

jboss.mq.destination:service=Queue,name=testQueue

jboss.mq.destination:service=Queue,name=A

jboss.mq.destination:service=Queue,name=B

jboss.mq.destination:service=Queue,name=C

jboss.mq.destination:service=Queue,name=D

jboss.mq.destination:service=Queue,name=ex

jboss.mq:service=SecurityManager

jboss.mq.destination:service=Queue,name=DLQ



ObjectName: jboss:service=KeyGeneratorFactory,type=HiLo

State: FAILED

Reason: org.jboss.deployment.DeploymentException: Error while checking if tabl

e aleady exists HILOSEQUENCES; - nested throwable: (org.jboss.util.NestedSQLExce

ption: Could not create connection; - nested throwable: (org.jboss.resource.JBos

sResourceException: Wrong driver class for this connection URL); - nested throwa

ble: (org.jboss.resource.JBossResourceException: Could not create connection; -

nested throwable: (org.jboss.resource.JBossResourceException: Wrong driver class

for this connection URL)))

I Depend On:

jboss:service=TransactionManager

jboss.jca:service=DataSourceBinding,name=DefaultDS

Avatar

Former Community Member
You may also need to change the name of the class to:<br />com.microsoft.sqlserver.jdbc.SQLServerDriver<br /><br />This might be helpful:<br />http://msdn.microsoft.com/en-us/library/ms378729(SQL.90).aspx<br /><br />Here's a working sample:<br /><code><br /><?xml version="1.0" encoding="UTF-8"?><br /><!-- ===================================================================== --><br /><!-- --><br /><!-- JBoss Server Configuration --><br /><!-- --><br /><!-- ===================================================================== --><br /><br /><!-- $Id: mssql-ds.xml,v 1.3 2004/09/15 14:37:40 loubyansky Exp $ --><br /><br /> <!-- ======================================================================--><br /> <!-- New ConnectionManager setup for Microsoft SQL Server 2000 driver --><br /> <!-- You may download the latest Microsoft JDBC driver from *Microsoft* --><br /> <!-- http://msdn.microsoft.com/downloads/default.asp?url=/downloads/sample.asp?url=/MSDN-FILES/027/001/77... --><br /> <!-- ===================================================================== --><br /><br /><datasources><br /> <local-tx-datasource><br /> <jndi-name>DefaultDS</jndi-name><br /> <connection-url>jdbc:sqlserver://Server\Instance:1433;DatabaseName=adobe</connection-url><br /> <driver-class>com.microsoft.sqlserver.jdbc.SQLServerDriver</driver-class><br /> <user-name>adobe</user-name><br /> <password>adobe</password><br /> <!-- sql to call when connection is created<br /> <new-connection-sql>some arbitrary sql</new-connection-sql><br /> --><br /><br /> <!-- sql to call on an existing pooled connection when it is obtained from pool <br /> <check-valid-connection-sql>some arbitrary sql</check-valid-connection-sql><br /> --><br /><br /> <!-- corresponding type-mapping in the standardjbosscmp-jdbc.xml (optional) --><br /> <metadata><br /> <type-mapping>MS SQLSERVER2000</type-mapping><br /> </metadata><br /> </local-tx-datasource><br /></datasources><br /></code>

Avatar

Former Community Member
I am able to install Livecycle using Jboss setup using turnkey installation mode.

But when I try to access "JBoss Web Console" on http://localhost:8080 I am not able to see the deployed applications page(it returns a page with error code 404).

Also I tried to convert native format to pdf using Livecycle ES PDF generator it gives error code 1000: Error Message ALC-PDG-001-000.



Is it a problem with JBOSS installation?

Any help would be highly appreciated.