Only one instance of my transaction works - CICS ART

I have been able to deploy a CICS application on Tuxedo ART 11gR3 on RHEL 5.
But I can only access the application thorugh 1 Tn3270 window. Until I finish the applictaion, I cant use it from the 2nd terminal window.
I am trying to figure out how can I get the application to accept multiple concurrent requests.
The only way I was able to add more clients was through changing the ARTSTRN section of the ubbconfig file from MIN=1 , MAX=1 to MIN=2, MAX=3.
In fact, this is my setting which is the same as the sample_03 deployment file:
ARTSTRN SRVGRP=GRP02
SRVID=20
CONV=Y
MIN=1 MAX=1 RQADDR=QKIX110 REPLYQ=Y
I observed that this creates a new process for the request as this will be more expensive in higher concurrency requests.
I did notice that the sample application can handle multiple requests/terminal windows concurrently.
In the documentation it says that you can use a TRANCLASS to say how many users you can have, but I tried that and it did not work.
Any ideas?
Edited by: user522010 on Mar 22, 2012 12:10 PM
Edited by: user522010 on Mar 22, 2012 12:12 PM
Edited by: user522010 on Mar 22, 2012 12:12 PM

Hi Mark,
I will post the files shortly, but first I wanted to get a better understanding of the way the transaction works in ART CICS Runtime.
I have a program PGA that does a CICS LINK to program PG1. So basically PGA expects a call back from PG1 and PG2 and so on. So basically my problem is that I am only getting one transaction showing at a time, its NOT working concurrent as I would like it to.
Thanks,
Here is the following:
transaction.desc
SB00;SIMPAPP;pg for simpapp;RSSBT000
SB01;SIMPAPP;pg for simpapp;RSSBT001
SB02;SIMPAPP;pg for simpapp;RSSBT002
SB03;SIMPAPP;pg for simpapp;RSSBT003
INQ1;SIMPAPP;pg for simpapp;CUSTINQ1
PGA;SIMPAPP;pg for simpapp;PGA
programs.desc
#PROGRAM;GROUP;DESCRIPTION;LANGUAGE;EXECKEY;STATUS
RSSBT000;SIMPAPP;pg for simpapp;COBOL; ;ENABLED #the first program of transaction SA00
RSSBT001;SIMPAPP;pg for simpapp;COBOL; ;ENABLED
RSSBT002;SIMPAPP;pg for simpapp;COBOL; ;ENABLED
RSSBT003;SIMPAPP;pg for simpapp;COBOL; ;ENABLED
CUSTINQ1;SIMPAPP;pg for simpapp;COBOL; ;ENABLED
PGA;SIMPAPP;pg for simpap;COBOL; ;ENABLED
PG1;SIMPAPP;pg for simpapp;COBOL; ;ENABLED
PG2;SIMPAPP;pg for simpapp;COBOL; ;ENABLED
tranclasss.desc
TRCLASS1;SIMPAPP ; A tranclass bidon for tests; 1
TRCLASS2;SIMPAPP ; A tranclass bidon for tests; 2
ubbconfig
*RESOURCES
IPCKEY 43567
DOMAINID     KIXD      # <REGION>
MASTER KIXR     # <SUBREGION>
MODEL SHM
MAXACCESSERS 100
MAXSERVERS 50
MAXSERVICES 10000
LDBAL N
BLOCKTIME 30
*MACHINES
"tux5"
LMID=KIXR
APPDIR="/opt/oracle/art11gR1/Cics_RT/sample/sample_03"
TUXDIR="/opt/oracle/tuxedo11gR1"
TUXCONFIG="/opt/oracle/art11gR1/Cics_RT/sample/sample_03/config/tux/tuxconfig"
ENVFILE="/opt/oracle/art11gR1/Cics_RT/sample/sample_03/config/tux/envfile"
ULOGPFX="/opt/oracle/art11gR1/Cics_RT/sample/sample_03/LOGS/log/ULOG"
MAXWSCLIENTS=20
TLOGDEVICE="/opt/oracle/art11gR1/Cics_RT/sample/sample_03/sysfile/TLOG"
*GROUPS
DEFAULT: LMID=KIXR
# Applicative groups
TCP00 LMID=KIXR
GRPNO=1
GRP00
GRPNO=10
ENVFILE="/opt/oracle/art11gR1/Cics_RT/sample/sample_03/config/tux/envfile"
GRP01
GRPNO=11
ENVFILE="/opt/oracle/art11gR1/Cics_RT/sample/sample_03/config/tux/envfile"
GRP02
GRPNO=12
ENVFILE="/opt/oracle/art11gR1/Cics_RT/sample/sample_03/config/tux/envfile"
TMSNAME="TMS_ORA"
TMSCOUNT=2
OPENINFO="Oracle_XA:Oracle_XA+Acc=P/user/password+SesTm=600+LogDir=/opt/oracle/art11gR1/Cics_RT/sample/sample_03/LOGS/xa+DbgFl=0x20"
# OPENINFO="Oracle_XA:Oracle_XA+Acc=P/user/password+SqlNet=ORCL+SesTm=600+LogDir=/opt/oracle/art11gR1/Cics_RT/sample/sample_03/LOGS/xa+DbgFl=0x20"
*SERVERS
ARTTCPL SRVGRP=TCP00
SRVID=101
               CLOPT=" -- -M 4 -m 1 -L //tux5:43567 -n //tux5:43568 +H -1 -D"
