Pending Messages Resulting in Application halt.

We developed a JPD which subscribes to a JMS Event. While another application sends messages to this application, we saw the messages getting stuck in queue and we also saw that count of pending messages going high and then at one point the application halted.
          Has anyone face similar problem or know something about it. Please reply.

I found my problem and thought I would post it in case anyone else has the same problem.
I created synchronous stateless processes in the beginning. Later on I added clean up methods to the end of my processes, after the response node. I didn't think it would work after the response node but it did so I left. Unbeknownst to me, the processes had been changed to stateful processes by adding this cleanup node AFTER the response. This for some reason would leave messages in the pending state.
When I moved the cleanup method before the return, it went back to stateless and no pending messages.

Similar Messages

  • Pending messages in queue consume cache and result slow processing

    Hi All
              I have one stand alone java application which is consumer of one weblogic JMS queue.
              What my application does, it take big messages in to xml format and convert it in to small chunk of xml using XSLT.
              Here I am struggling with one major problem when I sent 10 messages all together all messages went in to pending queue and as application process only one messages at a time, there for other messages waste the cache and processing become slow.
              If I send same 10 messages one by one after completion of last messages total time to process 10 messages is very less then compare to if I sent all together.
              Is there any web logic setting I can do so only one messages goes in to pending queue.

    Ali,
    How about this:
    142# imsimta qm dir | grep '^ *[0-9]' | wc -l
          14I don't know that it's significantly better, but "qm" generates only a single line of output per message whereas "cache" provides like 10/message.
    Bill

  • JMS with pending message

    In the WLS7 domain, there are MDB, EJB and startup class.The startup class need
              30 seconds. MDB & EJB are all depend on
              the result from the startup class.
              When restart the domain with pending messages,
              1.whether by default MDB processes the
              pending message before startup class finishs running?
              2. is it possible to let MDB wait until startup class finishs?
              Regards,
              David
              

    Setting "start-mdbs-with-application" to false in
              weblogic-application.xml would start mdb's after
              opening the listen port (at the very end of the
              server boot).
              David wrote:
              > In the WLS7 domain, there are MDB, EJB and startup class.The startup class need
              > 30 seconds. MDB & EJB are all depend on
              > the result from the startup class.
              > When restart the domain with pending messages,
              > 1.whether by default MDB processes the
              > pending message before startup class finishs running?
              > 2. is it possible to let MDB wait until startup class finishs?
              >
              > Regards,
              > David
              

  • How to find the number of pending messages in a Queue

    All,
    Is there a way to find the number of pending messages in a given QUEUE to be picked by the queue reader?
    My reader is not picking all the messages as many sent by my writer, i am not sure where they are getting lost? or if the JMS implementation is buffering them and does not flush until it does not have enough to throw out ( which any way does not make sense!!).
    Please help.
    Chandra

    You're right in thinking that the behaviour you describe looks wrong.
    Take a look at the QueueBrowser interface which can be used to inspect a queue. You get one using QueueSession.createBrowser(Queue). The QueueBrowser allows you to scan a queue without consuming the messages. However note that the state of the queue may change while you're observing it through the QueueBrowser so what you see might not always be a 100% accurate representation of the queue at any given time.
    Other things to check:
    - message selectors - are you setting a message selector on your queue receiver which is resulting in not all of the messages 'matching'.
    - expired messages - are you setting a time-to-live on the messages that you publish.
    Hope this helps,
    David Ingham
    http://www.arjuna.com

  • Why are there pending messages that can't be consumed?

    Hi all,
    I am using Glassfish with a self made monitoring/stress-testing application.
    In this app I can define consumers and producers, so I can somehow see the behavior of the system under many different conditions.
    But something odd is happening: there are always 1000~2500 messages that I can see that they are there but I can't consume them. I have checked in my admin console and they are shown in the
    "Number of Messages Pending Acknowledgment - Current number of messages being held in memory and persistent store pending acknowledgment".
    Why they are pending acknowledgment? I sent them in the same way I did all others, and they all worked.
    I found this link, they are all having similar problems, but they are using ActiveMQ. http://fusesource.com/forums/thread.jspa?threadID=1060
    Could anyone help me to find out why this can be happening?
    Edit: Could it be that the acknowledgement of a consumer is not getting back to the queue and the queue is reserving the message to that consumer, so nobody else can consume it?
    Tks,
    Oscar
    Edited by: 808621 on 6/Jan/2011 2:02
    Edited by: 808621 on 6/Jan/2011 2:47

    Hi!
    Thanks you both for the answer. I just figure it out with help of your replies: I was using many threads to consume the messages, but these threads were sharing the same "MessageConsumer" object, what was causing the pending messages. Once I changed to have one MessageConsumer per thread, it worked.
    Thanks you both for the help :)
    Oscar

  • JMS messages stuck as Pending messages

              Hi.
              I am trying to write an application to process huge amounts of data. I try to
              process around 1,000, 000 messages [java objects] using a single queue and 8 MDB.
              The strange thing is that in the end there are always 10 messages stuck in the
              pending message category.
              I can also observe that a weblogic thread is stuck. [can see it in the console]
              The stuck thread current description is something like "Connectio27.Session28".
              I have tried to use the QueueConnectionFactory from a EJB using resource reference
              instead of fetching it directly. Even this has not helped. I guess the problem
              is that while loading the messages onto the queues, one of the threads gets stuck
              somewhere.
              I am sing MDB's for processing. There doesnot seem to be any problems on the MDB
              side.
              If I reboot the server the 10 messages get processed successfully.
              Any ideas will be highly appreciated.
              -Sharma
              

    if you waited for a minute or so between each threaddump, it definitly
              sounds like an issue around the database query not returning or there is too
              much data being returned.
              sree
              "Ghanshyam Sharma" <[email protected]> wrote in message
              news:40e2d9d6$1@mktnews1...
              >
              > Hmm, I didnt wait too much between thread dumps. Probably a minute or two.
              >
              > Let me check the oracle stuff.
              >
              > Thanks a Lot.
              >
              > -Sharma
              >
              > "sree bodapati" <iwillreply@thenewsgroups> wrote:
              > >Threaddumps dont seem to show much except for it looks like both execute
              > >thread 13 and 12 are stuck reading from oracle , you may want to see
              > >what
              > >query is being sent to oracle by instrumenting you MDB code see that
              > >query
              > >properly returns. The threads are runnable but they dont seem to move
              > >, what
              > >was the duration between each thread dump ?
              > >
              > >/
              > >sree
              > >
              > >
              > >"Ghanshyam Sharma" <[email protected]> wrote in message
              > >news:40e2ce39$1@mktnews1...
              > >>
              > >> Hi Tom.
              > >>
              > >> I am attaching a thread dump of the server on windows, when I have
              > >20
              > >messages
              > >> stuck as pending with MDB's having not-supported transaction attribute.
              > >>
              > >> I hope this helps in debugging the problem. Please let me know if
              > >something is
              > >> needed.
              > >>
              > >> Thanks everyone.
              > >> -Sharma
              > >>
              > >>
              > >> Tom Barnes
              >
              ><[email protected].bea.com>
              > >> wrote:
              > >> >As I wrote below, a thread-dump of the WL Server that hosts
              > >> >the stuck MDB might help explain things.
              > >> >
              > >> >Sharma wrote:
              > >> >
              > >> >> Hm, this is confirmed. I pumped in one million messages a few time
              > >> >with and without
              > >> >> file stores to differe the performance, but every time I get a clean
              > >> >slate :)
              > >> >>
              > >> >> Looks like having required transaction attribute somehow removes
              > >this
              > >> >problem.
              > >> >>
              > >> >>
              > >> >> But still I do not understand why messages were getting stuck with
              > >> >not-supported
              > >> >> attribute. Tom is it possible to understand this. The
              > >phenomenon/Reason
              > >> >behind
              > >> >> this may show up somewhere else :)
              > >> >>
              > >> >> -Sharma
              > >> >>
              > >> >> Tom Barnes
              >
              ><[email protected].bea.com>
              > >> >> wrote:
              > >> >>
              > >> >>>The default is no transactions. I also find it curious
              > >> >>>that this helps. I wonder if tx timeouts are helping here...
              > >> >>>
              > >> >>>Sharma wrote:
              > >> >>>
              > >> >>>
              > >> >>>>Surprisingly I could process all one million messages if I
              configure
              > >> >>>
              > >> >>>the MDB's
              > >> >>>
              > >> >>>>as folowing.
              > >> >>>>
              > >> >>>>Default-transaction=required
              > >> >>>>Transaction-typr=container
              > >> >>>>
              > >> >>>>When I was getting the problem, I had nothing for these settings.
              > >> >I
              > >> >>>
              > >> >>>do not know
              > >> >>>
              > >> >>>>what is the default, probably Not-supported ???
              > >> >>>>
              > >> >>>>Let me try my testing a few times and than confirm to you guys.
              > >> >>>>
              > >> >>>>Tom Barnes
              >
              ><[email protected].bea.com>
              > >> >>>>wrote:
              > >> >>>>
              > >> >>>>
              > >> >>>>>Since you narrowed the problem down to the MDB side, can
              > >> >>>>>post a thread dump of the server when it is stuck? That
              > >> >>>>>might help diagnose the problem.
              > >> >>>>>
              > >> >>>>>Ghanshyam Sharma wrote:
              > >> >>>>>
              > >> >>>>>
              > >> >>>>>
              > >> >>>>>>Infact The thread which is stuck is not the loader/message
              producer
              > >> >>>>>
              > >> >>>>>thread. It
              > >> >>>>>
              > >> >>>>>
              > >> >>>>>>is a thread handling message driven beans. My producers end up
              > >populating
              > >> >>>>>
              > >> >>>>>the
              > >> >>>>>
              > >> >>>>>
              > >> >>>>>>JMS correctly.
              > >> >>>>>>
              > >> >>>>>>This is 81sp02.
              > >> >>>>>>-Sharma
              > >> >>>>>>
              > >> >>>>>>"Ghanshyam Sharma" <[email protected]> wrote:
              > >> >>>>>>
              > >> >>>>>>
              > >> >>>>>>
              > >> >>>>>>>Hi.
              > >> >>>>>>>
              > >> >>>>>>>I am trying to write an application to process huge amounts
              > >of
              > >> >data.
              > >> >>>>>>>I try to
              > >> >>>>>>>process around 1,000, 000 messages [java objects] using a single
              > >> >>>
              > >> >>>queue
              > >> >>>
              > >> >>>>>>>and 8 MDB.
              > >> >>>>>>>The strange thing is that in the end there are always 10
              messages
              > >> >>>
              > >> >>>stuck
              > >> >>>
              > >> >>>>>>>in the
              > >> >>>>>>>pending message category.
              > >> >>>>>>>
              > >> >>>>>>>I can also observe that a weblogic thread is stuck. [can see
              > >it
              > >> >in
              > >> >>>>>
              > >> >>>>>the
              > >> >>>>>
              > >> >>>>>
              > >> >>>>>>>console]
              > >> >>>>>>>The stuck thread current description is something like
              > >"Connectio27.Session28".
              > >> >>>>>>>
              > >> >>>>>>>I have tried to use the QueueConnectionFactory from a EJB using
              > >> >resource
              > >> >>>>>>>reference
              > >> >>>>>>>instead of fetching it directly. Even this has not helped. I
              > >guess
              > >> >>>>>
              > >> >>>>>the
              > >> >>>>>
              > >> >>>>>
              > >> >>>>>>>problem
              > >> >>>>>>>is that while loading the messages onto the queues, one of the
              > >> >threads
              > >> >>>>>>>gets stuck
              > >> >>>>>>>somewhere.
              > >> >>>>>>>
              > >> >>>>>>>I am sing MDB's for processing. There doesnot seem to be any
              > >problems
              > >> >>>>>>>on the MDB
              > >> >>>>>>>side.
              > >> >>>>>>>
              > >> >>>>>>>If I reboot the server the 10 messages get processed
              successfully.
              > >> >>>>>>>
              > >> >>>>>>>Any ideas will be highly appreciated.
              > >> >>>>>>>-Sharma
              > >> >>>>>>
              > >> >>>>>>
              > >> >>
              > >> >
              > >>
              > >
              > >
              >
              

  • Pending Messages waiting for Client Acknowledgement

              Hi,
              I have tried to search the Internet for an answer to this question but failed.
              Any clue???
              I have setup a queue on BEA WLS 7.4. I have four consumers which connect concurrently
              to dequeue messages. Each of the consumers serve as a proxy to other clients
              waiting for the messages.
              The proxy application (consumer) is developed such that it will send the client_acknowledge
              to the Q manager after it finishes processing the received message and sends it
              successfully to the external client.
              I noticed that in some exceptional cases which I cannot reproduce, the proxy application
              would fail to send the message to client and therefore wouldn't send the client_acknowldege.
              Although I tried to catch all possible exceptions, i cannot catch this single
              exception that causes my proxy to continue processing the messages in a proper
              way. The problem is that I end up with some Pending Messages on the queue which
              cannot be available to other consumers and would stay that way till the consumer
              that was attempting to dequeue it is killed.
              Isn't there any way to configure an expiry period for this client_acknowledge
              wait state??? In other words, is it possible to configure a time after which
              the JMS provider would no longer be waiting for the client_acknowledge and sends
              the pending message back to the Q in a state that makes it available to other
              consumers.
              

    Sorry. Once a message has been received in "CLIENT_ACKNOWLEDGE" mode, it
              remains pending and unavailable to other consumers until either the consumer
              is closed, acknowledge is called, or the client disconnects.
              Have you tried using a transacted session? In that case, the transaction
              will time out eventually, which will roll back the transaction and make the
              message visible again. You can control the length of this timeout using the
              "TransactionTimeout" parameter on the JMS connection factory.
              greg
              "Muhannad" <[email protected]> wrote in message
              news:[email protected]...
              >
              > Hi,
              > I have tried to search the Internet for an answer to this question but
              failed.
              > Any clue???
              >
              > I have setup a queue on BEA WLS 7.4. I have four consumers which connect
              concurrently
              > to dequeue messages. Each of the consumers serve as a proxy to other
              clients
              > waiting for the messages.
              >
              > The proxy application (consumer) is developed such that it will send the
              client_acknowledge
              > to the Q manager after it finishes processing the received message and
              sends it
              > successfully to the external client.
              >
              > I noticed that in some exceptional cases which I cannot reproduce, the
              proxy application
              > would fail to send the message to client and therefore wouldn't send the
              client_acknowldege.
              > Although I tried to catch all possible exceptions, i cannot catch this
              single
              > exception that causes my proxy to continue processing the messages in a
              proper
              > way. The problem is that I end up with some Pending Messages on the queue
              which
              > cannot be available to other consumers and would stay that way till the
              consumer
              > that was attempting to dequeue it is killed.
              >
              > Isn't there any way to configure an expiry period for this
              client_acknowledge
              > wait state??? In other words, is it possible to configure a time after
              which
              > the JMS provider would no longer be waiting for the client_acknowledge and
              sends
              > the pending message back to the Q in a state that makes it available to
              other
              > consumers.
              

  • Messages moving to Pending message state

              Hi
              Using: Weblogic 7.0 with SP2
              1. We have an Application server communicating with a JMS Hub that has a two server
              cluster. This server has an MDB configured dually - one MDB definition listening
              to each of the two physical queues of a virtual queue.
              2. A client writes a message to the virtual queue (causing it to be picked up
              by one of the physical queues). The client exits. I verify that the message actually
              lands up in one of the physical queues using console.
              3. I start the App server, and immediately the message moves to 'Messages Pending'
              column.
              4. The onMessage() of my MDB does not get called at all - I have a log in the
              first line of onMessage() that I do not see.
              5. Any further attempt by the client to put messages into the queue causes it
              to move over to the pending message state as long as the app server is up.
              Any ideas? Thanks bunch in advance.
              Here are the relevant ejb-jar and weblogic-ejb-jar.xml snippets:
              ejb-jar.xml:
                   <message-driven>
                        <ejb-name>AcqPoolClosingResponseMDB</ejb-name>
                        <ejb-class>com.fanniemae.core.sec.packetization.acq.ejb.AcqPoolClosingResponseMDB</ejb-class>
                        <transaction-type>Container</transaction-type>
                        <acknowledge-mode>Auto-acknowledge</acknowledge-mode>
                        <message-driven-destination>
                             <destination-type>javax.jms.Queue</destination-type>
                        </message-driven-destination>
                   </message-driven>
                   <container-transaction>
                   <method>
                   <ejb-name>AcqValidationResponseMDB.OOPSResponseQueue</ejb-name>
                   <method-name>*</method-name>
                   </method>
                   <trans-attribute>NotSupported</trans-attribute>
                   </container-transaction>
              weblogic-ejbjar.xml:
                   <weblogic-enterprise-bean>
                        <ejb-name>AcqPoolClosingResponseMDB.LoanSetupQueue</ejb-name>
                        <message-driven-descriptor>
                             <pool>
                             <max-beans-in-free-pool>10</max-beans-in-free-pool>
                             <initial-beans-in-free-pool>1</initial-beans-in-free-pool>
                             </pool>
                        <destination-jndi-name>LoanSetupQueue@SecJmsHub-jms04-1</destination-jndi-name>
                        <initial-context-factory>weblogic.jndi.WLInitialContextFactory</initial-context-factory>
                        <provider-url>t3://dcore-ap04:7159</provider-url>
                        </message-driven-descriptor>
                        <jndi-name>ejb/AcqPoolClosingResponseMDB</jndi-name>
                   </weblogic-enterprise-bean>
              

    Hi Srikant,
              I'm somewhat familiar with "core". The "ejb-class" gives
              you away. :-) I'm not sure what the problem is, but here
              are some things you can try:
              Item number one. The conflicting
              descriptor combo of "container" managed transaction and
              "not-supported" may be the issue. For container
              managed transactions in an MDB, I think the assembly-descriptor
              for the onMessage method should be set to "Required" in
              addition to setting the transaction type to "Container":
              <container-transaction>
              <method>
              <ejb-name>......</ejb-name>
              <method-name>onMessage()</method-name>
              </method>
              <trans-attribute>Required</trans-attribute>
              </container-transaction>
              If you don't want container managed transactions, do not
              specify a "transaction-type" of "Container".
              Item number two. The ejb-name field in container-transaction
              does not match the the ejb-name field in message-driven.
              Furthermore, with container managed transactions
              the acknowledge-mode is ignored so it need not be set.
              Item number three. It is possible that your MDB app
              is throwing a runtime exception before it hits your
              onMessage trace statement. This would cause the MDB container
              to roll-back the tx. The message will then remain
              in a pending state if it is immediately redelivered
              or if there is a redelivery delay configured.
              Hope this helps,
              Tom, BEA
              Srikanth Meenakshi wrote:
              > Hi
              >
              > Using: Weblogic 7.0 with SP2
              >
              > 1. We have an Application server communicating with a JMS Hub that has a two server
              > cluster. This server has an MDB configured dually - one MDB definition listening
              > to each of the two physical queues of a virtual queue.
              >
              > 2. A client writes a message to the virtual queue (causing it to be picked up
              > by one of the physical queues). The client exits. I verify that the message actually
              > lands up in one of the physical queues using console.
              >
              > 3. I start the App server, and immediately the message moves to 'Messages Pending'
              > column.
              >
              > 4. The onMessage() of my MDB does not get called at all - I have a log in the
              > first line of onMessage() that I do not see.
              >
              > 5. Any further attempt by the client to put messages into the queue causes it
              > to move over to the pending message state as long as the app server is up.
              >
              > Any ideas? Thanks bunch in advance.
              >
              > Here are the relevant ejb-jar and weblogic-ejb-jar.xml snippets:
              >
              > ejb-jar.xml:
              >      <message-driven>
              >           <ejb-name>AcqPoolClosingResponseMDB</ejb-name>
              >           <ejb-class>com.fanniemae.core.sec.packetization.acq.ejb.AcqPoolClosingResponseMDB</ejb-class>
              >           <transaction-type>Container</transaction-type>
              >           <acknowledge-mode>Auto-acknowledge</acknowledge-mode>
              >           <message-driven-destination>
              >                <destination-type>javax.jms.Queue</destination-type>
              >           </message-driven-destination>
              >      </message-driven>
              >
              >
              >      <container-transaction>
              >      <method>
              >      <ejb-name>AcqValidationResponseMDB.OOPSResponseQueue</ejb-name>
              >      <method-name>*</method-name>
              >      </method>
              >      <trans-attribute>NotSupported</trans-attribute>
              >      </container-transaction>
              >
              > weblogic-ejbjar.xml:
              >
              >      <weblogic-enterprise-bean>
              >           <ejb-name>AcqPoolClosingResponseMDB.LoanSetupQueue</ejb-name>
              >           <message-driven-descriptor>
              >                <pool>
              >                <max-beans-in-free-pool>10</max-beans-in-free-pool>
              >                <initial-beans-in-free-pool>1</initial-beans-in-free-pool>
              >                </pool>
              >           <destination-jndi-name>LoanSetupQueue@SecJmsHub-jms04-1</destination-jndi-name>
              >
              >           <initial-context-factory>weblogic.jndi.WLInitialContextFactory</initial-context-factory>
              >           <provider-url>t3://dcore-ap04:7159</provider-url>
              >           </message-driven-descriptor>
              >           <jndi-name>ejb/AcqPoolClosingResponseMDB</jndi-name>
              >      </weblogic-enterprise-bean>
              >
              >      
              

  • JMS message from one application to the another appl in the same container?

    I have a question.
    Can I send JMS message from one application to the another application in the same container?
    If yes ...can you provide me info.
    I want to know in regards of EJB2.0 and EJB3.0.
    Thanks,
    Rahul

    So the receiver application is a Message Driven Bean, right?
    In your container, do you have a mean to ensure that it is correctly configured to listen the desired destination? Like an administrative console that would show the destinations, the number of pending messages, the number of active consummers...?
    btw what is the destination type? A queue or a topic?

  • Pending Messages in Dispatcher Queues

    We have a jpd that calls a couple of "helper" jpd's while handling a request.
    I noticed for every request to the main jpd the total number of JMS messages in the dispatcher queue goes up by 6, but half (3) are in the pending state.
    The pending messages just grow and grow as the application is used until the server runs out of memory. It appears these pending messages are kept in memory.
    I have read about the conditions that cause messages to stay in pending, but I'm not sure which of these conditions applies in my case. Any ideas why I'm getting pending messages, or how I could find out?
    Thanks.

    I found my problem and thought I would post it in case anyone else has the same problem.
    I created synchronous stateless processes in the beginning. Later on I added clean up methods to the end of my processes, after the response node. I didn't think it would work after the response node but it did so I left. Unbeknownst to me, the processes had been changed to stateful processes by adding this cleanup node AFTER the response. This for some reason would leave messages in the pending state.
    When I moved the cleanup method before the return, it went back to stateless and no pending messages.

  • No "Entire Message"-results, though Spotlight does work

    Hello everybody,
    I encounter problems with the search-function of mail.app, because searching the entire messages results in a blank page. I searched through these discussion-groups before and finally got Spotlight to finding my messages again, using the re-indexing-function. But Mail does not to take notice of that. Again, no results! Searching for title, recipient etc works like a charm.
    Seems like Mail and Spotlight are not working together anymore.
    Please help me as it is really awkward not to be able to search within Mail, but having to take the detour with spotlight.
    Hauke

    I even disabled all plugins (though I did not install any)
    and then enabled them again
    What do you mean?
    Is there maybe a program that should run and that doesn't on my mac?
    Actually, what I was looking for is the opposite, i.e. some piece of software you could have installed that could be interfering with Mail.
    BTW, the actual list of processes running on your system is larger than you posted. You can see the full list choosing All Processes instead of My Processes in Activity Monitor (don’t post it).
    Try this to determine the scope of the problem:
    1. Go to Apple Menu > System Preferences > Accounts, and create a new user account for testing purposes.
    2. Either log out of your main user account or just quit Mail so that it does not interfere with the other user account.
    3. Log in as the newly created user and set up Mail anew there.
    4. If this is a POP account, go to Mail > Preferences > Accounts > Advanced and disable Remove copy from server after retrieving a message if it’s enabled.
    5. Check whether the problem also happens when logged in as another user.
    If the problem is system-wide, another thing to try would be reinstalling the Combo Update for the type of computer and the version of Mac OS X you’re using, unless this is the version of Mac OS X that came with your computer:
    About the Mac OS X 10.4.8 Combo Update
    Mac OS X 10.4.8 Combo Update for PPC
    Mac OS X 10.4.8 Combo Update for Intel
    Take a look at the following articles for guidelines on how to properly install system updates:
    Troubleshooting installation and software updates
    Installing software updates
    Basically, you should verify/repair the startup disk before installing the update, no applications should be running while installing it, and you may experience unexpected results if you have third-party system software modifications (not normal applications) installed.

  • I am trying to open my iTunes on a Windows XP laptop and get the error message 42404 "iTunes application could not be opened.  Please repair or reinstall QuickTime".  I did that and it did not help.  Any ideas?

    I am trying to open my iTunes on a Windows XP laptop and get the error message 42404 "iTunes application could not be opened.  Please repair or reinstall QuickTime".  I did that and it did not help.  Any ideas?

    Let's see if a more rigorous uninstall/reinstall procedure gets us past that, nancy. See the following troubleshooting document:
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP

  • Having problems with Bridge shutting down after saving photo in PS Cs5,,,,,,,,,  Also when i attempt to update either PS or bridge get an error message in Adobe application manger "Error loading updater workflow"

    Having problems with Bridge shutting down after saving photo in PS Cs5,,,,,,,,,  Also when i attempt to update either PS or bridge get an error message in Adobe application manger "Error loading updater workflow"

    Sorry for the late reply. My email firewall has become a little over zealous & sent a lot of my emails straight to my junk email folder, so I have only just now discovered your reply in my junk mail folder.
    The only "don't open files exceeding xxx megabytes" instruction I can find in my Prefs, is in the Bridge Prefs for Thumbnails, & mine is set at 1000mb. The biggest files I handle are bigger than 200mb so I should be able to open a few, not just one.
    However, this doesn't explain why I can open a psd format file of 180mb, close it, but then can't open a RAW format file of only 26mb immediately after.
    I can open the RAW file only if I restart my computer - very annoying!
    However, thanks for the advice about the video card & memory.
    So, I'm still stuck as to what the issue is.

  • Error Message reads: this application has failed to start because MSVCR80.dll was not found. Re-installing the application may fix this problem.  I have re-installed, SO many times and I still cant open iTunes.

    Hi Support,
    I am becoming anxious because no matter what I try it doesnt seem to allow me to open itunes.
    Error Message reads: this application has failed to start because MSVCR80.dll was not found. Re-installing the application may fix this problem.
    I have re-installed, SO many times and I still cant open iTunes.
    Please help!!

    Click here and follow the instructions.
    (98888)

  • TS3276 Can't open web addresses from an email-get an ERROR message saying-no application could be found

    Can't open web addresses from an email-get an ERROR message saying-no application could be found

    Hi, I had the same problem. I finally figured it out. Plug in the USB cord to your ipad, but beofre plugging it into your computer make sure your ipad is not in the locked or sleep mode. Once I did this, my photos showed up and started downloading. Hope that helps you!

