Out of "Request thread waiting" in KJS iAS SP4

We are developing a J2EE aplication in iPlanet Application Server SP4. When we load the main page (Servlet), that composes a HTML page with 3 frames, the KJS of iAS takes 2 threads to process the request of the upper frame (call to a HttpServlet) and left frame (another call to a HttpServlet). After a time we can see the upper and left frame (we've got the HTML code that has been generated by the servlets) , but the browser hasn't finished to load the images of these frames. These images are on a iPlanet Web Server 4.1 SP 7. Some time later the web server time out expires and stop our browser and the images are no loaded.
The third frame is never loaded (the request never go to the iAS as we see on the web server log).
We expected that the 2 threads that are processing our request wil be freeded after processing the request, but that doesn't happen. The threads are blocked and doesn't return to de thread pool althougth the request are totally processes.
We have the same application deployed on a iAS SP2 and we have never get these problem.
Could anyone help me.
Thank you.

It seems that some dead lock has occured.
Can you please send the kjs logs for sp4 and if possible can you also send the servlet code which is giving errors. With that I can proceed.
Thanks,
Rakesh.

Similar Messages

  • Waiting request threads in 6.0 SP2

    we have noticed that in some situations, over time, the number of available request threads will drop, and the number of
    current requests will rise!
    pretty normal stuff, but once in a while they do not return to the waiting request pool, and the the current request
    never seems to go away.
    naturally this could be explained by setting up pages which never return. we stayed always from that!
    requests that never returned. we also managed to avoid that.
    but still over time, some requests never seem to get answered, the request threads never get back to the pool, and
    eventually the number of available threads declines, till there are none.
    is there a reporting mechanism within iPlanet to help diagnose these situations? perhaps giving stackcrawls of all
    current request threads from the kjs at any given time. one option of of course to use -Xrunhprof with the VM to catch
    threads in contention under Solaris. but are there other possibilities?
    iPlanet seems to have a dearth of internal reporting tools.

    You didn't give the specs on the boxes but 300 threads is probably way too
    high. Here's a good rule of thumb:
    NT/1CPU = 14 free exec threads when idle (use ctrl-break to verify)
    NT/2CPU = 28 free exec threads when idle
    SolSparc/2CPU = 48 free exec threads when idle (use kill -3 to verify)
    SolSparc/4CPU = 96 free exec threads when idle
    Note that some exec threads get gobbled by WL itself so after setting the
    value you need to figure out how many you actually have available. For
    example, if you set it to 15 you may end up with only 10 which means your
    expectation is 33% off reality.
    Peace,
    Cameron Purdy
    Tangosol, Inc.
    Clustering Weblogic? You're either using Coherence, or you should be!
    Download a Tangosol Coherence eval today at http://www.tangosol.com/
    "Kirk Everett" <[email protected]> wrote in message
    news:[email protected]..
    We are getting out-of-memory errors on solaris using 6.0 SP2. We are
    seeing the heap size just grow and grow at a steady pace as the
    application is stressed tested using load runner. The tests simulate
    only about 30-60 users with a fairly light workload. We've run basically
    the same tests on NT without the memory problems so I'm wondering if it
    has anything to do with our env. We've basically trimed the script to
    do just login/logout and the heap grows to over 600MB in about 2 hours.
    We've poured over our login/logout code and can't find any places where
    we are holding onto memory. Just before the process runs out of memory
    we get a log of full gc messages that take about 30 seconds with no
    significant change in the heap size. Their are 4 instances running with
    a 1GB heap and 300 execute threads each (2 weblogic instances on a
    box). Could the heap size/execute thread be causing problems? I think
    the heap and execute thread size is a bit excessive given there are only
    50 db connections. I'd like to hear anyone's opinion on this problem
    and our settings. Thanks.
    Kirk

  • How to make the main() thread wait?

    I would like to know how to make the main() thread wait for another thread?If I use wait() method in main() method it says "non-static method wait() cannot be referenced from a static context",since main()
    is static.

    Here is an example how you may wait for a Thread in the main -
    but be careful, this is no real OO:
    public class WaitMain {
    // this is the thread class - you may also create
    // a runnable - I use a inner class to
    // keep my example simple
         public static class ThreadWait extends Thread{
              public void doSomething(){
                   synchronized(syncObject){
                        System.out.println("Do Something");
                        syncObject.notify();
              public void run(){
                   // sleep 10 seconds - this is
                   // a placeholder to do something in the thread
                   try{
                        sleep(10000);
                        doSomething();
                        sleep(10000);
                   catch(InterruptedException exc){
    // this is the object we wait for -
    // it is just a synchronizer, nothing else
         private static Object syncObject = new Object();
         public static void main(String[] args) {
              System.out.println("This will start a thread and wait for \"doSomething\"");
              ThreadWait t= new ThreadWait();
              t.start();
              synchronized(syncObject){
                   try{
    // this will wait for the notify
                        syncObject.wait();
                        System.out.println("The doSomething is now over!");
                   catch(InterruptedException exc){
              // do your stuff

  • Jstack shows a thread waiting for monitor entry but it's already acquired

    I have a heavy load website powered by tomcat-6.0.14 and jdk1.6.0_02-b05(amd64) on a 2 dual-core amd Opteron. When tomcat started, and I directed the http request(~200/s) abruptly to tomcat, it looks choked for over one minute, and if I took off the http requests, tomcat can recover in a few minutes.
    Then I use jstack during the choke time to find what's the cause, where I found a strange situation. Almost all threads are blocking on getting a log4j lock(I think it's normal,since log4j use a coarse lock), but one thread which already got the lock are also blocked. Below is the stack trace.
    "http-172.23.24.29-8011-exec-175" daemon prio=10 tid=0x00002aad37843400 nid=0x542d waiting for monitor entry [0x0000000052e55000..0x0000000052e55da0]
    java.lang.Thread.State: BLOCKED (on object monitor)
    at org.apache.log4j.Category.callAppenders(Category.java:201)
    - locked <0x00002aaab39d5670> (a org.apache.log4j.spi.RootLogger)
    at org.apache.log4j.Category.forcedLog(Category.java:388)
    at org.apache.log4j.Category.log(Category.java:853)
    at org.apache.commons.logging.impl.Log4JLogger.info(Log4JLogger.java:133)
    at com.xxx.xxxx.TimingLogFilter.doFilter(TimingLogFilter.java:39)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:263)
    at org.apache.coyote.http11.Http11NioProcessor.process(Http11NioProcessor.java:887)
    at org.apache.coyote.http11.Http11NioProtocol$Http11ConnectionHandler.process(Http11NioProtocol.java:696)
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.run(NioEndpoint.java:2009)
    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:885)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
    at java.lang.Thread.run(Thread.java:619)
    And all the other threads waiting for the log4j lock.
    "http-172.23.24.29-8011-exec-176" daemon prio=10 tid=0x00002aad37773800 nid=0x542e waiting for monitor entry [0x0000000052f56000..0x0000000052f56b20]
    java.lang.Thread.State: BLOCKED (on object monitor)
    at org.apache.log4j.Category.callAppenders(Category.java:201)
    - waiting to lock <0x00002aaab39d5670> (a org.apache.log4j.spi.RootLogger)
    at org.apache.log4j.Category.forcedLog(Category.java:388)
    at org.apache.log4j.Category.log(Category.java:853)
    at org.apache.commons.logging.impl.Log4JLogger.info(Log4JLogger.java:133)
    at com.xxx.xxxxx.TimingLogFilter.doFilter(TimingLogFilter.java:39)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:263)
    at org.apache.coyote.http11.Http11NioProcessor.process(Http11NioProcessor.java:887)
    at org.apache.coyote.http11.Http11NioProtocol$Http11ConnectionHandler.process(Http11NioProtocol.java:696)
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.run(NioEndpoint.java:2009)
    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:885)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
    at java.lang.Thread.run(Thread.java:619)
    I'm really wondering why jstack shows the first thread is BLOCKED but no blocker.
    And also, it's not a deadlock, since I made jstack log after sever seconds, and found this time another thread has the same problem.
    "http-172.23.24.29-8011-exec-170" daemon prio=10 tid=0x00002aad3784d800 nid=0x5428 waiting for monitor entry [0x0000000052950000..0x0000000052950c20]
    java.lang.Thread.State: BLOCKED (on object monitor)
    at org.apache.log4j.Category.callAppenders(Category.java:201)
    - locked <0x00002aaab39d5670> (a org.apache.log4j.spi.RootLogger)
    at org.apache.log4j.Category.forcedLog(Category.java:388)
    at org.apache.log4j.Category.log(Category.java:853)
    at org.apache.commons.logging.impl.Log4JLogger.info(Log4JLogger.java:133)
    at com.xxx.xxxx.TimingLogFilter.doFilter(TimingLogFilter.java:35)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:263)
    at org.apache.coyote.http11.Http11NioProcessor.process(Http11NioProcessor.java:887)
    at org.apache.coyote.http11.Http11NioProtocol$Http11ConnectionHandler.process(Http11NioProtocol.java:696)
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.run(NioEndpoint.java:2009)
    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:885)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
    at java.lang.Thread.run(Thread.java:619)
    What's the cause? Is jstack accurate? Or, the problem is caused by hotspot compling since tomcat is just started? Or it's just because log4j's coarse lock? ( but after the starup, tomcat can handle the same traffic without any problem, and jstack shows no log4j block at all.)
    Thanks in advance.
    Jimcgnu

    "http-172.23.24.29-8011-exec-175" daemon prio=10 tid=0x00002aad37843400 nid=0x542d waiting for monitor entry [0x0000000052e55000..0x0000000052e55da0]
    java.lang.Thread.State: BLOCKED (on object monitor)
    at org.apache.log4j.Category.callAppenders(Category.java:201)
    - locked <0x00002aaab39d5670> (a org.apache.log4j.spi.RootLogger)
    It seems like a Dead Lock.
    The thread must have entered into a synchronized block/method1() and acquired a lock.
    - locked <0x00002aaab39d5670> (a org.apache.log4j.spi.RootLogger)
    While having lock the thread might be trying to acquire a lock to another synchronized block/method2()
    waiting for monitor entry
    java.lang.Thread.State: BLOCKED (on object monitor)
    and someother thread might have already acquired a lock to that block/method2().
    Can we check for Dead Lock??

  • AMP Feature request thread

    I've just started trying to use the AMP for some home entertainment and I must say it has been a challenge to enjoy this product in its current form. Perhaps I dont have a grasp on what the expressed functions of the player are, and what advantages can it offer me over the myriad of other players and services.
    I can find nowhere else to leave feedback and suggestions or have dialog with adobe developers so I thought, like in many other Adobe product forums, to begin a feature request thread in hopes that if enough users add feedback we may eventually have an improved product. In the same regard users can enlighten others as to what functions they find useful already. Its not meant to be a gripe list but a chance to voice constructive ideas and share experience with the product.
    Preamble complete, I will have first go:
    1) The system options seem very limited to me, for instance I can not find an option to view or change in what directory\folder the video files are downloaded or cached to.
    2) A minimized view or skin would add benefit for me. It seems now the only options are full screen and a small window housed inside the AMP program window. With any other media player I have used one can play a file in a resizable window without all the other program buttons and menus eating up your screen space.
    3) Video controls options during playback, like chroma level, brightness/contrast, gamma. This is standard on other players.
    4) I get annoyed when I am watching a video and I pause and go to the home or favorites tab, AMP automatically disconnects the video I was playing, and the I must search the catalogue to find it, restart it, and re-watch the commercials if any to re-cue it to the last viewing spot.
    5) I dont really appreciate the default favorites or new episodes listed. That is not needed.
    6) There are no right click menus? Odd. At the least I would like to be able to right click a video file to pull up information on it. In fact, I would like any method of looking at files information. This goes hand in hand with the general lack of user options throughout the program.
    7) Last one for now, but a big one. Why in the world would AMP not support more video formats? I, like most computing people, horde all kinds of different media files in my various libraries. If AMP cant play them it has a big disadvantage to all of the other ubiquitous media players out there.
    Thats it for starters. Hopefully I will start get more familiar with the program and then find more benefits. Please, add to this thread if you have any thoughts on the AMP.

    1.  Ability to skip forward (fast forward) through a video or rewind video.
    2.  Point AMP to a set of folders containing personal videos I want to watch in AMP.  Right now, if I have a series of videos that form one full course, I have to eliminate the previous course videos so they do not get mixed in with the new course videos.
    3.  Ability to go back to where I was in the video when the Internet goes down (or flickers) rather than play from beginning.
    4.  By the way, why are the TV shows going away?  This was the No. 1 reason we installed AMP on our multimedia computer!
    That is all for now.
    Thanks,
    edsager

  • Skype sent out contact request without permission?...

    Alright so I contacted support over this and they just said they couldn't answer my question because they didn't know. I guess I'm not searching for answers anymore but just seeing if this has happened to anyone else or if someone can find some error I made to make this happen ... Thanks for your time in reading.
    SO... Awhile back I deleted my ex from Skype and blocked him. I would like to mention I had him blocked numerous times but he could still send a contact request...... Anyways... I had him deleted and blocked and then three days ago, randomly out of NOWHERE... I look at my contacts and he's in them- saying that IVE sent a contact request to HIM.................... And it offered the option to resend it. I flipped out so hard because it really does make me look crazy if he got a contact request from me............ Out of nowhere ....
    I can only hope it was a one sided thing and he never got the receiving end of that message. I had him blocked but nowhere in the chat near 'resend request' did it say 'this contact is blocked' as I seem to remember it doing before.
    Ugh.. This situation had me so fearful that it would start like, spamming contact requests or later on doing something else because if Skype support can't explain it, then im just gonna just go ahead and say my account was possessed. To try and counter this, I deleted the account today and made a new one.
    So yeah, anyone have any similar experience? ... Did I do something critically wrong that somehow did this? Is it possible /he/ was the one sending the request? (OFC that doesn't make sense because it was giving me the option to resend and saying it was pending.) also, if it's pending does that mean he hasn't accepted and the request was waiting there or could it be rejected and still say pending?
    Thanks for your time xoxoxox ♡

    ambitiouswhiteg wrote:
    Today I had a new person added to my contacts list, (not recent conversations), that I did not approve. I have had people I don't know randomly request to be added but this is the first time where someone was added without my consent. 
    First off, I would like to report this individual since he has obviously circumvented Skype security features. He is soliciting his S. African business through his profile. How do I go about reporting this because aside from this forum on security I can't find a way to report on your website. I have read several other users post similar stories dating back a few years and I am surprised this is still an issue although I am grateful I have never had this happen before.  
    Here is the information on the unsolicited contact:
    *edited for privacy*
    Please advise,
    Chrystal
    you can send this information to the department specifically handling cases of abuse of Skype services - [email protected]
    IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
    ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES
    SEE MORE TIPS, TRICKS, TUTORIALS AND UPDATES in
    | skypefordummies.blogspot.com | 

  • Threads waiting the same event

    hi all,
    i have two thread waiting an event
    and another who notify them
    //the class event
    public final class Event {
    * variable used to store the notification if it takes place
    * before being expected
    private boolean status = false;
    public final synchronized void waitForNotification() {
    while (status == false ) {
    try {
    wait();
    catch (InterruptedException e) {
    status = false ;
    // notify all waits on this event
    public final synchronized void wakeUp() {
    status = true;
    notifyAll();
    // the class TestThread implements a thread that have an event waiting for a notification
    public class TestThread extends Thread{
    private Event event;
    public TestThread( Event e){
    event=e;
    public void run(){
    for (int i = 1; i < 4; i += 1) {
    try {
    Thread.sleep(2);
    } catch (InterruptedException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    e.waitForNotification();
    // the class TestThread2 implements a thread that have an event waiting for a notification
    public class TestThread2 extends Thread{
    private Event event;
    public TestThread( Event e){
    event=e;
    public void run(){
    for (int i = 1; i < 4; i += 1) {
    e.wakeUp();
    //the class main
    public class test {
    * @param args
    public static void main(String[] args) {
    // TODO Auto-generated method stub
    Event e = new event();
    TestThread th1 = new TestThreadConsumer(e);
    TestThread th2 = new TestThread(e);
    TestThread2 th= new TestThread2(e);
    th1.start();
    th2.start();
    th3.start();
    1st case
    the problem is that the notification could not be seen to the tow threads
    because if the tow are waiting the notification
    and the other thread send notification
    one of the tow see the notificztion and wake up and set the flag status to false so the other one could not ever wake up
    2d case
    the notification of the second thread could be done in the second itiration or in the other ones
    please could u answer and help me
    thank you

    nabila.abdessaied wrote:
    i just wanna to have tow thread waiting a notification from another
    and when another send the notification
    they could go out from waiting and do their jobHi.
    Below is an example of how you could do this. It is taken from http://www.javaconcurrencyinpractice.com/listings.html (5.11 Using CountDownLatch for starting and stopping threads in timing tests) .
    The idea is simple:
    (1) main thread starts nThreads, but all of them, once started, are "suspended" in startGate.await();
    (2) when all threads are started, main thread calls startGate.countDown(); and all those waiting threads "are off" at once.
    I'm not sure that you need 'endGate' though (but I thought that it is not that good to cut somebody's else example...)
    * TestHarness
    * <p/>
    * Using CountDownLatch for starting and stopping threads in timing tests
    * @author Brian Goetz and Tim Peierls
    public class TestHarness {
        public long timeTasks(int nThreads, final Runnable task)
                throws InterruptedException {
            final CountDownLatch startGate = new CountDownLatch(1);
            final CountDownLatch endGate = new CountDownLatch(nThreads);
            for (int i = 0; i < nThreads; i++) {
                Thread t = new Thread() {
                    public void run() {
                        try {
                            startGate.await();
                            try {
                                task.run();
                            } finally {
                                endGate.countDown();
                        } catch (InterruptedException ignored) {
                t.start();
            long start = System.nanoTime();
            startGate.countDown();
            endGate.await();
            long end = System.nanoTime();
            return end - start;
    }Seems this is what you were looking for (if I understood you right).

  • HT4623 I updated my mini, but some of my apps are no longer available. One of them I purchased from the Apple store.  They are grayed out with the word "waiting" underneath the app.  Any suggestions?

    I updated my mini, but some of my apps are no longer available. One of them I purchased from the Apple store.  They are grayed out with the word "waiting" underneath the app.  Any suggestions?

    If there are multiple apps trying to download at once, only one can download at a time and the rest say "Waiting" until it is then their turn. Try this. Double tap the icon of the Waiting app, and it should resume the download.
    How to Solve the Problem of An iPad App Download Stuck on “Waiting”
    http://ipadacademy.com/2012/06/how-to-solve-the-problem-of-an-ipad-app-download- stuck-on-waiting
    How To Get Rid Of Your iPad App Download Frozen Problem
    http://www.sidelineapple.com/how-to-get-rid-of-your-ipad-app-download-frozen-pro blem-and-not-lose-years-of-your-life-video/
    Another thing to try - Turn the iPad Off & then back ON.
    If that doesn't work:
    •  Log out of your iTunes store account.  Go to Settings > Store > Sign Out Then press the Home button.
    • Then press and hold the Home and Sleep buttons simultaneously and don't release them when it brings up the Turn Off screen; keep holding them until the Apple logo appears.
    • After restart, the Waiting should be gone.
     Cheers, Tom

  • How to find out the JVM thread that is consuming high CPU

    I am using WL 10.3, JRockit JVM on Linux. I have taken thread dumps. How to find out the JVM thread that is consuming high CPU?
    I know how to map it Sun JVM on Solaris. I haven't done in on JRockit so far. Please advise.

    Check out some of Marcus Hirt's blog entries for details about how to use JRockit Mission Control. It's a very nice tool that should provide a lot of insight:
    http://blogs.oracle.com/hirt/

  • Mac mini times out internal requests

    My mac mini (previous gen.) 2.26ghz running 10.6.4 times out connection requests on my local wireless from the following things:
    AppleTV ("old," 40gb)
    Remote iphone (4g)/ipad (16gb, WiFi) app
    RemoteHD ipad app
    I can link the mini to the ATV but am neither able to sync the Apple tv to the mini (port 3689!) nor can I stream media to the ATV from the mini (apple tv cannot connect). Both RemoteHD and Apple remote ipod/iphone apps timeout. I am able to set the remote app up initially but the connection times out when I try to load the library. The mini is connected via ethernet to Apple Airport Extreme 802.11n base station and the ATV is connected via wireless.
    I can, however, get my media through Orb sharing (web based with local host) and set up a working remote connection with RemoteHD using its local port mapping wizard. I can also load the library to the MBP through iTunes sharing and share the mini screen through MobileMe's back to my mac.
    On, with incoming connections allowed, or off, the firewall on the mini makes no difference.
    I do have my library stored on external media. I noticed some posts suggesting that might be the problem. Based on the issue with RemoteHD, I don't think it's that simple. I need to find a fix anyway because my library exceeds the capacity of the mini.
    I haven't monkeyed with any Airport based port mapping or anything because all functions worked fine with a g4 desktop (which also served the media from external drives) and currently work with my MacBook pro 2.4 ghz also running 10.6.4. The issue is isolated to the mac mini and the local wireless.
    In the broad scope, these are minor but perplexing irritations that I'm currently working around. The most inconvenient is the ATV issue followed closely by remote control of iTunes. I'm willing to install something like NoobProof to manage that port problem if necessary, but I'm hoping to suss out exactly what's happening that's prohibiting me connecting via my local wireless so I can solve all issues at once.
    If you managed to hang in there, thanks for reading all this and thanks in advance for any assistance and let me know if I can provide any additional information.

    terwilliger-
    Greetings and welcome to the Apple boards.
    If Boece's advice does not do the trick, take a look at this document for other helpful information.
    Luck-
    -DaddyPaycheck

  • Operation ' Change Attribute TSTATE ' could not be carried out for Request

    hi,
    i am unable to delete the request Id  from  DSO. and when i checked that, it says request is partially activated(error occured during the activation)
    and when i checked the logs i got the following error messages:
    Operation ' Change Attribute TSTATE ' could not be carried out for Request 609249
    Termination in problem report 'RSS2_DTP_RNR_SUBSEQ_PROC_SET' in row '      361'
    i even thought it was BASIS issue but it was not.
    due to this error the process chain is failing daily
    kindly help
    regards
    laksh

    hi arvind,
    i tried using the both the methods you had mentioned, i am able to delete the request at that moment but its again coming back, i think as it is a partially activated request so may be that is why it is happening
    but the problem is still there
    regards
    Laksh

  • Out of control thread

    Is there any way to close an out of control thread so that posters can respond to current and applicable problems? Perhaps tell them to post new topics instead of continuing that one?
    On the Using Your MBP forum, there is a thread that is so long and so convoluted now that it is confusing brand new MBP users who are saying that they think that they now must have problems because everyone does.

    Hi Rhyd!
    If you want to alert the Hosts, of concerns you may have about a post or topic, you can also use the Report this post link, which appears in the bottom right corner of each post.
    If reporting an individual post, or reply, in the text field, include a note explaining your reason for reporting.
    If you have an issue with the entire thread, such as the one you discussed here, I suggest that you report from the first post in the Topic, and explain your concerns exactly.
    The Hosts can then determine the best course of action.
    ali b

  • How to know the current Task/Job ID in which a request is waiting for

    Hi Team,
    Is there any table/view in IDM 7.2 that provides current task/job ID number a request is waiting for?
    Even though the last completed phase of the request can be seen from admin UI that only shows the description of the completed steps but not the technical details like task ID/Job ID of the current step.
    Knowing the current step/Job ID helps the admin a lot to directly go the step when the request is waiting for long/got failed etc..
    Regards,
    Venkata Bavirisetty

    Hi Matt,
    Thanks for your response.
    I read few articles in your blog couple of weeks before and they are very much informative.
    The information provided in the provisioning queue just shows the task ID and no.of requests (without request nos) waiting in that task.
    Basically the question I have mentioned in my previous post is not related to any specific task type. It is like using request no we wanted to know complete request history specially the current task (task ID) at which the request is waiting for.
    Regards,
    Venkata Bavirisetty

  • More than 50 MB sized applications are grayed out with status of "Waiting/Installing", when we update those apps from WiFi Connection?

    Hi,
    Few application updates are available in iOS App store. However, Those applications are grayed out with status of "Waiting/Installing", when we update those apps from WiFi Connection. It's happening only for more than 50 MB sized applications. Unable to install those application through WiFi, However, it's successfully installed through MacBook Pro iTunes application. Please suggest me, why this happening suddenly.
    Thanks in Advance,
    Suresh Balakrishnan.

    - If I make the deployment required, it will install right away regarless of maintenance windows.  However, i don't want to use this option because if the user logs in to other machine (e.g. boardroom computer), it will auto install this software. 
    Re-check your deployment, specially the user experience:
    If you've checked the box next to "Software installation", it will install after the deadline has passed and ignores maintenance windows. Change the deployment to required and uncheck that box and the software should be installed according to your
    maintenance windows.

  • With out deleting request can we reconstruct

    Hi,
    can any one tell me With out deleting request can we reconstruct the request.

    Hi,
    loads that come through PSA move to reconstruction tab after deletion so that it can be edited in PSA and loaded again. This is mostly done for delta requests to make sure that we do not loose data in any case.
    There would be no point in reconstructing the load which is already there in the target guess you cant do it rather.
    Thanks
    Puneet

Maybe you are looking for