Why does messages go into Recovery Callback Queue - urgent

Env : BPEL 10.1.3.4 , Web logic 9.2
Scenario:
We have a process(Lets say A) putting messages from into a MQ(lets say Q1).
Another Application processes the messages from Q1 and puts some messages into another Queue (Q2).
We have another process B (Lets say B) which reads from this Q2 and calls the Process A’s callback operation(using right correlation parameters) thus releasing “receive” acitivty of Process A and hence flow goes further.
Problem :
While the above scenario is working as expected for some cases(approx. 60%) we observed the following :
i)     A’s receive activity is still waiting to receive a callback from B.
ii)     All the instances where A is waiting for receive has gone to “Recovery Callback” and sits there. When we manually recover them , Process A’s receive gets executed and works as expected.
iii)     In some cases where the flow went successfully ( ie., receive receives the callback) , receive activity received the callback long time after the message is places in Q2. ( in some cases it is 9 to 10 hrs).
Questions:
i)     Why does instances go into “recover callback” ? What can we do to avoid this ? ( Kindly dont suggest ways to recover, I am looking for a preventive measure)
ii)     Process A's recieve activity sometimes receive the callback after some 9 hrs and the flow passes on. I am wondering how can this happen as "synchMaxTime" is set to 900 secs in our case ( 15 mins). I thought any instance waiting for more than 15 mins for callback should have got timedout. Is this setting only for synch calls ?
Few other things
1. The Process B listening to Q2 is having a delay between messages as 3.66 secs . This is to throttle messages coming so quick to bpel as it may not have sufficent threads to process all of them at a time.
2. synchMaxTime in the Domains = 900 s
3. JTA Timeout in weblogic server is 3000 seconds.
This is very urgent , Kindly help with any input / suggestion you have ASAP. Thanks.
Regards,
Sridhar.
Edited by: Sridhar-SOA on Jul 27, 2011 2:38 AM

Any Updates ?