Maybe you are looking for

  • Adding elements to a Dialog after it's been created using a resource string

    I can add elements using add but not with a resource string. The following works in ExtendScript Toolkit but not in Photoshop. Any idea why? var window_res = "dialog { \      orientation: 'row', \      alignChildren: 'top', \      preferredSize: [500

  • Starting in Safe Mode

    Recently my Macbook stopped loading up correctly; Stays on grey Apple screen and keeps loading forever after it frooze and i shut it down with the power button. I have tried to use the start up disk and tried to repair it using Disk Utilities to no a

  • [SOLVED] chrome/chromium displaying garbled text in tab/browsers bar

    basically anywhere that isn't a webpage the text is garbled. installed arch yesterday following the newbie guide and then immedietly installed xorg - i3 - chrome and it's broken here's a screenshot, sorry about the terminal wasn't sure how to take it

  • How to launch PhotoShop Elements 10

    Can anyone help me with this? I purchased PSE 10 in June and have not been able to open it. I registered my purchase and I can see where everything is in my Program Files but I simply cannot find anything that will open it. I have been a PhotoShop us

  • Deployment issues while deploying an ear with size 48 mb

    i have an ear with 48 mb. now when i try to deploy my ear very often the deployment is getting failed (either it says "null pointer exception" or "specify a proper path of the ear" etc after a long long time(say 20 minutes).. though that ear gets dep