ARTADM SRVGRP=GRP01
SRVID=10
MIN=1 MAX=1
               SEQUENCE=1
CLOPT="-o /opt/oracle/art11gR1/Cics_RT/sample/sample_03/LOGS/sysout/stdout_adm -e /opt/oracle/art11gR1/Cics_RT/sample/sample_03/LOGS/sysout/stderr_adm -r --"
ARTCNX SRVGRP=GRP01
SRVID=15
CONV=Y
MIN=1 MAX=1 RQADDR=QCNX015 REPLYQ=Y
CLOPT="-o /opt/oracle/art11gR1/Cics_RT/sample/sample_03/LOGS/sysout/stdout_cnx -e /opt/oracle/art11gR1/Cics_RT/sample/sample_03/LOGS/sysout/stderr_cnx -r --"
ARTSTRN SRVGRP=GRP02
SRVID=20
CONV=Y
MIN=1 MAX=1 RQADDR=QKIX110 REPLYQ=Y
CLOPT="-o /opt/oracle/art11gR1/Cics_RT/sample/sample_03/LOGS/sysout/stdout_strn -e /opt/oracle/art11gR1/Cics_RT/sample/sample_03/LOGS/sysout/stderr_strn -r -- -s KIXR -l SIMPAPP"
*SERVICES
DEFAULT: SVCTIMEOUT=0 TRANTIME=80
*ROUTING
Edited by: user522010 on Mar 27, 2012 11:20 AM
Edited by: user522010 on Mar 27, 2012 11:22 AM
Edited by: user522010 on Mar 27, 2012 11:33 AM

