I attempted to install JBossMQ standalone by following the instructions at 
http://www.jboss.org/wiki/Wiki.jsp?page=IsThereAStandaloneDistributionOfJBossMQ, but 
ended up with the following bottom-line error:
MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM:
  | ObjectName: jboss.jca:name=DefaultDS,service=DataSourceBinding
  |  state: NOTYETINSTALLED
  |  I Depend On: 
  |  Depends On Me:  jboss.mq:service=PersistenceManager

Examining the build.xml file, I see that it makes reference to the file jboss-jca.sar, 
which I couldn't find anywhere in JBoss 4.0.0. So perhaps this file was never updated 
from JBoss 3.x?

In any case, after a long night of poking around, I got the default hsqldb JBossMQ to 
work. Here is what was missing from build.xml:
   
  | <fileset>
  |   <...>
  |   <!-- missing from original (3.x?) build.xml -->
  |   <include name="conf/standardjbosscmp-jdbc.xml"/>
  |   <include name="deploy/jbossjca-service.xml"/>
  |   <include name="deploy/jboss-jdbc-metadata.sar"/>
  |   <include name="deploy/jms/hsqldb-jdbc-state-service.xml"/>
  |   <include name="lib/jboss-jca.jar"/>
  | </fileset>

In addition, here's what I needed to add to the bottom of jboss-service.xml

<!-- Added by Roger Hand. See 
http://jboss.com/index.html?module=bb&op=viewtopic&t=54155 -->
  |  <!-- RMI/JRMP invoker -->
  |  <mbean code="org.jboss.invocation.jrmp.server.JRMPInvoker"
  |     name="jboss:service=invoker,type=jrmp">
  |     <attribute name="RMIObjectPort">4444</attribute>
  |     <attribute name="ServerAddress">${jboss.bind.address}</attribute>
  |     <!--
  |     <attribute name="RMIClientSocketFactory">custom</attribute>
  |     <attribute name="RMIServerSocketFactory">custom</attribute>
  |     <attribute name="SecurityDomain">ssl-domain-name</attribute>
  |     -->
  | 
  |     <depends>jboss:service=TransactionManager</depends>
  |  </mbean>
  | </server>

I altered these two files in docs/examples/jms/standalone, then ran ant and then it 
ran fine.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3853792#3853792

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3853792


-------------------------------------------------------
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to