JABClientTest.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. import java.io.BufferedReader;
  19. import java.io.IOException;
  20. import java.io.InputStreamReader;
  21. import org.apache.log4j.LogManager;
  22. import org.apache.log4j.Logger;
  23. import junit.framework.TestCase;
  24. import org.jboss.blacktie.jatmibroker.jab.JABException;
  25. import org.jboss.blacktie.jatmibroker.jab.JABRemoteService;
  26. import org.jboss.blacktie.jatmibroker.jab.JABSession;
  27. import org.jboss.blacktie.jatmibroker.jab.JABSessionAttributes;
  28. import org.jboss.blacktie.jatmibroker.jab.JABTransaction;
  29. public class JABClientTest extends TestCase {
  30. private static final Logger log = LogManager.getLogger(JABClientTest.class);
  31. private InputStreamReader isr = new InputStreamReader(System.in);
  32. private BufferedReader br = new BufferedReader(isr);
  33. public void test() throws Exception {
  34. log.info("JABClient");
  35. String message = prompt("Enter a message to send");
  36. JABSessionAttributes aJabSessionAttributes = new JABSessionAttributes();
  37. JABSession aJabSession = new JABSession(aJabSessionAttributes);
  38. JABTransaction transaction = new JABTransaction(aJabSession, 5000);
  39. JABRemoteService aJabService = new JABRemoteService("BAR", aJabSession,
  40. "X_OCTET", null);
  41. aJabService.getRequest().setByteArray("X_OCTET", message.getBytes());
  42. log.info("Calling call with input: " + message);
  43. aJabService.call(null);
  44. log
  45. .info("Called call with output: "
  46. + new String(aJabService.getResponse().getByteArray(
  47. "X_OCTET")));
  48. transaction.commit();
  49. aJabSession.closeSession();
  50. }
  51. private String prompt(String prompt) throws IOException {
  52. System.out.println("Please press return after you: " + prompt + "...");
  53. return br.readLine();
  54. }
  55. }