/* * Copyright (c) 1997 BEA Systems, Inc. * All Rights Reserved * * THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF * BEA Systems, Inc. * The copyright notice above does not evidence any * actual or intended publication of such source code. * * This client is part of Test 2 of the XA test suite. It calls bdb1, which * in turn calls bdb2. In the test several clients are executed at once to test * how XA performs with multiple processes. */ #include #include #include "atmi.h" /* TUXEDO Header File */ void my_exit(); char *sendbuf, *rcvbuf; #ifdef VERBOSE static int verbose = 1; /* Debugging output. */ #else static int verbose = 0; #endif void my_exit(string) char *string; { tpfree(sendbuf); tpfree(rcvbuf); fprintf(stderr,"SIMPAPP:ERROR call to service %s failed \n",string); tpterm(); exit(1); } int main(argc, argv) int argc; char *argv[]; { extern char *optarg; char * msg = NULL; TPQCTL qctl; /* Q control structures */ long sendlen=10, rcvlen=10, len; int ret; char ch; char * service; int times = 1; int i; int delete = 0; int need_print = 0; int nostop =0; if(argc < 5) { fprintf(stderr, "Usage: %s -s service -m messgae [-t times][-d][-p]\n", argv[0] ); exit(1); } while ((ch = getopt(argc, argv, "s:m:t:dpn")) != EOF) switch (ch) { case 's': service = optarg; break; case 'm': msg = optarg; break; case 't': times = atoi(optarg); break; case 'd': delete = 1; break; case 'n': nostop = 1; break; } /* Attach to System/T as a Client Process */ if (tpinit((TPINIT *) NULL) == -1) { userlog("SIMPAPP:ERROR tpinit failed \n"); userlog("SIMPAPP:SYSTEM ERROR %s \n", tpstrerror(tperrno)); fprintf(stderr, "Simpapp:ERROR Tpinit failed\n"); my_exit("tpinit"); } if(msg){ sendlen = strlen(msg); } /* Allocate STRING buffers for the request and the reply */ if((sendbuf = (char *) tpalloc("STRING", NULL, sendlen+1)) == NULL) { fprintf(stderr,"Simpapp:ERRROR Allocating send buffer\n"); tpterm(); my_exit("tpalloc"); } if((rcvbuf = (char *) tpalloc("STRING", NULL, sendlen+1)) == NULL) { fprintf(stderr,"Simpapp:ERROR allocating receive buffer\n"); tpfree(sendbuf); tpterm(); my_exit("tpalloc"); } strcpy(sendbuf, msg); for(i=0; i