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

中间件编程

开发平台:

Java

  1. package org.jboss.blacktie.jatmibroker.xatmi;
  2. import org.apache.log4j.LogManager;
  3. import org.apache.log4j.Logger;
  4. public class TestTPSendTPSendOnlyService implements BlacktieService {
  5. private static final Logger log = LogManager
  6. .getLogger(TestTPSendTPSendOnlyService.class);
  7. public Response tpservice(TPSVCINFO svcinfo) {
  8. log.info("testtpsend_tpsendonly_service");
  9. try {
  10. int result = svcinfo.getSession().tpsend(svcinfo.getBuffer(),
  11. svcinfo.getBuffer().getRawData().length,
  12. Connection.TPRECVONLY);
  13. } catch (ConnectionException e) {
  14. log.error("ConnectionException: ", e);
  15. }
  16. try {
  17. Buffer tprecv = svcinfo.getSession().tprecv(0);
  18. } catch (ConnectionException e) {
  19. if (e.getTperrno() != Connection.TPEEVENT) {
  20. log.error("ConnectionException: ", e);
  21. }
  22. }
  23. return null;
  24. }
  25. }