Jdeveloper tester doesn't work

I create my own app. module and deploy it as ejb on 8i from jdeveleoper, everything fine.
but when i test it from jdeveloper from its tester, and have generated client jar file in classpath, i get unable to create app. module.
I see that lots of people get this error. Can anyone please. let me know what special thing i have to do to get it working.
Thanks,
Punit

Regarding the MacOSX install:
I had to put together all hints including the faked rt.jar and core.jar from the upper post (thanks Frank)
using -Dos.name=unix helped resolving the correct free diskspace but i got a heap space error in Java.
Alltogether this would be:
create the missing dir presuming you use java 1.6 (as root):
mkdir -p /System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home/1.6/jre/lib
cd /System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home/1.6/jre/lib
echo "." > rt.jar
echo "." > core.jar
cd to the directory where you have your wlsVersion_generic.jar
java -d64 -Dos.name=unix -Xms256m -Xmx512m -jar wls1033_generic.jar
that worked for me...
Michael

Similar Messages

  • Data Driven Test doesn't work in coded UI

    Hi,
    I have written my first coded ui data driven test (Visual Studio 2012).  Although the test ran and was marked passed. I don't think it actually did anything.  
    I have 2 fields (Input and Output) on my csv file.
    n my app,  I want to enter the input field in a field called GoTo which is an UITbedit field, hit enter.  This should open another window where I want to validate the window title = to my Output 
    Here is my code
            [DataSource("Microsoft.VisualStudio.TestTools.DataSource.CSV", "|DataDirectory|\\Data/MainData.csv", "MainData#csv", DataAccessMethod.Sequential), DeploymentItem("MainData.csv"), TestMethod]
            public void DataDrivenTest()
                //string paramVal = TestContext.DataRow["Input"];
                this.UIMap.EnterGoToValueMainParams.TextInputEditText =
                    TestContext.DataRow["Input"].ToString();
        this.UIMap.EnterGoToValueMain();
                this.UIMap.PressEnter();
                this.UIMap.AssertWindowTitleExpectedValues.TextOutputEditText =
                    TestContext.DataRow["Output"].ToString();
    During playback, it appeared that the coded ui test had looped through the csv file, but it didn't actually write anything to the edit field that I was testing.

    It still doesn't work,
    I modified my code as follows:
                this.UIMap.EnterGoToValueMainParams.TextInputEditText =
                       TestContext.DataRow["Input"].ToString();
                this.UIMap.EnterGoToValueMain();
                this.UIMap.PressEnter();
                this.UIMap.AssertWindowTitleExpectedValues.TextOutputEditText =
                       TestContext.DataRow["Output"].ToString();
                this.UIMap.AssertWindowTitle();
    The application appears to loop through the file, but it is placing my original entered test "1" in the edit field during both iterations.  The playback is slow enough that I can see what is being entered. It doesn't seem to be replacing the
    "1" with a "5" from my input file.

  • How to trigger a MouseEvent from TLF, my test doesn't work

      Hi,
          I run into a problem while using the Listener of TLF,
          Inside  the  TextFlow,  I have several Paragraphs.
          What I wish to accomplish is to trigger a mouse Event, like ROLL_OVER, ROLL_OUT event , when  my mouse is over a on one of the Paragraphs.
          I used to experiment a while , but never seem to work, just the examples below
          _textFlow.addEventListener(FlowElementMouseEvent.ROLL_OUT,onMouseHandler);
          _textFlow.addEventListener(FlowElementMouseEvent.ROLL_OVER,onMouseHandler);
           ///   which doesn't work.         i need the event response ,so i can manipulate the paragraph
    private function onMouseHandler(e:FlowElementMouseEvent):void
         trace("onMouseHandler" +  e.type  );
         var para:ParagraphElement = e.flowElement.getParagraph();
         trace(para.textLength);
    Thanks  in   advance!!!

       this is the code
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication
       xmlns:s="library://ns.adobe.com/flex/spark"
       xmlns:mx="http://www.adobe.com/2006/mxml"
       creationComplete="init()">
    <mx:Script>
    <![CDATA[
    import flash.display.Sprite;
    import flash.events.MouseEvent;
    import flashx.textLayout.container.ContainerController;
    import flashx.textLayout.conversion.TextConverter;
    import flashx.textLayout.elements.TextFlow;
    import flashx.textLayout.events.*;
    import flashx.textLayout.elements.SpanElement;
    import flashx.textLayout.elements.InlineGraphicElement;
    import flashx.textLayout.elements.ParagraphElement;
    import flashx.textLayout.elements.TextFlow;
    import flashx.textLayout.elements.FlowElement;
    import flashx.textLayout.tlf_internal;
    private var _textFlow:TextFlow;
    private var textSprite:Sprite;
    private var backgroundSprite:Sprite;
    var source:XML = <TextFlow xmlns="http://ns.adobe.com/textLayout/2008">
    <div></div>
    <p>
    <img source="air.png"/>
    <span>Flex is a highly productive, free open source framework for building and maintaining expressive web applications that deploy consistently on all major browsers, desktops, and operating systems. While Flex applications can be built using only the free Flex SDK, developers can use Adobe® Flex® Builder™ 3 software to dramatically accelerate development. Try Flex Builder 3 free for 60 days. Try ILOG Elixir to enhance data display in your Flex applications.</span>
    <br/>
    </p>
    <div></div>
    <p>
    <span>Adobe® Flex® 3 是用于构建和维护在所有主要浏览器、桌面和操作系统一致地部署的极具表现力的 Web 应用程序的高效率的开放源码框架。 可以使用免费的 Flex SDK 构建 Flex 应用程序, 开发人员可以使用 Adobe Flex Builder™ 3 软件来显著促进开发。 60 天内免费试用 Flex Builder 3</span>
    <br/>
    </p>
    <div></div>
    </TextFlow>;
    private function init():void
    backgroundSprite = new Sprite();
    canvas.rawChildren.addChild(backgroundSprite);
    textSprite = new Sprite();
    canvas.rawChildren.addChild(textSprite);
        _textFlow = TextConverter.importToFlow(source, TextConverter.TEXT_LAYOUT_FORMAT);
    _textFlow.fontFamily = "Georgia, Times";
    _textFlow.fontSize = 16;
    _textFlow.columnCount = 2;
    _textFlow.columnGap = 30;
    _textFlow.columnWidth = 320;
    setListenerOnParagraph(_textFlow);
    _textFlow.flowComposer.addController(new ContainerController(textSprite,canvas.width,canvas.height));
    _textFlow.flowComposer.updateAllControllers();
    import flashx.textLayout.tlf_internal;
    private function setListenerOnParagraph(textFlow:TextFlow):void
    use namespace  tlf_internal;
    for(var i:int =0;i < textFlow.numChildren;i++)
        var para2:FlowElement = textFlow.getChildAt(i);
       if(para2 is  ParagraphElement)
         para2 = para2 as ParagraphElement
         trace("paragraph:"+para2.textLength);
         para2.tlf_internal::getEventMirror().addEventListener(MouseEvent.CLICK, regionClickHandler);      //  wrong here
    public function regionClickHandler(evt:MouseEvent):void {
    trace("click");
    ]]>
    </mx:Script>
    <mx:Canvas width="614" height="321" x="30" backgroundColor="#FDFBFB" id="canvas">
    </mx:Canvas>
    </mx:WindowedApplication> 

  • WebUtil Demo OLE test doesn't work

    Hi
    I have downloaded the WebUtil demo and all tabs/functionalities in the form WU_TEST_105 works except the OLE test. When I click on the button "Write to Word" the form just hangs/freezes adn nothing happens. I added the lines
    webutillogging=console
    and
    webutilloggingdetail=detailed
    to my formsweb.cfg and here are part of the java console output:
    .Exception occurred during event dispatching:
    java.lang.NoClassDefFoundError
    at oracle.forms.webutil.ole.OleFunctions.create_obj(OleFunctions.java:398)
    at oracle.forms.webutil.ole.OleFunctions.getProperty(OleFunctions.java:189)
    at oracle.forms.handler.UICommon.onGet(Unknown Source)
    at oracle.forms.engine.Runform.onGetHandler(Unknown Source)
    at oracle.forms.engine.Runform.processMessage(Unknown Source)
    at oracle.forms.engine.Runform.processSet(Unknown Source)
    What does this mean? What shall I do?
    regards // Frederic

    My webutil is downloaded already.
    Loading http://appsrv1.sarar.com.tr:7778/forms/java/frmall_jinit.jar from JAR cache
    Loading http://appsrv1.sarar.com.tr:7778/forms/java/icons.jar from JAR cache
    Loading http://appsrv1.sarar.com.tr:7778/forms/java/frmwebutil.jar from JAR cache
    Loading http://appsrv1.sarar.com.tr:7778/forms/java/jacob.jar from JAR cache
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Forms Applet version is : 10.1.2.0
    Exception occurred during event dispatching:
    java.lang.ExceptionInInitializerError: java.security.AccessControlException: access denied (java.lang.RuntimePermission loadLibrary.jacob)
         at java.security.AccessControlContext.checkPermission(Unknown Source)
         at java.security.AccessController.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkLink(Unknown Source)
         at java.lang.Runtime.loadLibrary0(Unknown Source)
         at java.lang.System.loadLibrary(Unknown Source)
         at com.jacob.com.Dispatch.<clinit>(Dispatch.java)
         at oracle.forms.webutil.ole.OleFunctions.create_obj(Unknown Source)
         at oracle.forms.webutil.ole.OleFunctions.getProperty(Unknown Source)
         at oracle.forms.handler.UICommon.onGet(Unknown Source)
         at oracle.forms.engine.Runform.onGetHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.processEventEnd(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Forms Applet version is : 10.1.2.0
    Exception occurred during event dispatching:
    java.lang.NoClassDefFoundError
         at oracle.forms.webutil.ole.OleFunctions.create_obj(Unknown Source)
         at oracle.forms.webutil.ole.OleFunctions.getProperty(Unknown Source)
         at oracle.forms.handler.UICommon.onGet(Unknown Source)
         at oracle.forms.engine.Runform.onGetHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.processEventEnd(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    I have this, what can I do to fix this?

  • Swf test doesn't work

    I've created an image carousel and tested it in Flash and all
    is fine, but when i try and view it as an swf it doesn't playback?
    Is there are coding i need or is there something I'm
    missing?

    I've created an image carousel and tested it in Flash and all
    is fine, but when i try and view it as an swf it doesn't playback?
    Is there are coding i need or is there something I'm
    missing?

  • Has anyone at apple ever heard of regression testing? ATV audio still doesn't work on 4.3.3

    I really don't think that there are any software validation principles in place at apple because my Apple TV has now been unusable for over a month due to all of these failed software updates.  Upgraded to 4.3.3 yesterday and it didn't resolve any of my audio issues.  I am using a DVI connection with optical audio out.  No audio on every 4.3 update.  I can get broken audio on the latest update (4.3.3) if I crank my receiver up to 50.  Used to get loud audio on my receiver set to 20.
    If anyone is actually testing this software using any known software validation principles, it would amaze me.  Someone needs to give me my money back for this black boat anchor.

    Alley_Cat wrote:
     this support note indirectly suggests it should work with HDCP enabled DVI adapters: 
    http://support.apple.com/kb/HT4428
    Specifically, the last section:
    Additional Information
    Even if your HDTV supports HDCP, you may still experience HDCP related issues when connecting your Apple TV (2nd generation) to your HDTV if:
    You have connected your Apple TV to a HDMI-to-DVI adapter that does not support HDCP
    You have connected your Apple TV to your TV using a HDMI cable that does not support HDCP
    You have connected your Apple TV to your TV via an AV receiver that does not support HDCP
    You have connected your Apple TV to a HDMI hub, switch, scaler, or extender that does not support HDCP
    None of that is surprising at all. It's what I meant when I said it would be "unfathomable" to assume DVI wouldn't work when HDCP is supported. It would actually require extreme negligence or malice to create a device where DVI doesn't work, hence "unfathomable".
    I don't even know where to buy an HDMI<->DVI adapter or cable that doesn't support HDCP. The straight-through $2 adapters and $5 cables from places like Monoprice.com work perfectly and "support" HDCP. I know this because I've used both. ETA: I put "support" in quotes because it's wrong to emphasize this as some special quality that might be hard to find or expensive. You'd have to actively seek out an adapter or cable that does not "support" HDCP.

  • JDeveloper 10.1.2.3 Download Link Doesn't Work

    JDeveloper 10.1.2.3 link on JDeveloper download page doesn't work:
    http://www.oracle.com/technology/software/products/jdev/archives.html
    We get an error:
    "Sorry, this page was not found. (ErrorDocument 404)"

    I still get the same problem - when I click the "Download" button, I get the following error:
    We're sorry.
    An unexpected exception has occurred when contacting Database. Cannot proceed further.
    Please re-visit the previous page(s) or start a new session.
    If you would like to stay with this session, continue on to the next page.
    If you have questions regarding registration, please contact us.

  • Test jdbc_javabasket in XCM doesn't work

    Hello,
    after Installation of ISA R/3 basket data in the b2b Application doesn't display (empty page).
    In the XCM Administartion of the application b2b I create a jdbc component "xyzjdbc". The Test jdbcping works fine but the test jdbc_javabasket doesn't work.
    Error:
    Error executing 'SELECT CREATE_MSECS, UPDATE_MSECS, REF_GUID, PARTNER_ID, PARTNER_ROLE, CLIENT, PARTNER_GUID FROM BUSINESSPARTNERS WHERE REF_GUID='1'' java.sql.SQLException: [WR3CRMT]Invalid object name 'BUSINESSPARTNERS'.
    I have create the jdbc-pool in the Visual administrator like in sap note 630753 (with database URL: jdbc:inetdae7:wr3crmt:1433?sql7=true&database=WHT).
    Database WHT was created during installation of the J2EE
    (see chapter 5.2 Installing the CRM Web Application with SAP Inst of
    documentation "Installation Guide CRM 4.0 SP06 -6.20 Web Application"). The database isales was created after chapter
    6.5 Install Database Tables on MS SQL Server of documentation "Installation Guide CRM 4.0 SP06 - 6.20 Java Components
    of E-Selling and Channel Management on a SAP J2EE Engine 6.20".
    Kind Regards,
    Mischa Gwinner

    Hi all!
    With a custom procedure or a sql query, we don't have this problem. It looks like for me, this problem is specific to the Oracle 'DBMS_*' procedures...
    Christian

  • JDeveloper 10.1.3.4 download link doesn't work.

    Have anyone downloaded new version of JDeveloper (10.1.3.4) ? Download link doesn't work for me.
    http://www.oracle.com/technology/software/products/jdev/htdocs/soft10134.html
    Kuba

    I also have the same issue.
    Looks like they are working on it, this message is on the top level Downloads page:
    Important Note: As of 2:30pm PT Sept. 18, OTN software downloads are currently unavailable. We apologize for any inconvenience and are working to restore them as quickly as we can.

  • JDeveloper 10.1.3.2 pdk-struts taglib doesn't work

    Hi all,
    I just installed new jDev version (10.1.3.2) and I migrated all projects and setting from 10.1.3.1, but I still got a little/big problem with PDK-Struts taglib.
    In the previous jDev version portlet add-in wasn't include and to use pdk-struts integrate in the IDE I managed it as a JSP TagLib and everythings works fine.
    In new version the taglib in native and ready (it doesn't required to be registered!) to use but when I'm building the project I found and exception
    Error: java.lang.NoClassDefFoundError: org/apache/struts/taglib/html/FormTag
    mind!!!
    - the same project in version 10.1.3.1 has no problem to build
    - I checked and seleted all the libraries required
    Anyone knows why the new jDev version doesn't work??
    please someone helpMe!!!!
    Regards
    spig@

    Yea, I had those "is not a registered namespace in TLD" errors too, but regarding Struts HTML... I had to go to the Project properties and add the library.. (It went missing during conversion)
    Its frustrating and I know how you feel. Try this, try that and still doesnt work. My advice is to remove taglibs. Close Jdev. Open Jdev add them again. It have to work. Also it might help to delete class directories. Also be aware that some libraries are kept in "\WEB-INF\lib" and during conversion they remained (those libraries were from old Jdev you have to replace them with new version)
    So, all in all keep tryng, it have to work :)
    Good luck...

  • Ipa-test-interpreter works; ipa-test doesn't

    I could use some help getting my #AS3 / #AIR application running on #iOS !
    Right now I have a .SWF (v11) that I'm converting to an .IPA using Adobe AIR (v3.7) on Windows (7).
    If I do the conversion with the -target of ipa-test-interpreter it works great.
    If I do the conversion with ipa-test, ipa-debug, ipa-ad-hoc, or ipa-appstore, the application seems to compile fine but upon execution of the app on my iPad it just shows a black screen.
    This means I can test and develop but I won't ever actually be able to deploy to the app-store. Anyone else run into this?

    The AIR SDK is 3.7, and I'm encountering this on the latest iOS version (as of May 10th, 2013) on iPad 2 and the new iPad. I'm compiling from a 64-bit version of Windows 7.
    Here's my ADT command:
    adt -package -target ipa-test  -storetype pkcs12 -keystore "cert/ios_development.p12" -storepass PASSWORD -provisioning-profile cert/cert.mobileprovision "dist\output.ipa" "buildConfig/ios/application.xml" -C bin . -C "icons" .

  • Test Mode doesn't work

    Has anyone run across a time when you put a host into testmode and testmode doesn't work like it is suppose to? I had to uninstall CSA from the host to get what I was trying to do to work. Just wondering....

    Try the BUG - CSCfx00032

  • It doesn´t work weblogic sever 10.3.2 with jeveloper 11.1.1.2.0 with Win 7

    Hi everyone, how must I configurate weblogic server with jdeveloper 11.1.1.2.0 on Windows 7 x86 ?
    I installed jdeveloper 11.1.1.2.0 with weblogic server 10.3.2 that comes in jdevstudio 11.1.1.2.0.
    JDeveloper works but when I am going to test any web application weblogic doesn´t work and the
    service never starts up.
    I have the next message:
    the system cannnot found the specified path
    Process Exited
    I have to set up any environment varialbes or I need any plugging.

    Hi,
    is there any more information than this ? Which path is it that the system cannot find ? Can you try installing JDeveloper into a directory that does not contain blanks ?
    Frank

  • CommandButton doesn't work in JSF fragment?

    Hi all,
    Why commandButton doesn't work in JSF fragment? while I set partialSubmit as true!
    As following:
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    xmlns:h="http://java.sun.com/jsf/html">
    <af:inputText label="Your Name" id="it1"/>
    <af:inputDate label="BirthDate" id="id1"/>
    <af:commandButton partialSubmit="true" text="Calculate Age" id="cb1"/>
    <af:outputText id="ot1"/>
    </jsp:root>
    Thanks in advance :)))

    The full jsff code is:
    <?xml version='1.0' encoding='windows-1252'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    xmlns:h="http://java.sun.com/jsf/html">
    <af:inputText label="Your Name" id="it1" binding="#{fragment_bean.it1}"/>
    <af:inputDate label="BirthDate" id="id1" binding="#{fragment_bean.id1}"/>
    <af:commandButton partialSubmit="true" text="Calculate Age" id="cb1"
    binding="#{fragment_bean.cb1}"
    action="#{fragment_bean.cb1_action}"/>
    <af:outputText id="ot1" partialTriggers="cb1" value="test"
    binding="#{fragment_bean.ot1}"/>
    <!--oracle-jdev-comment:auto-binding-backing-bean-name:fragment_bean-->
    </jsp:root>
    Java Bean is generated using "Auto Bind" feature in Jdeveloper 11.1.1.3.0:
    public class fragment_bean {
    private RichOutputText ot1;
    private RichCommandButton cb1;
    private RichInputDate id1;
    private RichInputText it1;
    public fragment_bean() {
    public void setOt1(RichOutputText ot1) {
    this.ot1 = ot1;
    public RichOutputText getOt1() {
    return ot1;
    public void setCb1(RichCommandButton cb1) {
    this.cb1 = cb1;
    public RichCommandButton getCb1() {
    return cb1;
    public void setId1(RichInputDate id1) {
    this.id1 = id1;
    public RichInputDate getId1() {
    return id1;
    public void setIt1(RichInputText it1) {
    this.it1 = it1;
    public RichInputText getIt1() {
    return it1;
    public String cb1_action() {
    // Add event code here...
    System.out.println("Hi test !!!");
    return null;
    }

  • I have a 2.2 GHz Intel Core i7 macbook pro that has lion installed when I recieved it, according to the support pages AHT is supposed to work over the internet if it wasn't installed, Mine wasn't and it doesn't work. Where can I download it from?

    I Have a 2.2 GHz Intel Core i7 macbook pro, I recieved it with OSx 7.2 lion installed, I need to us AHT (apple hardware test) according to the support page that I copy here
    Additional Information
    Apple Hardware Test is included on the DVDs that are shipped with some Macintosh computers. If the copy on your hard drive becomes unavailable, use the DVDs to run Apple Hardware Test.
    For Intel-based Apple computers that shipped with Mac OS X v10.5.4  or earlier, Apple Hardware Test is located on the Mac OS X Install Disc 1  and should be included with your computer.
    For Apple computers that shipped with Mac OS X v10.5.5 to 10.6.7, Apple Hardware Test is located on the Applications Install  Disc 2 and should be included with your computer.
    For some Apple computers that shipped with OS X Lion, if Apple Hardware Test cannot be found on the hard drive, an Internet-based version starts up instead.
    This doesn't work as the additional information statement says it should above.  Could someone at apple give me an idea of where to get it or what the "REAL" solution is, since it doesn't work on an internet version which was confirmed today at the Genius Bar in the Apple store.
    Please help me

    chrisfrommarion wrote:
    Thanks, while it worked on yours it doesn't work on mine, any other ideas?
    Are you holding down the "d" key, all by itself, just after the system shuts down for a restart?
    And how long did you hold it down?
    I held mine down for about 40-50 seconds. Then I lookat at my routers WAN light and it was flickering so I let up on the d key.
    If that does not work then maybe there is something wrong with your MBP. Is that the reason you want to run this test, something isn't right with your unit?

Maybe you are looking for