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
TestTPCallServiceXCommon.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 TestTPCallServiceXCommon implements BlacktieService {
- private static final Logger log = LogManager
- .getLogger(TestTPCallServiceXCommon.class);
- public Response tpservice(TPSVCINFO svcinfo) {
- try {
- log.info("test_tpcall_x_common_service");
- boolean ok = false;
- X_COMMON dptr = (X_COMMON) svcinfo.getBuffer();
- if (dptr.getLong("acct_no") == 12345678
- && dptr.getShort("amount") == 50) {
- ok = true;
- }
- int len = 60;
- X_OCTET toReturn = (X_OCTET) svcinfo.tpalloc("X_OCTET", null);
- if (ok) {
- toReturn.setByteArray("tpcall_x_common".getBytes());
- } else {
- toReturn.setByteArray("fail".getBytes());
- }
- return new Response(Connection.TPSUCCESS, 22, toReturn, len, 0);
- } catch (ConnectionException e) {
- return new Response(Connection.TPFAIL, 0, null, 0, 0);
- }
- }
- }