Flexunit task hangs after "Receiving data ..."

Hello,
I am trying to launch the Ant script found in FlexUnit4SampleCIProject but it just doesn't works.
Last message in console is "[flexunit] Receiving data ..." and the tests in the UI are not started and showing 0/100.
I am using latest standalone debug flash player : flashplayer_10.0.42.34_sa_debug.exe
I use flextasks from Flex4 4.0.0.13549 as the flexTasks.jar that comes with the project doesn't work:
BUILD FAILED
X:\wb_fb4\FlexUnit4SampleCIProject\build.xml:47: The class not found in jar file: mxmlc.jar
Buildfile: X:\wb_fb4\FlexUnit4SampleCIProject\build.xml
init:
compile:
    [mxmlc] Loading configuration file F:\Program Files (x86)\Adobe\Adobe Flash Builder Plug-in Beta 2\sdks\4.0.0.13549\frameworks\flex-config.xml
    [mxmlc] X:\wb_fb4\FlexUnit4SampleCIProject\target\bin\Main.swf (469843 bytes)
test:
    [mxmlc] Loading configuration file F:\Program Files (x86)\Adobe\Adobe Flash Builder Plug-in Beta 2\sdks\4.0.0.13549\frameworks\flex-config.xml
    [mxmlc] X:\wb_fb4\FlexUnit4SampleCIProject\target\bin\TestRunner.swf (989770 bytes)
[flexunit] Validating task attributes ...
[flexunit] Generating default values ...
[flexunit] Using default snapshot file path [X:\wb_fb4\FlexUnit4SampleCIProject\target\report\snapshot.jpg]
[flexunit] Using the following settings:
[flexunit]     haltonfailure: [false]
[flexunit]     headless: [false]
[flexunit]     localTrusted: [false]
[flexunit]     player: [flash]
[flexunit]     port: [1024]
[flexunit]     snapshot: [false]
[flexunit]     snapshotFile: [X:\wb_fb4\FlexUnit4SampleCIProject\target\report\snapshot.jpg]
[flexunit]     swf: [X:\wb_fb4\FlexUnit4SampleCIProject\target\bin\TestRunner.swf]
[flexunit]     timeout: [60000ms]
[flexunit]     toDir: [X:\wb_fb4\FlexUnit4SampleCIProject\target\report]
[flexunit]     verbose: [true]
[flexunit]     xcommand: [xvfb]
[flexunit] Setting up server process ...
[flexunit] Starting server ...
[flexunit] OS: [Windows]
[flexunit] Launching player:
[flexunit] Executing 'rundll32' with arguments:
[flexunit] 'url.dll,FileProtocolHandler'
[flexunit] 'X:\wb_fb4\FlexUnit4SampleCIProject\target\bin\TestRunner.swf'
[flexunit] The ' characters around the executable and arguments are
[flexunit] not part of the command.
[flexunit] Opening server socket on port [1024].
[flexunit] Waiting for client connection ...
[flexunit] Client connected.
[flexunit] Setting inbound buffer size to [262144] bytes.
[flexunit] Receiving data ...
Here I can wait long time, and if I close the UI, i get those bonus lines :
[flexunit]
[flexunit] Stopping server ...
[flexunit] End of test data reached, sending acknowledgement to player ...
[flexunit] Closing client connection ...
[flexunit] Closing server on port [1024] ...
BUILD FAILED
X:\wb_fb4\FlexUnit4SampleCIProject\build.xml:68: java.util.concurrent.ExecutionException: java.lang.NullPointerException
Total time: 53 seconds
Am I doing something wrong?
Thank you in advance for your help,
Adnan

FWIW - localTrusted has been switched back to a default of true in my fork of flexunit and it awaiting a merge with the flexunit master branch.
   http://github.com/blegros/flexunit
-Brian

