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

中间件编程

开发平台:

Java

  1. package org.jboss.blacktie.jatmibroker.tx;
  2. import org.apache.log4j.LogManager;
  3. import org.apache.log4j.Logger;
  4. import org.jboss.blacktie.jatmibroker.xatmi.BlacktieService;
  5. import org.jboss.blacktie.jatmibroker.xatmi.Connection;
  6. import org.jboss.blacktie.jatmibroker.xatmi.ConnectionException;
  7. import org.jboss.blacktie.jatmibroker.xatmi.Response;
  8. import org.jboss.blacktie.jatmibroker.xatmi.TPSVCINFO;
  9. import org.jboss.blacktie.jatmibroker.xatmi.X_COMMON;
  10. public class TestRollbackOnlyTpcallTPEOTYPEService implements BlacktieService {
  11. private static final Logger log = LogManager
  12. .getLogger(TestRollbackOnlyTpcallTPEOTYPEService.class);
  13. public Response tpservice(TPSVCINFO svcinfo) {
  14. try {
  15. log.info("test_tpcall_TPEOTYPE_service");
  16. int len = 60;
  17. X_COMMON toReturn = (X_COMMON) svcinfo.tpalloc("X_COMMON", "test");
  18. toReturn.setByteArray("key", "test_tpcall_TPEOTYPE_service"
  19. .getBytes());
  20. return new Response(Connection.TPSUCCESS, 0, toReturn, len, 0);
  21. } catch (ConnectionException e) {
  22. return new Response(Connection.TPFAIL, 0, null, 0, 0);
  23. }
  24. }
  25. }