Similar Messages

  • Getting Error :- Only one instance of COBRAS Export can be running at a time

    Hi All,
    I was checking the Briefcase Mode help file and it mentions for Unity Conection
    that COBRAS will run multiple instances of itself – if you schedule multiple backups to fire up at the same time they will all run at the same time.
    However if I schedule multiple backups to fire at the same time then I get the error :- "Only one instance of COBRAS Export can be running at a time".
    This also happens if the COBRAS windows is left open and the scheduled backup starts in the background.
    http://www.ciscounitytools.com/Applications/General/COBRAS/Help/COBRAS_Briefcase/COBRAS_Briefcase.htm#_Toc276653845
    I am not sure if I am making a mistake in understanding the statement :- "COBRAS will run multiple instances of itself – if you schedule multiple backups to fire up at the same time" or do we need to add any switch like lot of other application need like /m etc in the field of the scheduled backups as I see as /silent switch for process to run in background automatically but none for multiple instances.
    I am attaching the screen shots of the errors I got when
    A.) I scheduled 2 backups to run at the same time and the COBRAS application window was open "COBRASExportCUC7.exe" was running  and no backup took place and got errors for both the scheduled backups.
    And
    B.) I scheduled 2 backups to run at the same time and the COBRAS application window was closed off and "COBRASExportCUC7.exe" was not running and one of the scheduled backups started to work and the other one gave error and didn't work
    Unity Connection in use :- Version 8.0.3.20000-18
    Cobras Export :- Version 1.0 Build 76
    Please Suggest.
    Regards,
    Prad
    (E-Mail :- [email protected])

    Yeah, I’m of two minds on that – on the one hand it’s bad style to have a scheduled application popping dialog boxes (especially if you’re running as an account you don’t log in as regularly) – one the other hand I did have some sites go a while not noticing backups were failing (due to a UNC not flying any longer after a server reconfig) – folks can be bad about checking log files or the event log for issues.  A pop up would pretty much guarantee they’d notice on next login at any rate.
    I think I may stitch in email notifications in COBRAS Export in the same way they’re in the User Data Dump so failures of scheduled backups would be noticed right away (big, bright email in your box saying “failed!” would do it). 
    Either way, I’ll update the help and make sure it fails quietly for now when I update some other items on the site middle of next week.
    Thanks for the report.

  • Allowing only ONE instance of a PDF to be open

    I'm trying to work out a new system for proofreading and commenting in our business using the Comment and Markup tools in Acrobat 8 Professional. I'd like to allow multiple users on a network to interact and markup a PDF easily. I'd like to make it so that one of two things can happen:
    a) Only one instance of a PDF can be opened at once on the same network. That is to say, if a user on one computer opens a PDF, another user on the network on a different computer cannot open that same PDF at all, until the first user has closed it. Also, I'm not sure if the functionality for this would be implemented in Acrobat or the operating system (Mac OS X 10.6, to be precise).
    b) Multiple users can open a PDF simultaneously, and markups and comments from all users are somehow saved.
    I'm sure it's more of a possibility for a) to happen, but perhaps I'm wrong. Anyway, I hope there is a solution out there! Thanks for all your help!

    George,
    Thank you for your helpful reply. It does appear that Shared Reviews is capable of providing our business exactly what we need in this regard. I have found that Acrobat 8 does support Shared Reviews, but it only does so with Network Folder locations and WebDAV folders as locations for comment servers. I know how to get to the process to set up Shared Reviews, but not how to designate or set up a folder as a comment server using Network Folders or WebDAV. Unless you just so happen to know about that process as well, I will post a new thread, since the problem of finding a solution has been solved, but the new problem of implementing it has risen.
    Although using Acrobat X Pro to share PDFs and collaborate automatically using Acrobat.com sounds mighty tempting...

  • How to restrict only one instance of web service running at a time

    Hi All,
    Have a requirement to ensure that only one instance of java web service is active at any point of time.
    Using Application Server 10.1.3.4. Not the soa suite.
    Thanks
    Saikrishna

    Thanks for the reply..
    I have a java web service that pulls up some files produced periodically from remote machine and uploads them to some doc mgmt system and then update the database that what files are uplaoded successfully so that during next run it will ignore those files.
    so, if my web service executes second time before completion of first run. It would pick files that were already processed by first run since the first run might have not updated the databse yet.
    Thanks
    Saikrishna

  • Instead of creating multiple Instances I want to create only one Instance.

    Hi Everyone
    Good morning, How are you.
    I have a requirement to transfer files from one location to another location, I am able to do this successfully using FTP Adapters.
    I have some Issues please help any one.
    1) When I deployed my process it is creating one instance for one file transfer, Suppose If I have 50 files in my Get
    directory, After deploy the process 50 instances are creating and 50 Email generating saying files are not tranfered successfully.
    Instead of creating 50 Instances I want to create only one Instance.
    2) When files are not transferd it will fire error mail saying that not success (I want to display all file names(not tranfered files) in my mail , i.e whatever files are not tranfered, need to diplay in mail).
    3) And I am not able to transfer 0 size files, But in BPEL Console Instance is creating for 0 size file also and I am getting Email for success... and In put directory 0 size file is not showing. (Instance is creating and Success Email coming but file is not exists in Put directory)
    Please help me.
    Regards
    Venkat
    Edited by: user10263255 on Oct 1, 2008 8:10 AM
    Edited by: user10263255 on Oct 1, 2008 9:15 AM

    Hi Dharmendra,
    Thanks for your reply.
    I am not able to see any thing about singleton process in mentioned URL.
    Can you please provide me the another URL or please paste here about singleton process .
    Thanks in Advance.
    Regards
    Venkat

  • PAR iView: Only one instance need to be opened by a user in a portal sessio

    Hi All,
      Please  let us know how to enforce only one instance of PAR iView is opened at a given time for a user.
    Regards,
    Gangadharayya.
    For Eg: let us say We have created PAR iview <b>A</b>. Once user <b>U</b> logs in to portal and opens A by clcking on iView link(Let us say that it opens in New Window).
            If U clicks once again on A iView link now , it is opening in one more new window.
           How to stop this scenario i.e. when user tries to open A once again, it should clsoe previous window or SOMETHING LIKE THAT

    Hi,
    How do you link to IView ? If you link with html like
    <a href="http://www.sap.com" target="_blank">SAP</a>
    try to use a target parameter
    <a href="http://www.sap.com" target="sap">SAP</a>
    If you link in this way,
    First time user clicks link,
    It opens new window
    If user clicks the link second time it just refreshes previous opened window.
    Regards
    Abdul.

  • Only one instance in a RAC will start at a time

    All:
    I have a 4 node Oracle RAC running on RHEL AS 4 64 bit. 10.2.0.1 64 Bit
    This DB was running just fine last week.
    Now all of a sudden only one instance will start.
    In the alert log I get an ORA-1102
    crsctl shows everything good
    srvctl show all node apps running
    srvctl shows all ASM instances running
    When the second instance starts the alert log shows the reconfiguration taking place.
    Then the second instance will die after getting an ORA-1102.
    I have tried deleting and re-adding all the instances with DBCA.
    ocrcheck comes back fine on all nodes.
    I have another RAC on the same set of HP Blades that is still hunky dorey so I don't know what is going on.
    Please help.

    Hi,
    check the value of cluster_database parameter
    it should be TRUE on all instances, also post ur alert log and trace file.
    Thanks
    Kuljeet

  • Best way to have only one  instance of an object in web application.

    Hello,
    I defined a class that provides services to my web application: subscribes user, check if user already subscrubed etc. The objects don't need to save any session information. So it is like a Stateless Session Bean (from what I've read about Session beans).
    The webapp is small and I don't want to use EJBs.
    What would be the best way to have one instance of the above class in my webapp ?
    Would making the class static be a good method ? Using a factory ?
    Is there a way to put in web.xml something that asks the container to instantiate an object that is not a servlet and place it in Application scope, so that I cann retrieve it whenever required in my app ?
    Other suggestions ?
    Thank you,
    Vlad.

    Hi
    The best way to have only one instance is use the singleton pattern. The idea is : the class has a private
    contructor, a public static method that returns an instance of this object and a static member that is false if not any instance and true if there si an instance.
    To obtain one instance you can do some like
    MyObject ob=MyObject.getIntance();
    this method inspect the static member and returns null if true. If false set to true and return the object
    via the private constructor.
    You can lear more at book of Gramma .... (gang of four)
    Hope this helps

  • Consumer Group/Resource Plan to use only one instance of a RAC

    What would be the way to create a Consumer Group/Resource Plan to use only one instance of a RAC? I have 10.1.0.5 database
    running on 10.1.0.5 RAC.
    Thanks,

    You should use "services" to limit workload to just one specific node of RAC:
    http://download.oracle.com/docs/cd/B14117_01/server.101/b10739/create.htm#sthref400

  • Only one of my fans are working on my macbook pro retina 13 inch late 2013 model. Is something wrong?

    It appears that only one of my fans are working on my macbook pro with retina display 13 inch late 2013 model. Is some thing wrong? if so how can i fix it?

    To my knowledge there is only one fan on all 13" Mac notebooks, Retina or standard screen. Not enough space for a second fan and no Discrete GPU to cool.
    So nothing is wrong.

  • Am i the only one who's imsg isnt working?

    am i the only one who's imsg isnt working?

    Mine works fine, and I suspect the majority of people are working fine as well.
    Usually if there's an outage, these forums are flooded with complaints.   None today.
    Also, check here:
    http://www.apple.com/support/systemstatus/

  • Ok one day out of the blue my ipod just stopped working it wouldnt turn on nothing but after recovering it, it's fine now but there is only one problem my screen wont work i can't do anything on it not even unlock it please someone help!!!!

    Ok one day out of the blue my ipod just stopped working it wouldnt turn on nothing but after recovering it, it's fine now but there is only one problem my screen wont work i can't do anything on it not even unlock it please someone help!!!!

    Try the following:
    - A reset. Nothing is lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup
    - Restore to factory settings/new iPod.
    If you still have the problem that indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order

  • It keeps saying " only one instance of this applictaion can run"

    I keep getting a message " only one instance of this application can run"

    http://forums.adobe.com/thread/1195540

  • Display only one instance if value is repeating

    hii everyone,
    i have a requirement i want to show following data
    no name
    1 a
    1 b
    1 c
    2 d
    2 e
    3 f
    3 g
    3 h
    in this form
    1 a
    b
    c
    2 d
    e
    3 f
    g
    h
    i.e if elements are reeating then show their only one instance
    i am using oracle 11g is there any way to write this on sqlplus??
    thanks

    Hi,
    810345 wrote:
    i am using oracle 11g is there any way to write this on sqlplus??The SQL*Plus command is
    BREAK   ON  noAfter you give this command, if the first column in the output is called no, then SQL*Plus will not show it if it is the same as the value on the line right above it.
    You may have noticed that this site noramlly compresses whitespace.
    Whenever you post formatted text (such as query output) on this site, type these 6 characters:
    \(small letters only, inside curly brackets) before and after each section of formatted text, to preserve spacing.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Only one sound at a time work

    Hi
    Installed arch linux a couple of days ago and got most stuff up and running. Altho one problem I just noticed it that I can only play one sound at a time. For example, if I have music playing from mpd I don't get any sound from youtube or from urban terror only the sound from mpd will be played. I've googled some, but don't really know what to search for
    If you do have a explanation please keep the reply simple as I am still learning
    Thanks in advance
    Last edited by farner (2009-02-24 12:25:54)

    test1000 wrote:
    this might be obvious but are you using intel? the youtube and urban terror/any mmap based game is normal.see http://wiki.archlinux.org/index.php/All … nd_at_once. also from the urban terror webpage: "Urban Terror 4.1 can run on Quake 3 Arena or on the free ioUrbanTerror." if you switch to iourbanterror the alsa issue is fixed. or else you have to start any urban terror with et-sdl-sound which only works on i686.
    edit: if you check the wiki first for stuff like this you usually get a faster response and you get to use your brain as a bonus to
    I actually googled my a* of and searched the wiki, but was unable to find that site. And I do have intel, however after reading
    In Linux, only one program can play a sound at a time unless you have a soundcard that supports hardware mixing (all/most onboard soundchips don't.)
    I decided to use my pci card (a creative audigy 2 ZS). I have been having trouble before getting it to work so I thought I would use my onboard card instead. But it was fairly easy this time
    (had to disable the onboard card in the bios and change the module to snd-emu10k1) and woops it worked
    Thanks for all the help
    Last edited by farner (2009-02-24 22:33:57)

Maybe you are looking for

  • MacBook Pro 15" (Late 2013) will not install Windows 8.1 Pro under Boot Camp?

    Have spent many hours trying to sort this out. I was told this morning in the end by a 'Senior Advisor' @ Apple that Boot Camp does not support Windows 8.1 Pro so effectively it seems like my only option for a new machine purchased earlier in the wee

  • Xlmplsql parser error - end of file in communication channel

    I receive: end of file in communication channel error while trying to parse big xml files (at about 50 KB). I am using plxmlparser_v1_0_2 with database 8.1.7. The xml and xsl files are stored in clob columns. When I parse smaller files everthing work

  • Downloading and installing Photoshop CS6 Extended

    Hi I purchased Adobe Photoshop CS6 Extended a year or so ago and I am trying to install it onto my new computer. My new computer doesn't have a disk drive so I am unable to insert the disk and I cannot find where to download CS6 on the website, I kee

  • Restoring a phone via recovery mode

    Hi If I upgrade a phone using recovery moody as a new phone, can I restore the apps from a previously saved backup in iTunes, or do I have to do a manual build again from the app store?

  • 11i and FastForward Rapid Implementation

    There doesn't seem to be any documentation for using FF/RI for 11i. Can anyone point me to set-up documentation (other than sales promotion material/literature)? We would like to avoid, if at all possible, having to cross reference every item/step ba