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
TestTPCallServiceXCType.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 java.util.Arrays;
- import org.apache.log4j.LogManager;
- import org.apache.log4j.Logger;
- public class TestTPCallServiceXCType implements BlacktieService {
- private static final Logger log = LogManager
- .getLogger(TestTPCallServiceXCType.class);
- public Response tpservice(TPSVCINFO svcinfo) {
- try {
- log.info("test_tpcall_x_c_type_service");
- boolean ok = false;
- X_C_TYPE aptr = (X_C_TYPE) svcinfo.getBuffer();
- byte[] receivedName = new byte[3];
- byte[] charArray = aptr.getByteArray("name");
- System.arraycopy(charArray, 0, receivedName, 0, 3);
- byte[] expectedName = "TOM".getBytes();
- long accountNumber = aptr.getLong("acct_no");
- float fooOne = aptr.getFloatArray("foo")[0];
- float fooTwo = aptr.getFloatArray("foo")[1];
- double balanceOne = aptr.getDoubleArray("balances")[0];
- double balanceTwo = aptr.getDoubleArray("balances")[1];
- if (accountNumber == 12345678
- && Arrays.equals(receivedName, expectedName)
- && fooOne == 1.1F && fooTwo == 2.2F && balanceOne == 1.1
- && balanceTwo == 2.2) {
- ok = true;
- }
- int len = 60;
- X_OCTET toReturn = (X_OCTET) svcinfo.tpalloc("X_OCTET", null);
- if (ok) {
- toReturn.setByteArray("tpcall_x_c_type".getBytes());
- } else {
- toReturn.setByteArray("fail".getBytes());
- }
- return new Response(Connection.TPSUCCESS, 23, toReturn, len, 0);
- } catch (ConnectionException e) {
- return new Response(Connection.TPFAIL, 0, null, 0, 0);
- }
- }
- }