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

中间件编程

开发平台:

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 org.apache.log4j.LogManager;
  22. import org.apache.log4j.Logger;
  23. import org.jboss.blacktie.jatmibroker.core.conf.ConfigurationException;
  24. import org.jboss.blacktie.jatmibroker.core.transport.JtsTransactionImple;
  25. import org.jboss.blacktie.jatmibroker.xatmi.Connection;
  26. import org.jboss.blacktie.jatmibroker.xatmi.ConnectionException;
  27. import org.jboss.blacktie.jatmibroker.xatmi.ConnectionFactory;
  28. import org.jboss.blacktie.jatmibroker.xatmi.Response;
  29. import org.jboss.blacktie.jatmibroker.xatmi.TPSVCINFO;
  30. import org.jboss.blacktie.jatmibroker.xatmi.X_OCTET;
  31. import org.jboss.blacktie.jatmibroker.xatmi.mdb.MDBBlacktieService;
  32. import org.jboss.ejb3.annotation.Depends;
  33. @javax.ejb.TransactionAttribute(javax.ejb.TransactionAttributeType.NOT_SUPPORTED)
  34. @MessageDriven(activationConfig = {
  35. @ActivationConfigProperty(propertyName = "destinationType", propertyValue = "javax.jms.Queue"),
  36. @ActivationConfigProperty(propertyName = "destination", propertyValue = "queue/TxCreateService") })
  37. @Depends("jboss.messaging.destination:service=Queue,name=TxCreateService")
  38. public class TxCreateServiceTestService extends MDBBlacktieService implements
  39. javax.jms.MessageListener {
  40. private static final Logger log = LogManager
  41. .getLogger(TxCreateServiceTestService.class);
  42. public TxCreateServiceTestService() throws ConfigurationException,
  43. ConnectionException {
  44. super("TxCreateService");
  45. }
  46. public void setUp() throws ConnectionException, ConfigurationException {
  47. ConnectionFactory connectionFactory = ConnectionFactory
  48. .getConnectionFactory();
  49. Connection connection = connectionFactory.getConnection();
  50. }
  51. public static String serviceRequest(String args) {
  52. if (!JtsTransactionImple.begin())
  53. return "Service could not start a new transaction";
  54. String ior = JtsTransactionImple.getTransactionIOR();
  55. log.debug("TxCreateService ior: " + ior);
  56. return args;
  57. }
  58. public Response tpservice(TPSVCINFO svcinfo) {
  59. X_OCTET rcvd = (X_OCTET) svcinfo.getBuffer();
  60. String rcv = new String(rcvd.getByteArray());
  61. String resp = serviceRequest(rcv);
  62. X_OCTET buffer = null;
  63. try {
  64. buffer = (X_OCTET) svcinfo.tpalloc("X_OCTET", null);
  65. buffer.setByteArray(resp.getBytes());
  66. return new Response(Connection.TPSUCCESS, 0, buffer, resp.length(),
  67. 0);
  68. } catch (ConnectionException e) {
  69. resp = "";
  70. log.error("Caught an exception", e);
  71. return new Response(Connection.TPFAIL, 0, null, 0, 0);
  72. }
  73. }
  74. }