TBridge limitations: when there is an error, the message is put back in the source QSPACE

The "WebLogic Tuxedo Connector Administration Guide" (BEA WLS 6.1, December 19, 2001)
Chapter 5: "Configuring tBridge",
last section: "Limitations"
mentions: "when there is an error, the message is put back in the source QSPACE.
Assuming the QSPACE is corrupted or full, subsequent messages would be lost."
QUESTION: will be this limitation
(a single message having permanent errors will stay forever in the head of the fifo
queue -->
resulting in QSPACE full --> reulting in loss of all messages)
be solved in a future version ?
If YES, WHEN ?
thank you
Justin

See:
* [[Cannot log in to websites]]
Clear the cache and the cookies from sites that cause problems.
* "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
* "Remove the Cookies" from sites causing problems: Tools > Options > Privacy > Cookies: "Show Cookies"

Similar Messages

  • Can Rejected Messages to put back in the AQ?

    Hi,
    I am using version 10.1.3.3.
    I am trying to figure out a way to put rejected messages back in on the AQ. I have looked at the AQMessagesRejectionHandler sample. The sample contains the following code in the bpel.xml file:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <BPELSuitcase>
    - <BPELProcess id="AQMessageRejectionHandler" src="AQMessageRejectionHandler.bpel">
    - <partnerLinkBindings>
    - <partnerLinkBinding name="Dequeue">
    <property name="wsdlLocation">Dequeue.wsdl</property>
    </partnerLinkBinding>
    - <partnerLinkBinding name="Enqueue">
    <property name="wsdlLocation">Enqueue.wsdl</property>
    </partnerLinkBinding>
    </partnerLinkBindings>
    - <activationAgents>
    - <activationAgent className="oracle.tip.adapter.fw.agent.jca.JCAActivationAgent" partnerLink="Dequeue">
    <property name="portType">Dequeue_ptt</property>
    <property name="rejectedMessageHandlers">file://C:\product\10.1.3.1\OraBPEL\bpel/samples/tutorials/124.AQAdapter/AQMessageRejectionHandler/rejected queue://jdbc:oracle:thin:@localhost:1521:iasdb|scott/tiger|Rejected_Messages</property>
    </activationAgent>
    </activationAgents>
    </BPELProcess>
    </BPELSuitcase>
    In the Oracle® Adapters for Files, FTP, Databases, and Enterprise Messaging User’s Guide (10g Release 2 (10.1.2.)) I found the following documentation:
    <BPELSuitcase>
    <BPELProcess src="ErrorTest.bpel" id="ErrorTest">
    <activationAgents>
    <activationAgent
    className="oracle.tip.adapter.fw.agent.jca.JCAActivationAgent"
    partnerLink="inboundPL">
    <property name="rejectedMessageHandlers">
    file://C:/orabpel/samples/test/errorTest/rejectedMessages
    </property>
    My question is regarding the function of the line (in the sample):
    queue://jdbc:oracle:thin:@localhost:1521:iasdb|scott/tiger|Rejected_Messages
    Does this put the messages back on the AQ?
    If so, how do I change the path to my own queue?
    I am new to BPEL so please be as specific as possible.
    Thank you in advance

    Hi,
    Thank you for the response.
    Yes, you are right.
    My problem was one of using correct syntax.
    This is what I ended up with:
    <activationAgents>
    <activationAgent className="oracle.tip.adapter.fw.agent.jca.JCAActivationAgent" partnerLink="BusinessEventService">
    <property name="portType">Consume_Message_ptt</property>
    <property name="rejectedMessageHandlers">queue://jdbc:oracle:thin:@localhost:1521:iasdb|scott/tiger|Rejected_Messages</property>
    </activationAgent>
    </activationAgents>
    It seems to be working.

  • Timeout before connections are put back in the pool ?

    Hi,
    I am running a test with a single client : the test client send a requests,
    wait for the response and when it gets it send another request and so on.
    Looking at the connection pool, I can see that up to 8 DB connections
    (connection high column in the WL console) have been used during the test
    and I'm wondering why.
    Our code has the following logic :
    - get connection from pool
    - execute query
    - release connection (done in a finally block)
    We're 100% sure the connections get put back in the pool after each
    request. Is it possible that it would take some time before the connection
    is put back in the pool which would explain why we use more than 1
    connection ?
    Thanks
    -Vincent

    "Priscilla Fung" <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    All these attributes are for internal JDBC XA connection pool usages only.
    Their main purpose is to work around bugs of various vendor's JDBC XA
    drivers. Therefore, by default, it should be turned off. Also, they are
    only applicable for TxDataSource with a XA connection pool, not a regular
    connection pool.
    Which driver are you using?
    thanks Priscilla. Ok, so I won't mess with these parameters :-). Are you
    confirming that they have nothing to do with the following behaviour :
    1/ Start a transaction (entry of transaction-demarcated method)
    2/ get a connection from the pool ,
    3/ execute the query,
    4/ release the connection
    5/ get a connection from the pool ,
    6/ execute the query,
    7/ release the connection
    8/ commit the transaction (exit method)
    Then, the pool will show that 2 connections were used (and not one as I was
    expecting). Joseph confirmed to me that this behaviour was due to the fact
    that the connection is not recycled till the end of the transaction. I was
    wondering if it had anything to do with these parameters ?
    Thanks
    -Vincent
    Regards,
    Priscilla
    Vincent Massol <[email protected]> wrote in message
    news:[email protected]...
    Thanks Joseph. I would have thought that KeepXAConnTillTxComplete was
    controlling this behaviour (it is set to false). Isn't that so ? Do youknow
    where I could find information on :
    KeepXAConnTillTxComplete (currently set to false)
    NeedTxCtxOnClose (currently set to false)
    NewXAConnForCommit (currently set to false)
    XAEndOnlyOnce (currently set to false)
    Thanks
    -Vincent
    "Joseph Weinstein" <[email protected]> wrote in message
    news:[email protected]...
    Vincent Massol wrote:
    Actually, I forgot to mention that we using the following logic :
    1/ start transaction (enter method of session bean which is
    transaction
    enabled)
    2/ Perform several JDBC queries
    3/ commit transaction (exit of method)
    Thus, is it possible that because we're using a Tx DataSource and
    transactions, the DB connections from the pool are not recycled
    until
    the
    commit ?Absolutely.
    Also, I've found that there are some parameters related to XA :
    KeepXAConnTillTxComplete (currently set to false)
    NeedTxCtxOnClose (currently set to false)
    NewXAConnForCommit (currently set to false)
    XAEndOnlyOnce (currently set to false)
    As they are set to false, the connections shouldn't be reserved
    until
    the
    commit, right ?
    Can someone explain to me (or point me to some doc) where theseparameters
    are explained (I have looked a bit everywhere and couldn't find any
    information) ?
    Thanks
    -Vincent
    "Vincent Massol" <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    I am running a test with a single client : the test client send arequests,
    wait for the response and when it gets it send another request and
    so
    on.
    Looking at the connection pool, I can see that up to 8 DB
    connections
    (connection high column in the WL console) have been used during
    the
    test
    and I'm wondering why.
    Our code has the following logic :
    - get connection from pool
    - execute query
    - release connection (done in a finally block)
    We're 100% sure the connections get put back in the pool after
    each
    request. Is it possible that it would take some time before theconnection
    is put back in the pool which would explain why we use more than 1
    connection ?
    Thanks
    -Vincent
    B.E.A. is now hiring! (12/14/01) If interested send a resume to
    [email protected]
    DIRECTOR OF PRODUCT PLANS AND STRATEGY San Francisco,
    CA
    E-SALES BUSINESS DEVELOPMENT REPRESENTATIVE Dallas, TX
    SOFTWARE ENGINEER (DBA) Liberty
    Corner,
    NJ
    SENIOR WEB DEVELOPER San Jose, CA
    SOFTWARE ENGINEER (ALL LEVELS), CARY, NORTHCAROLINA San Jose, CA
    SR. PRODUCT MANAGER Bellevue, WA
    SR. WEB DESIGNER San Jose, CA
    Channel Marketing Manager - EMEA Region London, GBR
    DIRECTOR OF MARKETING STRATEGY, APPLICATION SERVERS San Jose, CA
    SENIOR SOFTWARE ENGINEER (PLATFORM) San Jose, CA
    E-COMMERCE INTEGRATION ARCHITECT San Jose, CA
    QUALITY ASSURANCE ENGINEER Redmond, WA
    Services Development Manager (Business Development Manager - Services)Paris, FRA; Munich, DEU
    SENIOR SOFTWARE ENGINEER (PLATFORM) Redmond, WA
    E-Marketing Programs Specialist EMEA London, GBR
    BUSINESS DEVELOPMENT DIRECTOR - E COMMERCE INTEGRATION San Jose, CA
    MANAGER, E-SALES Plano, TX

  • I am having troubles, when I open LR I get a message that there is an error and it will try to fix the error next time it opens, but I get the error next time it opens, and this is going on and on where I can not use LR, any suggestions?

    I am having troubles, when I open LR I get a message that there is an error and it will try to fix the error next time it opens. LR closes on it's own, I reopen it and get that same message next time it opens, and this is going on and on where I can not use LR, any suggestions? If I click on a different set of photos in the libary before I get that message I might or might not get the message next time it oipens, but I still can not get to those photos, and it is not just one or two but most of my photos. HELP!!!!
    Thanks
    Carol

    The first thing I would suggest is for you to go to the folder containing your catalog, using your system browser. There will be a folder that has the extension .lrdata. Delete that folder, and then try to start Lightroom. If that doesn't work, replace your catalog with your most recent backup.

  • Cannot overcome Exchange Server 2013 Install Error - "There was an error while running 'ldifde.exe' to import the schema file

    Hello,
    I am attempting to install Exchange 2013 on to a 2008R2 Server on a domain running 2008R2 DC's.  I have worked every error resolution I can find, but I can't get past this error.
    Error:
    The following error was generated when "$error.Clear();
    install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema27.ldf")
    " was run: "There was an error while running 'ldifde.exe' to import the schema file 'C:\Windows\Temp\ExchangeSetup\Setup\Data\schema27.ldf'. The error code is: 8224.
    Any assistance is appreciated.

    Are you running the installation from an ISO-file?
    If so, then copy the files (preferably
    Exchange 2013 w. SP1) to the local disk
    and run the install with elevated privileges.
    Martina Miskovic

  • HT1725 A rental movie stopped downloading and says there was an error. I am unable to get the download to resume.

    How can I resume a movie rental download when it has been interrupted and says there was an error?

    Getting used to changes in the finder. I finally did see the Adobe Patch installer and am able to update applications individually. Should be able to attend to the main apps I use w/o further difficulty. Thnx for the help.

  • Calling a subpanel, pops up in own window instead of sub panel when there is an error

    Hi all. I am working on my first real LV project for my company, and I am having some problems. The main one right now happens when I am trying to call a subVI into a subpanel. It shows up in the subpanel just fine when the program starts, but when there is an error in the error handler it skips over the invoke method and pops my subVI in its own window. Anyone have an idea on what I am doing wrong? I have included a picture of how I am trying to populate the subpanel.
    Attachments:
    subpanel.jpg ‏59 KB

    robot_mower_guy wrote:
    but when there is an error in the error handler it skips over the invoke method and pops my subVI in its own window.
    I assume you have an error handling case in your state machine.  So if an error happens in your error handler, you will have be passing that error around the shift register.  Yes, that will mean that the invoke node ot insert the VI will not run due  to the error.  You need to handle your error from the error handling state.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • I just received my i phone 4,inserted Amayim with 4G plan,but showing noservice and bar with emergency calls only screen.Also when i down loaded i tunes to my laptop (windows7) there is an error(9808) message saying i tunes store not supported completely.

    i just received my i phone 4,inserted Amayim with 4G plan,but showing noservice and bar with emergency calls only screen.Also when i down loaded i tunes to my laptop (windows7) there is an error(9808) message saying i tunes store not supported completely.

    first of all the iphone 4 is not a 4G phone
    second it sounds like your iphone could be locked to another operator then the sim you have inserted

  • Prevent save Message when there is an error

    Hi all,
    Please help me out here.
    I want to prevent saving a new Support Desk Message when there is an error in the message.
    Kind regards,
    Remy Piets

    Hey Remy,
    This can be achieved if you are ready to do some coding...
    U need to use implement BADI ORDER_SAVE..
    Within this BADI u can have your business validations done...
    If the Validations fails then you have to raise an exception DO_NOT_SAVE...
    This is satisfy your requirment.....
    Reward for usefull post...
    Regards,
    Anand........

  • Started a similar string before.  When I select a recipient in Messages on my Macbook Pro the name shows up in red and says the recipient is no longer registered on iMessage.  I know that they are registered.  Is there a problem with Contacts?

    Started a similar string before.  When I select a recipient in Messages on my Macbook Pro the name shows up in red and says the recipient is no longer registered on iMessage.  I know that they are registered.  Is there a problem with Contacts possibly.  The previous help has been appreciated but the problem persists.

    Hi,
    Try iMessaging your own iPhone and see if your account is actually logged in.
    It can appear "enabled" and On line but sometimes it is not.
    Also try sending from your iPhone (number) to your Apple ID and see if it gets to the Mac.
    If it does not use the Sign Out button.
    Then shut down the Mac
    On restart add back the Apple ID to the iMessages account settings.
    I also just checked My wife's iPhone as she popped up red.
    It turned out her iPhone did not have Messages On.
    10:00 pm      Tuesday; January 28, 2014
      iMac 2.5Ghz 5i 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • About the OS X Mavericks v10.9.5 Update i am trying to update this since yesterday but its saying there is an error in server "Can't connect to the Apple Software Update server.(-1003)" please help

    About the OS X Mavericks v10.9.5 Update i am trying to update this since yesterday but its saying there is an error in server "Can't connect to the Apple Software Update server.(-1003)" please advise with instructions how to update it...
    why i am not allowed

    Try running the combo update.
    10.9.5 Combo Update

  • HT201413 HOw can I update my phone when there is an error message!?

    My phone was updating - then there was an error - now I have no back ups and the only option is to restore factory defaults?!

    An error in updating does not delete backups. Identifying the error is important. See this support document to investigate the error. Resolve iOS update and restore errors - Apple Support

  • There was an error attempting to send your changes to the exchange server.

    iCal will no longer sync with my work Exchange calendar.
    I have deleted and added the account several times, but that is not working.
    I was getting messages about specific events not being synced with the server, but now I get the following message:
    "Calendar can't refresh with the account "RPD Exchange"
    There was an error attempting to send your changes to the exchange server"
    Any ideas?
    Thanks.

    Just hit this issue, with 10.10.2 Yosemite myself.  Simple to fix.  First Close iCal.  Then go to system preferences and open internet accounts.  Selected the Exchange account and turn off calendar.  Closes System preferences.  Now, from the finder, goto the GO menu, and hold down the option key.  While holding down the option key, you will see "Library" appear.  Click on this and it will open a finder window.  Then go to directory named Calendars. You will see a file called, Calendar Cache.  It should be a big file, depending on how much you have stored on your ical, maybe around 5 to 11 megs.  Move it to the trash can.  Then restart iCal.  iCal will crash the first time you open it due to the missing cache file.  Just hit ok and reopen it.  At this point iCal will reload all you accounts.  This can take a couple of minutes depending on how much info is there.  Most of the time you Exchange account will reload by its self, but only after all the iCloud events are rebuilt.  After iCal is back up and running go back to System Preference and make sure Exchange calendar is on.  Most of the time it will turn on by it's self.  Best of luck.

  • I have just owned a macbook pro and trying to learn things since i have all along used windows laptop. My first question is : when there are two files i am working together, one above the other on screen, how you switch over between the two with key ?

    I have just owned a macbook pro and trying to learn things since i have all along used windows laptop. My first question is : when there are two files i am working together, one above the other on screen, how you switch over between the two with key ?

    Hi...
    Mac OS X keyboard shortcuts
    Control-F4
    Move focus to the active (or next) window
    Shift-Control-F4
    Move focus to the previously active window
    By the way...  since you are new to Mac, click a clear space on your Desktop. You should see "Finder" top left corner of the screen in the menu bar.
    Click Help then click Help Center
    As an example type in    keyboard shortcuts
    You can use the Help menu for almost any application on your Mac.
    Apple - Find Out How - Mac Basics
    For held switching from PC to Mac >  Apple - Support - Switch 101

  • I allocated too much space on the Windows side when using bootcamp and want to take some space back for the Mac side is there any easy way to do this?

    I allocated too much space on the Windows side when using bootcamp and want to take some space back for the Mac side is there any easy way to do this?

    Purchase and use Paragon Camp Tune

Maybe you are looking for