Similar Messages

  • Why does Safari go into limbo when I try to search for some things?

         Why does Safari go into limbo when I try to search for some things? I start to enter something in the search window. I get a drop down with suggestion I choose one and it pops up in my search window but just turns a color and does nothing!
        If I quit Safari and bring it back up, then enter the exact same line it's fine. This is just one of the many problems I've been
    having with Safari since I installed Yosemite.
         Has anyone got any suggestions or is anyone having the same problem. Is there a way to maybe force my MacBook pro to reinstall Safari or possibly all of Yosemite. I seem to be having a lot of problems and judging by the responses I've received (That would be None) I must be the only one having any problem at all withYosemite. Not sure what to do.
         Any help or suggestions would be great
         Ron     

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled in OS X 10.9 or earlier, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Why does javadoc goes into an infinite loop

    at my dos prompt , in the same directory as my Page.java file, i type javadoc Page.java
    why does it go into an infinite loop? instead of producing any documentation
    it just says for example
    javadoc Page.java
    javadoc Page.java
    javadoc Page.java
    javadoc Page.java
    javadoc Page.java
    javadoc Page.java
    javadoc Page.java
    javadoc Page.java
    javadoc Page.java
    javadoc Page.java
    javadoc Page.java
    Stephen

    this is a sample page -- i'm using jdk 1.4 trying to run javadoc Tracer.class or javadoc Tracer.java or javadoc Tracer gives throws the console into an infinite loop with the statement being printed over and over again. But i haven't just noticed this problem with javadoc -- i noticed this problem with certain types of mistakes in the code rather than just displaying the compiler error -- it creates this infinite loop in the dos console window. any thoughts ?
    here is my version.
    java version "1.4.0"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-b92)
    Java HotSpot(TM) Client VM (build 1.4.0-b92, mixed mode)
    * Tracer.class logs items according to the following criteria:
    * 2 = goes to text file Crawler_log.txt
    * 1 = goes to console window because it is higher priority.
    * @author Stephen
    * @version 1.0
    * @since June 2002
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import java.text.*;
    class Tracer{
         public static void log(int traceLevel, String message, Object value)
              pout.write(getLogFileDate(new Date()) +" >" + message + " value = " + value.toString());
         public static void log(int traceLevel, String message )
              pout.write("HI HOW ARE YOU " ) ;
              pout.flush();
         //public static accessor method
         public static Tracer getTracerInstance()
              return tracerInstance;
         private static String getLogFileDate(Date d )
              String s = df.format(d);
              String s1= s.replace(',','-');
              String s2= s1.replace(' ','-');
              String s3= s2.replace(':','.');
              System.out.println("getLogFileDate() = " + s3 ) ;
              return s3;
         //private instance
         private Tracer(){
              System.out.println("Tracer constructor works");
              df = DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.MEDIUM);
              date                    = new java.util.Date();
              try{
              pout = new PrintWriter(new BufferedWriter(new FileWriter("Crawler_log"+getLogFileDate(new Date())+".txt", true)));
              pout.write("**************** New Log File Created "+ getLogFileDate(new Date()) +"****************");
              pout.flush();
              }catch (IOException e){
              System.out.println("**********THERE WAS A CRITICAL ERROR GETTING TRACER SINGLETON INITIALIZED. APPLICATION WILL STOP EXECUTION. ******* ");
         public static void main(String[] argz){
         System.out.println("main method starts ");
         Tracer tt = Tracer.getTracerInstance();
         System.out.println("main method successfully gets Tracer instance tt. "+ tt.toString());
         //the next method is where it fails - on pout.write() of log method. Why ?
         tt.log(1, "HIGH PRIORITY");
         System.out.println("main method ends ");
         //private static reference
         private static Tracer tracerInstance = new Tracer();
         private static Date date     = null;
         private static PrintWriter pout = null;
         public static DateFormat df = null;
    }

  • When I try to send a photo, why does it go into my outbox?

    When I try to send a photo, why does it go into my outbox?

    assuming you mean send a photo by email.
    a photo can be quite large and contain a lot of data. depending on your connection it can sometimes take a while to send. As long as a red exclamation doesn't appear it will send. the outbox indicates mail going out, hence outbox.

  • Why does message show as sent when the user is off...

    Why does message show as sent when the user is offline??
    After merging my Facebook and msn, I've been told by my Skype contacts, that whenever I'm offline, and they message me, it shows that I got the message. Just like I'm online.
    This is also happening to my other friends who have merged their accounts ;(....!!!!
    Please help, please! ;(...!!! I'm not hacked, I know, but it's happening even with other people who have merged the ACC....

    Hello Colin,
    The issue that you are describing is in fact a feature. You can learn more about the benefits of this feature by viewing the following  article: http://support.apple.com/kb/HT3679
    Spencer R
    AppleCare

  • On ipod touch why does imessage go into my email?

    on ipot touch why does imessage go into my email instead of imessage?

    - Try inserting and removing the headphone plug a dozen or so times.
    - Next try 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 defaults/new iPod
    If you still have the problem that indicates a hardware problem, like a bad headphone jack.

  • Why does Messages still send my txt via SMS when I have the "send as SMS" option turned off?

    Why does Messages still send my txt via SMS when I have the "send as SMS" option turned off?

    I haven't missed any point, but you don't get it.
    If people take "Send as SMS" being turned off as the iPhone shoiuld not be sending SMS messages without reading this text that is included below the option:
    Send as SMS when iMessage is unavailable. Carrier messaging rates may apply.
    They are idiots.
    But you're saying you have this other piece of information that tells you that this option only applies to two iphones exchanging txt.  Where did you obtain such information?
    Copied from my previous post.
    Under the Send as SMS option, the following is available:
    Send as SMS when iMessage is unavailable. Carrier messaging rates may apply.
    You should check available text below an option such as this so you know what it does.

  • Why does message say application components are missing when trying to open Photoshop?

    why does message say application components are missing when trying to open Photoshop?

    The probable causes are:
    A bad, or incomplete install
    Inability of the program to access the location of those components
    Deleted files, that are required for those components
    What is the exact text of the error message?
    Good luck,
    Hunt

  • HT1430 Why does message "your Apple ID has been disabled" show up /

    Why does message " your apple id has been disabled" when i try to update Apps?

    Because your Apple ID has been disabled.
    http://www.apple.com/emea/support/itunes/contact.html

  • Iphone 4s does not go into recovery mode

    My friend lost her passcode and got locked out. only solution was a recovery, i know all the steps and just did it to an ipad2 but this iphone is a little weird, instead of going into Recovery mode when connected to the computer while holding the home button, it goes into mass storage, and instead of the usual recovery mode thing on screen what comes up with this phone is the letters usb and battery levels. any ideas on how to restore?

    It doen't seem to be jailbroken i thought that it was because of what it did but even jailbroken phones go into dfu right? when the phone is on and i connect the usb cable it gives me "usb config" which is really weird it has a couple of options like mass storage, java storage. pictbridge. and another option which i think its something like mtp storage.it behaves as if it was just any other mass storage device. i will ask her tomorrow if it has been jailbroken. is there a utility that would restore it if it was jailbroken since itunes doesnt seem to recognize it at all.
    Thank you for your help.

  • Why does "message to _________ deleted" come up every time I try to text a certain person?

    Why is the only thing I recieve when I send a text to my friend "Message to _______ deleted"? I don't understand why it's doing that?

    It may be that your messages are set to automatically delete the messages after they are sent. Go into message then under settings   look to see if it says auto delete and change the program.

  • Why does Messages not list message threads by date/time even when selected?

    Every thread in messages list messages out of date/time order even when selected.  How does one correct this or get them in the order I want?  Thanks!! BF

    HI,
    This happened with the Messages Beta as well as the full version in Mountain Lion.
    In both cases if one device was Off line whilst a conversation was going on the sync process when the device was turned on  would not be instant.
    It would fill in (sync) more like an only slightly speeded up chat.
    Consequently  if you were moving from a iPhone conversation to the Mac and turned the Mac On your Contacts new IMs could be mixed up with the Sync info arriving.
    At the same time even though the whole IM sending thing is time stamped there appears to be no way that the App or the iPhone or the Mac can recognise the timing and move them into the right order.
    There seem to be more reports of the Mac being Off and not updating the conversation properly than there are iPhones doing the same.
    That could be done to this area being about the Messages app compared to the iPhone Area.
    It could also be down to the way people hold their conversations in the first place.
    i.e.  we know about it but it is outside our ability to suggest something that fixes this.
    For the points
    7:23 PM      Friday; October 19, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.2)
     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
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Why does insertion location into GridLayout differ based on inputs?

    Hello,
    I wrote a loop that inserts a run-time determined number of checkboxes into a GridLayout.
    For instance, if the user wants 5 checkboxes (decided at run-time), then the program creates 5 new checkboxes and inserts them into a (5 rows, 1 col) grid.
    The checkboxes appear correctly as 5 rows and 1 column.
    However, if the user wants a lot of checkboxes, (ex: user wants 10 checkboxes), then the program inserts the checkboxes in the wrong order.
    Instead of
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    It inserts like this:
    1 2
    3 4
    5 6
    7 8
    9 10
    Notice how the checkboxes appear in a (5 row x 2 column) grid.
    I dont know why the exact same lines of code [code that generates a (user defined number of rows x 1 column)] create two different layouts based on the size of the input.
    I ONLY want to have ONE column, no matter how many lines of input. I put a JScrollPane on the panel that has the GridLayout because the i know that a lot of checkboxes wont be able to fit entirely on that one little section that has the GridLayout panel.
    Can anyone explain why the output differs based on the input?

    The following quote from the API documentation for GridLayout may help you understand what's happening:
    "When both the number of rows and the number of columns have been set to non-zero values, either by a constructor or by the setRows and setColumns methods, the number of columns specified is ignored. Instead, the number of columns is determined from the specified number or rows and the total number of components in the layout. So, for example, if three rows and two columns have been specified and nine components are added to the layout, then they will be displayed as three rows of three columns. Specifying the number of columns affects the layout only when the number of rows is set to zero."

  • Whys does Messages app freeze in Mountain Lion?

    Whenvever I click the app it take really long to respond and whenever I write a message and press Return the rainbow wheel shows up and it take a good minute or so to respond again. It also shows the rainbow wheel after recieveing messages. This is very annoying I tried to run just the Messages app and finder but it still does that. If anyone knows how to solve this problem, please help.

    HI,
    I would also ask which message service this is over ?
    iMessages may be slow from time to time depending on how busy the server is (noting many new devices being registered and an holiday increase in People messaging anyway).
    You may be using Jabber server that is popular such and the GoogleTalk or Facebook ones.
    I would not expect a delay using an AIM or AIM valid name.  (They sold off ICQ  which gave them lots of Bandwidth)
    I would also ask what Font you have chosen to Send Messages in and what, if any, Incoming Override Font you are using ?
    I would check in the Font Book whether the chosen Fonts are active.
    9:34 PM      Monday; December 31, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.2)
     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
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Why does Messages app automatically start whenever I receive an imessage?

    I'm using my mac to try and get some work done, and as a result have apps such as messages closed (I'm trying to focus.) I even have pop-up notifications disabled in the notification center. However, whenever I receive an imessage messages.app automatically opens itself, disrupting my concentration. How can I disable this behavior?

    Hi,
    Can you check that imagent (it will be lower case) is running in the Activity Monitor (Applications/Utilities) ?
    If you have NOT set the option in Messages > Preference > General Section to Be Off-line On Quit then IMAgent should start up when the computer does.
    If it have been Force Quit then it should also restart if FaceTime or Messages is started up.
    If the .plist has been removed it should be recreated from defaults within the app(s) when the app if started up again.
    8:22 PM      Monday; October 29, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.2)
     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
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

Maybe you are looking for