[JBoss JIRA] Created: (JBMESSAGING-624) Running on DB2
by Tomaz Cerar (JIRA)
Running on DB2
--------------
Key: JBMESSAGING-624
URL: http://jira.jboss.com/jira/browse/JBMESSAGING-624
Project: JBoss Messaging
Issue Type: Patch
Components: Messaging Core Persistence
Affects Versions: 1.0.1.GA
Environment: jboss messaging 1.0.1GA, windows xp, DB2 8.2 iSeries
Reporter: Tomaz Cerar
Assigned To: Ovidiu Feodorov
To make jboss messaging 1.0.1GA work with DB2 there must be attribute UsingBinaryStream in class JDBCPersistenceManager made configurable from service file.
in JDBCPersistenceManager you add methods:
/**
* Managed attribute.
*/
public boolean isUsingBinaryStream()throws Exception {
return usingBinaryStream;
}
/**
* Managed attribute.
*/
public void setUsingBinaryStream(boolean usingBinaryStream)throws Exception {
this.usingBinaryStream = usingBinaryStream;
}
and in JDBCPersistenceManager-xmbean.xml
you have to add:
<attribute access="read-write" getMethod="isUsingBinaryStream" setMethod="setUsingBinaryStream">
<description>Should JDBC read as binary stream be used?</description>
<name>UsingBinaryStream</name>
<type>boolean</type>
</attribute>
db2-persistence-service.xml
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
19 years, 1 month
[JBoss JIRA] Created: (EJBTHREE-771) TransactionManager is not bound error in Embedded EJB
by Tony Hillerson (JIRA)
TransactionManager is not bound error in Embedded EJB
-----------------------------------------------------
Key: EJBTHREE-771
URL: http://jira.jboss.com/jira/browse/EJBTHREE-771
Project: EJB 3.0
Issue Type: Bug
Affects Versions: EJB 3.0 RC9 - FD
Environment: Embedded with Tomcat on Windows
Reporter: Tony Hillerson
I'm deploying a fairly simple web app with embedded ejb3 (RC9) to Tomcat 5.5.20. I get These errors:
ERROR 06-10 15:53:41,437 (AbstractController.java:incrementState:440) -Error installing to Start: name=UserTransaction state=Create
...
Caused by: javax.naming.NameNotFoundException: Name TransactionManager is not bound in this Context
The relevent lines from web.xml:
<context-param>
<param-name>jboss-kernel-deployments</param-name>
<param-value>embedded-jboss-beans.xml, jboss-jms-beans.xml</param-value>
</context-param>
<listener-class>org.jboss.ejb3.embedded.ServletBootstrapListener</listener-class>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
19 years, 1 month
[JBoss JIRA] Created: (JBMESSAGING-585) WebServices is having trouble using Messaging
by Ovidiu Feodorov (JIRA)
WebServices is having trouble using Messaging
---------------------------------------------
Key: JBMESSAGING-585
URL: http://jira.jboss.com/jira/browse/JBMESSAGING-585
Project: JBoss Messaging
Issue Type: Bug
Components: AS Integration
Reporter: Ovidiu Feodorov
Assigned To: Clebert Suconic
Fix For: 1.2.0.Alpha2
Thomas Diesler's report (1):
-------------------------------------------------------------------------------------------------------------------------------------------------------------
Hi Folks,
on jbossas/trunk this jboss-service.xml does not deploy
<server>
<mbean code="org.jboss.jms.server.destination.Queue" name="jboss.messaging.destination:service=Queue,name=RequestQueue"
xmbean-dd="xmdesc/Queue-xmbean.xml">
<depends optional-attribute-name="ServerPeer"> jboss.messaging:service=ServerPeer</depends>
</mbean>
<mbean code="org.jboss.jms.server.destination.Queue" name="jboss.messaging.destination:service=Queue,name=ResponseQueue"
xmbean-dd="xmdesc/Queue-xmbean.xml">
<depends optional-attribute-name="ServerPeer"> jboss.messaging:service=ServerPeer</depends>
</mbean>
</server>
2006-09-05 10:17:36,612 DEBUG [org.jboss.deployment.SARDeployer:292] Deploying SAR, start step: url file:/home/tdiesler/svn/jboss/jbossas/trunk/build/output/jboss-5.0.0.Beta/server/default/deploy/jbossws-samples-jmstransport.sar
2006-09-05 10:17:36,612 DEBUG [org.jboss.system.ServiceController:385] starting service jboss.messaging.destination:service=Queue,name=RequestQueue
2006-09-05 10:17:36,614 DEBUG [org.jboss.system.ServiceController:636] Waiting in start of jboss.messaging.destination:service=Queue,name=RequestQueue on
2006-09-05 10:17:36,615 DEBUG [org.jboss.system.ServiceController:385] starting service jboss.messaging.destination:service=Queue,name=ResponseQueue
2006-09-05 10:17:36,615 DEBUG [org.jboss.system.ServiceController:636] Waiting in start of jboss.messaging.destination:service=Queue,name=ResponseQueue on
2006-09-05 10:17:36,631 DEBUG [org.jboss.deployment.MainDeployer:1032] End deployment start on package: jbossws-samples-jmstransport.sar
>From the error output I cannot figure out what is missing.
2006-09-05 10:17:36,653 ERROR [org.jboss.deployment.scanner.URLDeploymentScanner:660] Incomplete Deployment listing:
--- MBeans waiting for other MBeans ---
ObjectName: jboss.j2ee:jndiName=local/OrganizationMDB@18849006,service=EJB
State: INSTALLED
ObjectName: jboss.messaging.destination:service=Queue,name=RequestQueue
State: CONFIGURED
ObjectName: jboss.messaging.destination:service=Queue,name=ResponseQueue
State: CONFIGURED
--- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM ---
ObjectName: jboss.messaging.destination:service=Queue,name=ResponseQueue
State: CONFIGURED
ObjectName: jboss.messaging.destination:service=Queue,name=RequestQueue
State: CONFIGURED
ObjectName: jboss.j2ee:jndiName=local/OrganizationMDB@18849006,service=EJB
State: INSTALLED
Hi Folks,
on jbossas/trunk this jboss-service.xml does not deploy
<server>
<mbean code="org.jboss.jms.server.destination.Queue" name="jboss.messaging.destination:service=Queue,name=RequestQueue"
xmbean-dd="xmdesc/Queue-xmbean.xml">
<depends optional-attribute-name="ServerPeer"> jboss.messaging:service=ServerPeer</depends>
</mbean>
<mbean code="org.jboss.jms.server.destination.Queue" name="jboss.messaging.destination:service=Queue,name=ResponseQueue"
xmbean-dd="xmdesc/Queue-xmbean.xml">
<depends optional-attribute-name="ServerPeer"> jboss.messaging:service=ServerPeer</depends>
</mbean>
</server>
2006-09-05 10:17:36,612 DEBUG [org.jboss.deployment.SARDeployer:292] Deploying SAR, start step: url file:/home/tdiesler/svn/jboss/jbossas/trunk/build/output/jboss-5.0.0.Beta/server/default/deploy/jbossws-samples-jmstransport.sar
2006-09-05 10:17:36,612 DEBUG [org.jboss.system.ServiceController:385] starting service jboss.messaging.destination:service=Queue,name=RequestQueue
2006-09-05 10:17:36,614 DEBUG [org.jboss.system.ServiceController:636] Waiting in start of jboss.messaging.destination:service=Queue,name=RequestQueue on
2006-09-05 10:17:36,615 DEBUG [org.jboss.system.ServiceController:385] starting service jboss.messaging.destination:service=Queue,name=ResponseQueue
2006-09-05 10:17:36,615 DEBUG [org.jboss.system.ServiceController:636] Waiting in start of jboss.messaging.destination:service=Queue,name=ResponseQueue on
2006-09-05 10:17:36,631 DEBUG [org.jboss.deployment.MainDeployer:1032] End deployment start on package: jbossws-samples-jmstransport.sar
>From the error output I cannot figure out what is missing.
2006-09-05 10:17:36,653 ERROR [org.jboss.deployment.scanner.URLDeploymentScanner:660] Incomplete Deployment listing:
--- MBeans waiting for other MBeans ---
ObjectName: jboss.j2ee:jndiName=local/OrganizationMDB@18849006,service=EJB
State: INSTALLED
ObjectName: jboss.messaging.destination:service=Queue,name=RequestQueue
State: CONFIGURED
ObjectName: jboss.messaging.destination:service=Queue,name=ResponseQueue
State: CONFIGURED
--- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM ---
ObjectName: jboss.messaging.destination:service=Queue,name=ResponseQueue
State: CONFIGURED
ObjectName: jboss.messaging.destination:service=Queue,name=RequestQueue
State: CONFIGURED
ObjectName: jboss.j2ee:jndiName=local/OrganizationMDB@18849006,service=EJB
State: INSTALLED
-------------------------------------------------------------------------------------------------------------------------------------------------------------
Thomas Diesler's report (2):
-------------------------------------------------------------------------------------------------------------------------------------------------------------
Please follow
How can I build and install the latest?
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBWSFAQBuildAndInstallJBoss50x
Instead of Step 8, do
8. Run the jbossws testsuite
cd jbossws/src/test
ant main
ant -Dtest=org.jboss.test.ws.samples.jmstransport.JMSTransportTestCase one-test
You can also run
ant tests-samples
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
19 years, 1 month