TxEchoServiceTestService.java
上传用户:xfwatch
上传日期:2020-12-14
资源大小:872k
文件大小:7k
源码类别:

中间件编程

开发平台:

Java

  1. /*
  2.  * JBoss, Home of Professional Open Source
  3.  * Copyright 2008, Red Hat, Inc., and others contributors as indicated
  4.  * by the @authors tag. All rights reserved.
  5.  * See the copyright.txt in the distribution for a
  6.  * full listing of individual contributors.
  7.  * This copyrighted material is made available to anyone wishing to use,
  8.  * modify, copy, or redistribute it subject to the terms and conditions
  9.  * of the GNU Lesser General Public License, v. 2.1.
  10.  * This program is distributed in the hope that it will be useful, but WITHOUT A
  11.  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  12.  * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
  13.  * You should have received a copy of the GNU Lesser General Public License,
  14.  * v.2.1 along with this distribution; if not, write to the Free Software
  15.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  16.  * MA  02110-1301, USA.
  17.  */
  18. package org.jboss.blacktie.example.mdb;
  19. import javax.ejb.ActivationConfigProperty;
  20. import javax.ejb.MessageDriven;
  21. import javax.naming.Context;
  22. import javax.naming.InitialContext;
  23. import javax.naming.NamingException;
  24. import org.apache.log4j.LogManager;
  25. import org.apache.log4j.Logger;
  26. import org.jboss.blacktie.example.ejb.eg1.BTTestRemote;
  27. import org.jboss.blacktie.jatmibroker.core.conf.ConfigurationException;
  28. import org.jboss.blacktie.jatmibroker.core.transport.JtsTransactionImple;
  29. import org.jboss.blacktie.jatmibroker.jab.JABException;
  30. import org.jboss.blacktie.jatmibroker.jab.JABTransaction;
  31. import org.jboss.blacktie.jatmibroker.xatmi.Connection;
  32. import org.jboss.blacktie.jatmibroker.xatmi.ConnectionException;
  33. import org.jboss.blacktie.jatmibroker.xatmi.ConnectionFactory;
  34. import org.jboss.blacktie.jatmibroker.xatmi.Response;
  35. import org.jboss.blacktie.jatmibroker.xatmi.TPSVCINFO;
  36. import org.jboss.blacktie.jatmibroker.xatmi.X_OCTET;
  37. import org.jboss.blacktie.jatmibroker.xatmi.mdb.MDBBlacktieService;
  38. import org.jboss.ejb3.annotation.Depends;
  39. @javax.ejb.TransactionAttribute(javax.ejb.TransactionAttributeType.NOT_SUPPORTED)
  40. @MessageDriven(activationConfig = {
  41. @ActivationConfigProperty(propertyName = "destinationType", propertyValue = "javax.jms.Queue"),
  42. @ActivationConfigProperty(propertyName = "destination", propertyValue = "queue/TxEchoService") })
  43. @Depends("jboss.messaging.destination:service=Queue,name=TxEchoService")
  44. public class TxEchoServiceTestService extends MDBBlacktieService implements
  45. javax.jms.MessageListener {
  46. private static final Logger log = LogManager
  47. .getLogger(TxEchoServiceTestService.class);
  48. private static final String[] names = { "FirstBTBean/remote",
  49. "SecondBTBean/remote" };
  50. public TxEchoServiceTestService() throws ConnectionException,
  51. ConfigurationException {
  52. super("TxEchoService");
  53. }
  54. public static Connection getConnection() throws ConnectionException,
  55. ConfigurationException {
  56. ConnectionFactory connectionFactory = ConnectionFactory
  57. .getConnectionFactory();
  58. return connectionFactory.getConnection();
  59. }
  60. public static String serviceRequest(String args) throws NamingException {
  61. Context ctx = new InitialContext();
  62. Object[] objs = new Object[names.length];
  63. BTTestRemote[] beans = new BTTestRemote[names.length];
  64. String[] results = new String[names.length];
  65. for (int i = 0; i < names.length; i++) {
  66. objs[i] = ctx.lookup(names[i]);
  67. beans[i] = (BTTestRemote) objs[i];
  68. // results[i] = beans[i].echo("bean=" + names[(i + 1) %
  69. // names.length]);
  70. // log.debug(names[i] + " result: " + results[i]);
  71. }
  72. log.debug(args + " hasTransaction: "
  73. + JtsTransactionImple.hasTransaction());
  74. if (args.contains("tx=true")) {
  75. try {
  76. String s = beans[0].txNever("bean=" + names[1]);
  77. log.info("Error should have got a Not Supported Exception");
  78. return "Error should have got a Not Supported Exception";
  79. } catch (javax.ejb.EJBException e) {
  80. log.debug("Success got Exception calling txNever: " + e);
  81. return args;
  82. }
  83. } else if (args.contains("tx=false")) {
  84. try {
  85. String s = beans[0].txMandatory("bean=" + names[1]);
  86. log
  87. .info("Error should have got an EJBTransactionRequiredException exception");
  88. return "Error should have got an EJBTransactionRequiredException exception";
  89. } catch (javax.ejb.EJBTransactionRequiredException e) {
  90. log.debug("Success got EJBTransactionRequiredException");
  91. return args;
  92. }
  93. } else if (args.contains("tx=create")) {
  94. try {
  95. Connection connection = getConnection();
  96. byte[] echo = args.getBytes();
  97. X_OCTET buffer = (X_OCTET) connection.tpalloc("X_OCTET", null);
  98. buffer.setByteArray(echo);
  99. log.debug("Invoking TxCreateService...");
  100. Response response = connection.tpcall("TxCreateService",
  101. buffer, echo.length, 0);
  102. X_OCTET rcvd = (X_OCTET) response.getBuffer();
  103. String responseData = new String(rcvd.getByteArray());
  104. log.debug("TxCreateService response: " + responseData);
  105. // check that the remote service created a transaction
  106. JABTransaction tx = JABTransaction.current();
  107. if (tx != null) {
  108. try {
  109. tx.commit();
  110. } catch (JABException e) {
  111. args = "Service create a transaction but commit failed: "
  112. + e;
  113. }
  114. } else {
  115. args = "Service should have propagated a new transaction back to caller";
  116. }
  117. return responseData; // should be the same as args
  118. } catch (ConnectionException e) {
  119. return e.getMessage();
  120. } catch (ConfigurationException e) {
  121. return e.getMessage();
  122. }
  123. // if (!JtsTransactionImple.begin())
  124. // return "Service could not start a new transaction";
  125. // String ior = JtsTransactionImple.getTransactionIOR();
  126. // return args;
  127. } else {
  128. try {
  129. return beans[0].echo("bean=" + names[1]);
  130. } catch (javax.ejb.EJBException e) {
  131. log
  132. .warn("Failure got Exception calling method with default transaction attribute");
  133. return "Failure got Exception calling method with default transaction attribute: "
  134. + e;
  135. }
  136. }
  137. }
  138. public Response tpservice(TPSVCINFO svcinfo) {
  139. X_OCTET rcv = (X_OCTET) svcinfo.getBuffer();
  140. String rcvd = new String(rcv.getByteArray());
  141. String resp;
  142. try {
  143. resp = serviceRequest(new String(rcvd));
  144. } catch (javax.naming.NamingException e) {
  145. log.warn("error: " + e);
  146. resp = e.getMessage();
  147. }
  148. try {
  149. X_OCTET buffer = (X_OCTET) svcinfo.tpalloc("X_OCTET", null);
  150. buffer.setByteArray(resp.getBytes());
  151. return new Response(Connection.TPSUCCESS, 0, buffer, resp.length(),
  152. 0);
  153. } catch (ConnectionException e) {
  154. resp = "";
  155. log.error("Caught an exception", e);
  156. return new Response(Connection.TPFAIL, 0, null, 0, 0);
  157. }
  158. }
  159. }