Similar Messages

  • My ipod cclassic 80gb is hang after trying dat press and hold method then also its not working please tell me solution

    My ipod cclassic 80gb is hang after trying dat press and hold method then also its not working please tell me solution

    Thanks for your response and good luck wishes, I suspect I will need them!
    In principle, I agree re: the manufacturer's warranty. However, I am pretty upset that this is now my second iPod to develop a critical fault within weeks of the warranty expiring, and frankly, it is not unreasonable to expect a state-of-the-art $500 electronic device to last well beyond one year of life.
    I agree talking to Apple is not likely to do me any good (the clue is in how impossible they make it to talk to them in the first place) - but that is not necessarily OK. I expect I will have to pay money to get the battery replaced - again, not OK (full stop - but especially given the cost of the device and the money I have spent with Apple). Yes, the batteries have a limited lifespan, but it should last longer than this (and surely, I should notice a gradual decline in its functionality, not an instant stop).
    I will try Deggie's suggestion (see my reply post), but probably won't hold my breath (think I have already done this). I probably will have to get the new battery - and probably under my own steam. It is a principle at stake and I feel I should be able to let Apple know how I'm feeling - and am frustrated that they make this virtually impossible. It sends the very clear message that they are not interested in listening to their customers.

  • Adobe Reader XI hangs on "receiving data" after submitting to php

    I am submitting PDF fillable form to php, then pdf is save & email to destination. It works, I receive the pdf filled file via email; However, in Safari works perfect redirects, etc. When using FireFox, Chrome, then Adobe Reader opens.
    Then when submitting from Adobe Reader, it works fine, I receive the email with attachment.
    The problem is that Adobe Reader hangs "receiving data" for a long time, then I get this message "An error occurred during the submit process. The network service you are trying to reach could not process the request."
    I do get the file via email and it is fine. What is Adobe Reader waiting for?.
    Thanks in advance

    I do not think it is returning anything, here is the php code ...
    <?php
    $fileatt = date("d-m-Y-His") . ".pdf";  // Creates unique PDF name from the date
    copy('php://input',"pdfs/".$fileatt); // Copies the pdf form data to a folder named pdfs
    $fileatt = "pdfs/".$fileatt; // Path to the file gives the pdfs folder plus the unique file name we just assigned
    $fileatt_type = "application/pdf"; // File Type
    $fileatt_name = "Application Form_".$fileatt.".pdf"; // Filename that will be used for the file as the attachment when it is sent
    $email_from = "mywebsite"; // Who the email is from
    $email_subject = "Completed online Applications"; // The Subject of the email
    $email_message = "Please find a recent online application attached.
    $email_message .= "Any problems please email me...
    "; // Message that the email has in it
    $email_to = "[email protected]"; // Who the email is to
    $headers = "From: ".$email_from;
    //no need to change anything else under this point
    $file = fopen($fileatt,'rb');
    $data = fread($file,filesize($fileatt));
    fclose($file);
    $semi_rand = md5(time());
    $mime_boundary = "==Multipart_Boundary_x{$semi_rand}x";
    $headers .= "\nMIME-Version: 1.0\n" .
    "Content-Type: multipart/mixed;\n" .
    " boundary=\"{$mime_boundary}\"";
    $email_message .= "This is a multi-part message in MIME format.\n\n" .
    "--{$mime_boundary}\n" .
    "Content-Type:text/html; charset=\"iso-8859-1\"\n" .
    "Content-Transfer-Encoding: 7bit\n\n" .
    $email_message .= "\n\n";
    $data = chunk_split(base64_encode($data));
    $email_message .= "--{$mime_boundary}\n" .
    "Content-Type: {$fileatt_type};\n" .
    " name=\"{$fileatt_name}\"\n" .
    //"Content-Disposition: attachment;\n" .
    //" filename=\"{$fileatt_name}\"\n" .
    "Content-Transfer-Encoding: base64\n\n" .
    $data .= "\n\n" .
    "--{$mime_boundary}--\n";
    $ok = @mail($email_to, $email_subject, $email_message, $headers);
    if($ok) {
    unlink($fileatt); //NOW WE DELETE THE FILE FROM THE FOLDER pdfs
    header("Location: return.pdf"); //where do we go once the form has been submitted.
    } else {
    die("Sorry but the email could not be sent. Please go back and try again!");
    ?>

  • Hang after received a call- N97(very often)

    im really so sososososso frustrated with this piece of junk... wasted so much money and got this phone that cant even perform the primitive fucntion tat a phone should have...
    u received a call, so u take it out from ur pocket, the autorotate screen change form horizon to vertical or vice versa, u pick up the call, screen goes blank, u still can talk to people the other side, u hang up, then u restart  restart  restart  restart  restart  restart  restart  restart  restart  restart  restart  restart  restart  restart just to get this "mobile computer" boot up again...
    Nokia, should wrote in user guide: "users might need to restart N97 after received a call"
    this **bleep** im going to sell it..   one month old... i already updated the firmware.. ... i cant wait to another update anymore...
    evertime when i look at my frens samsung omnia... im so sad for buying this N97....

    You have Zoom on... double tap with three fingers to turn it off.   Go into Settings > General > Accessibility to disable it.
    See p. 243... http://manuals.info.apple.com/en_US/iPhone_iOS4_User_Guide.pdf

  • Human task notification after due date/expiration date/...

    I would like to set a due date (or expiration date) to Human task, and set some notification before this time. Ok, it seemed very easy:
    - i set due date to 5 minutes in human task -> Deadlines
    - i set notifications in human task -> notification and in tab Advanced i set remind once 2 minutes before due date
    Nothing happens. Exactly same (nothing) happens when i do the same with expiration date.
    But what exactly is meaned under word "Reminder"?
    It's mail? (then where I have to set email adress? I tried to set a "to" field in human task -> notification -> tab Advanced -> notif. header attributes => nothing happened)
    It's worklist inbox message?
    Or what ist "reminder" and how it should remind me?
    Edited by: user1175491 on Dec 28, 2010 7:21 PM

    Hi,
    I don’t know if you’ve managed to resolve this issue yet and you mention you have emails working from BPEL, but I'm not sure if you've got any notifications working for the Human Task, if not then I have done some work with the human task notifications and although I’ve not tried to do what you’re doing, this is what I have learned.
    Firstly to receive any notifications you need to configure the Messaging Driver and Workflow Notification Properties…
    In Enterprise Manager expand [farm] -> SOA -> soa-infra
    Right click soa-infra and choose SOA Administration -> Workflow Notification Properties
    Underneath the page title (Workflow Notification Properties) is a note telling you to configure the Messaging Service Driver. Click the "Go to the Messaging Driver page" link.
    In the associated drivers section you will have a single entry for soa_server1 (or what ever it's called for you). In the right hand column there is a button for configuring the driver, click this.
    In the driver specific configuration, scroll down to OutgoingMailServer and enter the hostname or IP address of your mail server, then click Apply at the top of the screen.
    Now go back to the Workflow Notification Properties screen and choose “Email” from the notification Mode and enter some sensible email addresses in the Notification Service section. It’s useful to have real email addresses in here at the moment because any failures will be returned to this address.
    You now need to restart Weblogic for these changes to take affect.
    After the restart you can test the notifications by doing the following
    Back in Enterprise Manager expand [farm] -> SOA -> soa-infra
    Right click soa-infra and choose Service Engines -> Human Workflow
    Click on the Notification Management tab.
    You can click the "Sent Test Notification" button to make sure everything is working ok. This screen also allows you to monitor notifications for failures.
    Now that the notifications have been set up you can configure who gets notified on which events against your human task in JDeveloper.
    The email addresses for the users are retrieved from your identify provider for the relevant user, by default this is the internal LDAP directory. I’m not using this, so I’m not sure exactly how this will work. There are options in the worklist application for individual users, but I’m not using this either.
    Now that this is set up you can configure the human task within JDeveloper. On the notification tab you can decide who gets notified when. By default when a task is assigned to a user, the assignees are notified, you can play about with these settings to see what works best for you. Have a look at http://download.oracle.com/docs/cd/E12839_01/integration.1111/e10224/bp_workflow.htm#BABBHDGF for more information.
    I’m not sure I’ve solved your problem, but I hope this at least helps.

  • Problem in reading data from serial port continuously- application hangs after sometimes

    I need to read data from two COM port and order of data appearance from COM port is not fixed. 
    I have used small timeout and reading data in while loop continously . If my application is steady for sometime it gets hangs and afterwards it doesnt receive any data again. 
    Then I need to restart my application again to make it work.
    I am attaching VI. Let me know any issue.
    Kudos are always welcome if you got solution to some extent.
    I need my difficulties because they are necessary to enjoy my success.
    --Ranjeet
    Attachments:
    Scanning.vi ‏39 KB

    billko wrote:
    Ranjeet_Singh wrote:
    I need to read data from two COM port and order of data appearance from COM port is not fixed. 
    I have used small timeout and reading data in while loop continously . If my application is steady for sometime it gets hangs and afterwards it doesnt receive any data again. 
    Then I need to restart my application again to make it work.
    I am attaching VI. Let me know any issue.
    What do you mean, "not fixed?"  If there is no termination character, no start/stop character(s) or even a consistent data length, then how can you really be sure when the data starts and stops?
    I probably misunderstood you though.  Assuming the last case is not ture - there is a certain length to the data - then you should use the bytes at port, like in the otherwise disastrous serial port read example.  In this case, it's NOT disastrous.  You have to make sure that you read all the data that came through.  Right now you have no idea how much data you just read.  Also, if this is streaming data, you might want to break it out into a producer/consumer design pattern.
    Not fixed means order is not fixed, data from any com port can come anytime. lenght is fixed, one com port have 14 byte and other 8 byte fixed..
    Reading data is not an issue for me as it works nice but I have a query that why my application hangs after sometime and stops reading data from COM PORT.
    Kudos are always welcome if you got solution to some extent.
    I need my difficulties because they are necessary to enjoy my success.
    --Ranjeet

  • FlexUnit Ant task freeze at Reciving Data...

    Hello,
    I'm trying to use flex unit task and when I run it, get this on console and stay there for ever.
    "*****" is just to privacy
    this is my ant task
    <target name="UNIT TEST">
                        <echo>COMPILING TEST SWF..</echo>
                        <mxmlc output="${basedir}/bin/Test.swf" file="${basedir}/test-src/TestRunner.as">
                                  <target-player>${env.TARGET_PLAYER}</target-player>
                                  <load-config filename="${FLEX_HOME}/frameworks/flex-config.xml"/>
                                  <source-path path-element="${FLEX_HOME}/frameworks"/>
                                  <compiler.library-path dir="${FLEX_HOME}/frameworks" append="true">
                           <include name="libs" />
                    <include name="../bundles/{locale}" />
                        </compiler.library-path>       
                                  <source-path path-element="${env.WIP_CLIENT_COM_SRC_PATH}"/>
                                  <define name="CONFIG::FLASH_AUTHORING" value="false"/>
                                  <source-path path-element="${basedir}/test-src"/>
                                  <source-path path-element="${basedir}/src"/>
                                  <compiler.library-path dir="${basedir}" append="true">
                                 <include name="libs" />
                              </compiler.library-path>  
                                  <compiler.library-path dir="${env.WIP_CLIENT_COM_SRC_PATH}" append="true">
                                 <include name="libs" />
                              </compiler.library-path>  
                                  <compiler.external-library-path dir="${env.WIP_CLIENT_COM_SRC_PATH}/libs" append="true">
                                            <include name="GenericChat.swc"/>
                                  </compiler.external-library-path>
                         </mxmlc>
                        <echo>COMPILED TEST SWF..</echo>
                        <echo>Running Test Runner SWF</echo>
            <flexunit swf="${basedir}\bin\Test.swf"
                toDir="${basedir}\bin"
                haltonfailure="true"
                verbose="true"
                localTrusted="false"/>
            <echo>Ran Test Runner SWF</echo>
            <echo>Generate Readable Tests</echo>
            <junitreport todir="${basedir}\bin">
                <fileset dir="${basedir}\bin">
                    <include name="TEST-*.xml"/>
                </fileset>
                <report format="frames" todir="${basedir}\bin\html"/>
            </junitreport>
            <echo>Generated Readable Tests</echo>
              </target>
    Buildfile:******.xml
    UNIT TEST:
         [echo] COMPILING TEST SWF..
        [mxmlc] Cargando el archivo de configuración D:\Desarrollo\fdk\flex_sdk_4.5.1.21328\frameworks\flex-config.xml
        [mxmlc] D:\Proyectos\Bubble\Cliente\trunk\test-src\TestRunner.as: Advertencia: Esta unidad de compilación no tiene ninguna factoryClass especificada en los metadatos del fotograma para cargar las bibliotecas compartidas en tiempo de ejecución configuradas. Para compilar sin bibliotecas compartidas en tiempo de ejecución establezca la opción -static-link-runtime-shared-libraries en true o elimine la opción -runtime-shared-libraries.
        [mxmlc] *********Test.swf (50729 bytes)
         [echo] COMPILED TEST SWF..
         [echo] Running Test Runner SWF
    [flexunit] Validating task attributes ...
    [flexunit] Generating default values ...
    [flexunit] Using default working dir [****]
    [flexunit] Using the following settings for the test run:
    [flexunit]           FLEX_HOME: [*****fdk\flex_sdk_4.5.1.21328]
    [flexunit]           haltonfailure: [true]
    [flexunit]           headless: [false]
    [flexunit]           display: [99]
    [flexunit]           localTrusted: [false]
    [flexunit]           player: [flash]
    [flexunit]           port: [1024]
    [flexunit]           swf: [****\Test.swf]
    [flexunit]           timeout: [60000ms]
    [flexunit]           toDir: [********\bin]
    [flexunit] Setting up server process ...
    [flexunit] Starting server ...
    [flexunit] Opening server socket on port [1024].
    [flexunit] Waiting for client connection ...
    [flexunit] Executing 'rundll32' with arguments:
    [flexunit] 'url.dll,FileProtocolHandler'
    [flexunit] '********\Test.swf'
    [flexunit] The ' characters around the executable and arguments are
    [flexunit] not part of the command.
    [flexunit] Client connected.
    [flexunit] Setting inbound buffer size to [262144] bytes.
    [flexunit] Receiving data ...
    Thank you in advance.
    Javier

    I still have not been able to get FlexUnit running with AIR SDK 15. But I found a workaround:
    Compile the source code with SDK 15 into swc files.
    Set FlexUnit to use SDK 4.
    Do not include source code in the FlexUnit Ant task.
    Include the swc files in stead by adding another library dir parameter to the flexunit call.

  • After receiving a call and ending, it doesn't go back to the task you were on.

    After installing to ios7, my iphone 5 started to bring me to the "phone app" after receiving a call instead of the task I was on. For example, I would be on safari and I receive a call while on Safari, then, after hanging up, the phone would not go back to safari. Instead, it will open my "phone app". I've tried resetting my phone and it continues to do this. It's quite annoying. Has anyone else experienced this bug?

    Ok, don't press STOP, just press "menu" or "title" without pressing stop.
    BTW, I tested both a commercial DVD (Indiana Jones and the Last Crusade) and and a iDVD disk in my Panosonic player and on my Mac with the Apple DVD player.
    On the Panosonic Player: If I press Stop on either DVD, I go to a blank screen. If I press menu once and wait a sec or two, both DVDs go back to the main menu.
    On the Apple DVD player: If I press Stop on either DVD, I go to a blank screen, and pressing "menu" gives me the "not permitted" warning for both DVDs.....
    So It seems like fro me, iDVD works just like the commercial DVD on both the Mac and the DVD player.....
    John B

  • Sharepoint 2013 designer workflow auto approve task after due date is passed

    sharepoint 2013 designer workflow auto approve task after due date is passed.
    Could we approve the task automatically once due date is apssed?
    MCTS Sharepoint 2010, MCAD dotnet, MCPDEA, SharePoint Lead

    Hi Amit,
    If your task is created by a workflow (first) and stored in a separate task list, you can create another workflow on this particular task list, then each workflow instance would check if current task is expired (not approved/rejected), then
    determine if update current task's "Task Outcome" as approved (and update task status as complete), and then create a retention policy on this paricular task list to trigger the workflow on due date .
    Thanks,
    Daniel Yang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]
    Daniel Yang
    TechNet Community Support

  • After receiving a Generator error and prompt to restart. I restarted Photoshop and the app disappeared off my computer. How do I get it back. The cloud widget says it is all up to date?

    After receiving a Generator error and prompt to restart. I restarted Photoshop and the app disappeared off my computer. How do I get it back. The cloud widget says it is all up to date?

    CC desktop lists applications as "Up to Date" when they are not
    -http://helpx.adobe.com/creative-cloud/kb/aam-lists-removed-apps-date.html

  • Behaviour of "Disable/Delete User After End Date" Task

    Hi Expert,
    We ran the given OOTB task "Disable/Delete User After End Date" and the behavior is always delete. How,if possible, to change the behavior to disable?
    Thanks in advance.
    SK

    In order to change the behavior, you have to set the system manager preference called "Period to Delay User Delete" to something bigger than the task will make the user disabled and will automatically delete them at a future date.

  • Data Integrator complex job hangs after workflow completion

    Post Author: Iomega
    CA Forum: Data Integration
    I have a Data Integrator complex job, and if it fails with an error and I try to rerun it from the designer, it hangs after workflow completion.  So I have to replicate the job and manually run it, removing each workflow as it completes.  Our other DI jobs don't do this, they just flow to completion.  The data warehouse is an Oracle database.  Does anyone know how to correct this?

    Post Author: Iomega
    CA Forum: Data Integration
    I have a Data Integrator complex job, and if it fails with an error and I try to rerun it from the designer, it hangs after workflow completion.  So I have to replicate the job and manually run it, removing each workflow as it completes.  Our other DI jobs don't do this, they just flow to completion.  The data warehouse is an Oracle database.  Does anyone know how to correct this?

  • Itunes hang after latest updates

    Since the last updates to my iMac iI find that the iTunes is constantly Hanging. It does not matter if I'm not using iTunes, as soon as its working in the background it hangs sooner or later. When I work with my music files in iTunes it usually hangs after less than 30 minutes.
    How can this be?
    I do not want to start with a new music player since I have used iTunes for the last 10 years and I have all my music in it.
    But the way its acting now it seem like I have to use something else since iTunes is simply not working properly.

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem. But with the aid of the test results, the solution may take a few minutes, instead of hours or days.
    The test works on OS X 10.7 ("Lion") and later. I don't recommend running it on older versions of OS X. It will do no harm, but it won't do much good either.
    Don't be put off by the complexity of these instructions. The process is much less complicated than the description. You do harder tasks with the computer all the time.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. Backup is always a must, and when you're having any kind of trouble with the computer, you may be at higher than usual risk of losing data, whether you follow these instructions or not.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. As I wrote above, it changes nothing. It doesn't send or receive any data on the network. All it does is to generate a human-readable report on the state of the computer. That report goes nowhere unless you choose to share it. If you prefer, you can act on it yourself without disclosing the contents to me or anyone else.
    You should be wondering whether you can believe me, and whether it's safe to run a program at the behest of a stranger. In general, no, it's not safe and I don't encourage it.
    In this case, however, there are a couple of ways for you to decide whether the program is safe without having to trust me. First, you can read it. Unlike an application that you download and click to run, it's transparent, so anyone with the necessary skill can verify what it does.
    You may not be able to understand the script yourself. But variations of it have been posted on this website thousands of times over a period of years. The site is hosted by Apple, which does not allow it to be used to distribute harmful software. Any one of the millions of registered users could have read the script and raised the alarm if it was harmful. Then I would not be here now and you would not be reading this message. See, for example, this discussion.
    Nevertheless, if you can't satisfy yourself that these instructions are safe, don't follow them. Ask for other options.
    4. Here's a general summary of what you need to do, if you choose to proceed:
    ☞ Copy a particular line of text to the Clipboard.
    ☞ Paste into the window of another application.
    ☞ Wait for the test to run. It usually takes a few minutes.
    ☞ Paste the results, which will have been copied automatically, back into a reply on this page.
    These are not specific instructions; just an overview. The details are in parts 7 and 8 of this comment. The sequence is: copy, paste, wait, paste again. You don't need to copy a second time.
    5. Try to test under conditions that reproduce the problem, as far as possible. For example, if the computer is sometimes, but not always, slow, run the test during a slowdown.
    You may have started up in "safe" mode. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    6. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    7. Load this linked web page (on the website "Pastebin.") The title of the page is "Diagnostic Test." Below the title is a text box headed by three small icons. The one on the right represents a clipboard. Click that icon to select the text, then copy it to the Clipboard on your computer by pressing the key combination command-C.
    If the text doesn't highlight when you click the icon, select it by triple-clicking anywhere inside the box. Don't select the whole page, just the text in the box.
    8. Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    Click anywhere in the Terminal window to activate it. Paste from the Clipboard into the window by pressing command-V, then press return. The text you pasted should vanish immediately.
    9. If you see an error message in the Terminal window such as "Syntax error" or "Event not found," enter
    exec bash
    and press return. Then paste the script again.
    10. If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the test will run anyway, but it will produce less information. If you don't know the password, or if you prefer not to enter it, just press return three times at the password prompt. Again, the script will still run.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    11. The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, a series of lines will appear in the Terminal window like this:
    [Process started]
            Part 1 of 8 done at … sec
            Part 8 of 8 done at … sec
            The test results are on the Clipboard.
            Please close this window.
    [Process completed]
    The intervals between parts won't be exactly equal, but they give a rough indication of progress. The total number of parts may be different from what's shown here.
    Wait for the final message "Process completed" to appear. If you don't see it within about ten minutes, the test probably won't complete in a reasonable time. In that case, press the key combination control-C or command-period to stop it and go to the next step. You'll have incomplete results, but still something.
    12. When the test is complete, or if you stopped it because it was taking too long, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    At the top of the results, there will be a line that begins with the words "Start time." If you don't see that, but instead see a mass of gibberish, you didn't wait for the "Process completed" message to appear in the Terminal window. Please wait for it and try again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    13. When you post the results, you might see an error message on the web page: "You have included content in your post that is not permitted," or "The message contains invalid characters." That's a bug in the forum software. Please post the test results on Pastebin, then post a link here to the page you created.
    14. This is a public forum, and others may give you advice based on the results of the test. They speak for themselves, not for me. The test itself is harmless, but whatever else you're told to do may not be. For others who choose to run it, I don't recommend that you post the test results on this website unless I asked you to.
    Copyright © 2014, 2015 by Linc Davis. As the sole author of this work (including the referenced "Diagnostic Test"), I reserve all rights to it except as provided in the Use Agreement for the Apple Support Communities website ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • Lenovo T61 (Product 6458-W2R): explorer.exe hangs after logon - WinXP SP2

    +++ english below +++
    [german/deutsch]
    Wir setzen in unserem Unternehmen mehrere ThinkPad T61 ein.  Bei einigen dieser ThinkPad T61 (und nur beim ThinkPad T61!) haben wir inzwischen ein seltsames Phänomen, welches im Laufe der letzten 1-2 Monate auftrat und noch auftritt.  Dieses Phänomen trat nicht gleichzeitig auf, sondern nacheinander.  Und es tritt willkürlich auf.  Der jüngste Fall ist gerade 1 Tag alt.  Inzwischen sind 6 ThinkPad T61 davon betroffen.
    Alle ThinkPad T61 sind Mitglieder einer Domäne (Windows Server 2003) und durchlaufen ein Loginscript.  Das Loginscript beinhaltet Batchbefehle, Kix32 (für das Mappen von Netzwerklaufwerken und Druckern) und Teile der Matrix42 Empirum Management Software (für Softwaredistribution und Inventarisierung).  Es werden Gruppenrichtlinien angewendet.  Es werden via Matrix42 Empirum automatisch die neuen Patches und Updates seitens Microsoft auf alle Computer verteilt.  Alle Computer erhalten eine unbeaufsichtigte/standardisierte Installation via Matrix42 Empirum Management Software (ähnlich einem Image und der unbeaufsichtigten Windows-Installation).  Auf allen Rechnern ist Windows XP mit Service Pack 2 installiert.  Spezielle Software ist in der Regel nicht drauf, nur Microsoft Office 2003, der aktuelle Acrobat Reader sowie die aktuellen Standardplayer: Windows Media Player, Quicktime Player, RealPlayer, VLC media player.  Ggf. noch Nero 7 Standard bzw. Platinum (Spezielle Version).  Alle IBM/Lenovo ThinkPad verwenden zusätzlich die IBM/Lenovo-Utilities „ThinkVantage“.  Das Phänomen tritt unabhängig davon auf, ob das ThinkPad T61 in einer Dockingstation betrieben wird oder nicht.  Es ist auf jedem Computer in der Windows Registrierung eingestellt, dass der Desktop erst geladen wird, wenn das Loginscript durchgelaufen ist.
    Nun zur genauen Fehlerbeschreibung:
    Manchmal kann es bei einem Kaltstart vorkommen, dass nach der Anmeldung und nach dem Loginscript –während der komplette Desktop und die Startleiste bereits sichtbar sind und noch einige Dienste geladen werden– sich die explorer.exe aufhängt.  Die Startleiste lässt sich nicht bedienen.  Ebenfalls lassen sich dann auch auf dem Desktop keine Symbole doppelklicken.
    Wir setzen auch andere Computer ein, wo dieses Phänomen nicht auftritt, u.a.:
    - HP-Computer (Desktops, Evo SFF Series)
    - Fujitsu-Siemens-Computer (Desktops, ESPRIMO E Series)
    - IBM ThinkPad T20/21
    - IBM ThinkPad T40/T41/T42
    - IBM/Lenovo ThinkPad T60
    Das Problem tritt nur auf den noch relativ neuen ThinkPad T61 auf.
    Wir haben bereits einen ziemlich ähnlichen Fall unter…
    http://forums.techarena.in/showthread.php?t=694888&page=1
    http://forums.techarena.in/showthread.php?t=694888&page=2
    http://www.experts-exchange.com/OS/Microsoft_Operating_Systems/Windows/XP/Q_22718276.html …gefunden.
    [english]
    Unfortunately, I’m not fluent in the english language.
    We use a few ThinkPad T61’s in our company.  Meanwhile, at some ThinkPad T61’s (only ThinkPad T61!) we have a strange problem. This problem appears since the last 1-2 months and it still does exist.  This problem does not appear at the same time, it does appear successive.  And it appears random.  The last case is 1 day old.  Meanwhile, 6 ThinkPad T61 are concerned.
    All ThinkPad T61 are members of a domain (Windows Server 2003) and do execute a logon script.  The logon script contains Batch commands, Kix32 (for mapping network drives and printers) and parts of the Matrix42 Empirum Management software (for software distribution and inventory scan).  Group policies will apply.  Patches and updates will install on every computer via Matrix42 Empirum automatically.  All computers get a default/unattended installation via Matrix42 Empirum Management software (everywhere between an image and an unattended Windows installation).  All computers have installed Windows XP with Service Pack 2.  As a rule, special software isn’t installed, only Microsoft Office 2003, the actual Acrobat Reader and the actual default players: Windows Media Player, Quicktime Player, RealPlayer, VLC media player.  Sometimes, there is installed the Nero 7 Standard or rather Platinum (Special Edition) yet.  All IBM/Lenovo ThinkPad use IBM/Lenovo-Utilities „ThinkVantage“ additionally.  The problem exists if the ThinkPad T61 is connected to a docking station and also if the ThinkPad T61 is disconnected from a docking station.  On every computer exists a registry key which arranges it that the desktop only will be loaded after the logon script did run.
    Now the detailed error description:
    Sometimes the explorer.exe hangs after the cold start.  i.e.: The desktop (with icons and task bar) appears complete.  But the computer hangs if you try to click on the task bar or double click on any icons.  The computer will only run if we kill the process ‘explorer.exe’ and if we restart the explorer.exe.
    We use also other computers with the same installation and the same group policies where the problem does not exist, for example:
    - HP-Computer (Desktops, Evo SFF Series)
    - Fujitsu-Siemens-Computer (Desktops, ESPRIMO E Series)
    - IBM ThinkPad T20/21
    - IBM ThinkPad T40/T41/T42
    - IBM/Lenovo ThinkPad T60
    Only the new ThinkPad T61’s have this problem.
    We have found a similar case at…
    http://forums.techarena.in/showthread.php?t=694888&page=1
    http://forums.techarena.in/showthread.php?t=694888&page=2
    http://www.experts-exchange.com/OS/Microsoft_Operating_Systems/Windows/XP/Q_22718276.html
    Vielen Dank / Many thanks!

    I would run System Update and make sure I had all the updates available.
    Another thing to try is:
    1. Right-click on My Computer and click Properties
    2. Click on the Advanced tab
    3. Click on Settings under Performance
    4. Click on Data Execution Prevention
    5. Click on Turn on DEP for all programs and services except those I select, then check Windows Explorer
    We had to do that to some machines here after a push from corporate of the new ScriptLogic.This solved the problem.
    ThinkPad T61 15 Widescreen with nVidia Quadro graphics 6459CTO
    Windows 7 Enterprise and Windows XP Pro

  • Iphone 4 keeps on hanging after updating to iOS 5.0 and later to iOS 5.1

    My iphone 4 keeps on hanging after updating to iOS 5.0.  I can no longer make and receive calls.  If I am successful in making a call, it will never end even after pressing stop.  The problem still persists even after updating to iOS 5.1.  How do I resolve this problem?

    Try a reset by pressing the home and sleep buttons until you see the Apple logo, ignoring the slider. Takes about 5-15 secs of button holding and you won't lose any data or settings.

Maybe you are looking for