Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
TestTPConversationServiceShort.java
Package: blacktie-2.0.0.M3-src.zip [view]
Upload User: xfwatch
Upload Date: 2020-12-14
Package Size: 872k
Code Size: 1k
Category:
MiddleWare
Development Platform:
Java
- package org.jboss.blacktie.jatmibroker.xatmi;
- import org.apache.log4j.LogManager;
- import org.apache.log4j.Logger;
- public class TestTPConversationServiceShort implements BlacktieService {
- private static final Logger log = LogManager
- .getLogger(TestTPConversationServiceShort.class);
- public Response tpservice(TPSVCINFO svcinfo) {
- try {
- log.info("testTPConversation_short_service");
- int sendlen = 4;
- X_OCTET sendbuf = (X_OCTET) svcinfo.tpalloc("X_OCTET", null);
- sendbuf.setByteArray("hi0".getBytes());
- svcinfo.getSession().tpsend(sendbuf, sendlen, 0);
- sendbuf.setByteArray("hi1".getBytes());
- return new Response(Connection.TPSUCCESS, 0, sendbuf, sendlen, 0);
- } catch (ConnectionException e) {
- return new Response(Connection.TPFAIL, Connection.TPEITYPE, null,
- 0, 0);
- }
- }
- }