Debug InDesign problem

Dear All,
I successfully installed InDesign CS4 Debug and it is working fine on my PC. But I am facing below problem:
InDesign CS4 Release version is asking for serial number. Release version of InDesign CS4 never asked for serial number before installation of Debug version of InDesign.
When I tried to debug my code Debug version of Indesign CS4 is not get launched on my PC on the same time it is working fine on other PC which configuration is high like 3GB of RAM.
Please let me know how I can overcome these issues. Definetly some one had face the same problem in past. I am using debug version of InDesign first time.
Regards,
Rajeev

Hi thanks I checked this also.
But it is not solving my problem. First strange thing is this pre-installed release version of InDesign CS4 was working fine from last two months after installing debug version of InDesign CS4 it started asking for serial number. And after few days shortcuts stops working, even the i checked shortcut keyboard "Set", but there is no set available.
Regards,
Rajeev

Similar Messages

  • Unable to debug indesign cs5 plugin in windows

    Hi, again. Originaly posted here: http://forums.adobe.com/thread/766469?tstart=0
    We are having some problems with an indesign sc5 plugin, it works perfectly in macosx but in windows it causes indesign to crash. Anyway after some trouble shooting we tried running it in debug indesign. Problem is that the debug version of indesign wont even start, it fezzes in the splash screen on "Registering xxx plug-ins". It hangs before we can write anything in log files and thatching a debugger gives nothing. Closer inspections
    revealed that all the indesign treads is in "waiting" state. Waiting for what? Don't know. Killing one of the threads allows indesign to start but it will not have loaded the plugin and we are back on square one unable to debug.
    Anyway I installed the osx version of debug indesign and starting it gives an assert like: 
    No translation of key 'com.adobe.rc.operationalmessages' to British string. 
    BreakStrToDebugger
    ASSERT_FUNC
    Examining the stack of the indesign main thread in windows gives pretty much the same thing:
    0, ntkrnlpa.exe!KiDeliverApc+0xb3
    1, ntkrnlpa.exe!ZwYieldExecution+0x19ae
    2, ntkrnlpa.exe!NtWaitForSingleObject+0x9a
    3, ntkrnlpa.exe!KeReleaseInStackQueuedSpinLockFromDpcLevel+0xb14
    4, ntdll.dll!KiFastSystemCallRet
    5, kernel32.dll!WaitForSingleObject+0x12
    6, PMRuntime.dll!ClientShowAssert+0x8d
    7, PMRuntime.dll!BreakStrToDebugger+0x15
    8, PMRuntime.dll!ASSERT_FUNC+0x117
    9, NETAPI32.dll+0xbe86972
    (as reported by the ProcessHacker process viewer)
    So the win version is trying to show an assert window but fails, locking indesign in the splash screen? Stoping indesign before any plugin execution?
    As we cant get any debug information out we don really know what the problem is, making it rather hard to debug. We have triple checked the build and linking options. Studied the plugin exports. Inserted an ridiculous amount of trace statements in the code, doesn't work in the debug version but anyway.
    Have anyone had a problem like this or know what might cause it?
    What happens in the indesign startup process, what does the “Registering plug-ins” actually do? It's not executing any plugin functions and the the initialization of the plugins doesn't happen until later.

    You are correct in that none pf the plug-in code is executed during the "Registering ### plug-ins" phase. What is done here is simply loading the plugins by reading from their resource definitions. For example, if you try to load a CS4 plug-in in InDesign CS5 or if you try to load a release plug-in in debug version you will get errors and popups here and your plugin will not load and be available (these are just example errors and may not be relevant to your case). As far as I know InDesign should not crash just because there is a problem with your plugin, but there could be bugs.
    I would recommend:
    1. Remove your plugins and verify that InDesign debug starts properly without any 3rd party extensions.
    2. Compile one of the SDK sample plugins (debug target) and make sure that InDesign still starts properly.
    3. Create a new project using DollyXs, compile it and make sure it loads in InDesign.
    4. Remove the template files and add your own source files except the basic .fr file and make sure it still loads in InDesign.
    5. Keep changing things one at a time in your .fr file and verify it still loads until it looks exactly like your original .fr file.
    Good luck.
    Note: "No translation of key 'XXX' to British string." errors is in general quite harmless. It's only a problem with the string translation and should only affect string output in menus/dialogs etc. They should of course be fixed, but can generally be ignored for a while unless an infinite ASSERT loop prevents you from debugging.

  • Assertion while opening the plugin in Debug Indesign

    Hi All,
    I have created a plugin( dialog based plugin). I have two button in the dialog. when i open the dialog in debug Indesign CS3, an assertion
    is thrown saying  " MGenericButtonView widget kxxxxxButtonWidgetID is 0 pixels tall". How to resolve this issue?
    Thanks
    sakthi

    Hi Patrick,
    I checked with the resource files and height is > 0 pixels. Below are the two button defined in the resource file
            ButtonWidget
                kMyProjSetTextButtonWidgetID, // The Identifier for this Widget
                kSysButtonPMRsrcId, // The Resource ID
                kBindNone, // Frame binding
                Frame(269,79,374,99)
                kTrue, // Is this visible
                kTrue, // Is this enabled
                kMyProjSelectTextButtonKey,  // The String value
            ButtonWidget
                kMyProjSelectItemButtonWidgetID, // The Identifier for this Widget
                kSysButtonPMRsrcId, // The Resource ID
                kBindNone, // Frame binding
                Frame(39,104,145,130)
                kTrue, // Is this visible
                kTrue, // Is this enabled
                kMyProjSelectItemButtonKey,  // The String value
    I am not getting any assertion for first button(  kMyProjSetTextButtonWidgetID).The problem is only with the second button (kMyProjSelectItemButtonWidgetID.)
    Before displaying the second button it  throws an assertion, if ignored, the second button is displayed as flat button.
    Thanks
    Sakthi

  • RE: (forte-users) Debugging 'fixes' problem!!!

    Duncan
    This is often indicative of a race condition, especially when
    multi-threading is involved.
    What can happen is that task A is using something created or initialized by
    task B,
    and task B hasn't gotten around to doing its thing before task A asks for
    it.
    When running in debug mode, you give everything a lot more time to get
    things
    done while it's waiting for you to click the next button. So, when task A
    starts task B,
    you click Run on task B, watch it happen, go back to task A and click,
    watch, click, etc.,
    and by the time you get to the trouble spot, task B has long since done what
    it had to do.
    HTH.
    Ken.
    ==========================
    Ken Gacioch
    Senior Consultant
    Caro Systems, Inc.
    [email protected]
    -----Original Message-----
    From: Duncan Kinnear [SMTP:[email protected]]
    Sent: Sunday, November 21, 1999 11:33 PM
    To: [email protected]
    Subject: (forte-users) Debugging 'fixes' problem!!!
    Hi folks,
    I've got a weird one here.
    I'm trying to find out why my code to highlight a particular outline field
    row does not work.
    However, when I run it in debug, it works perfectly! (The correct row is
    highlighted). Anybody got any idea how I can get debug to behave
    consistently with "The running man"?
    I have tried using "<OutlineField>.UpdateFieldFromData()" as well as
    using the same method on the specific DisplayNode involved.
    I must point out that the outline field is in a window running as a
    separate asynchronous task. Would that make any difference when
    running in debug? When the second debug window appears for this
    task I just click on the "Go" button and there are no breakpoints.
    Any help would be greatly appreciated.
    Cheers,
    Duncan Kinnear,
    McCarthy and Associates, Email:
    [email protected]
    PO Box 764, McLean Towers, Phone: +64 6 834 3360
    Shakespeare Road, Napier, New Zealand. Fax: +64 6 834
    3369

    Duncan
    This is often indicative of a race condition, especially when
    multi-threading is involved.
    What can happen is that task A is using something created or initialized by
    task B,
    and task B hasn't gotten around to doing its thing before task A asks for
    it.
    When running in debug mode, you give everything a lot more time to get
    things
    done while it's waiting for you to click the next button. So, when task A
    starts task B,
    you click Run on task B, watch it happen, go back to task A and click,
    watch, click, etc.,
    and by the time you get to the trouble spot, task B has long since done what
    it had to do.
    HTH.
    Ken.
    ==========================
    Ken Gacioch
    Senior Consultant
    Caro Systems, Inc.
    [email protected]
    -----Original Message-----
    From: Duncan Kinnear [SMTP:[email protected]]
    Sent: Sunday, November 21, 1999 11:33 PM
    To: [email protected]
    Subject: (forte-users) Debugging 'fixes' problem!!!
    Hi folks,
    I've got a weird one here.
    I'm trying to find out why my code to highlight a particular outline field
    row does not work.
    However, when I run it in debug, it works perfectly! (The correct row is
    highlighted). Anybody got any idea how I can get debug to behave
    consistently with "The running man"?
    I have tried using "<OutlineField>.UpdateFieldFromData()" as well as
    using the same method on the specific DisplayNode involved.
    I must point out that the outline field is in a window running as a
    separate asynchronous task. Would that make any difference when
    running in debug? When the second debug window appears for this
    task I just click on the "Go" button and there are no breakpoints.
    Any help would be greatly appreciated.
    Cheers,
    Duncan Kinnear,
    McCarthy and Associates, Email:
    [email protected]
    PO Box 764, McLean Towers, Phone: +64 6 834 3360
    Shakespeare Road, Napier, New Zealand. Fax: +64 6 834
    3369

  • InDesign problems on Macbook Air running Lion.

    HI folks,
    I have recently purchased a 2011 Macbook Air, running Lion. I have a copy of Indesign CS4 that I am trying to get running on this machine. I previously had it activated on my macbook pro and had no problems. I deactivated it from that computer and have activated it on the new machine. After creating a new document in InDesign I find that I get the beach ball and it won't do anything. Have any of you had a similar experience? Do any of you know the solution to this problem?
    Any help would be greatly appreciated!
    James.

    Well, you haven't given us lots of detail - but only because there aren't that many details anyways, right?
    Did you install from the original media? (It never would have occurred to me to just drag apps off one machine and drop them on another, but people do this sometimes.)
    Have you tried to uninstall and reinstall? (That's what I'd do first if a fresh install of a program was borked from the very beginning.)
    Have you tried it as a new user? (If it works in a new user account, then the problem is with your user account, not with your install of ID.)
    There are other things to try - search the forums for removing the SING datastore, or resetting preferences - but really the uninstall/reinstall should make it work right off the bat, and it also should take less time than actually diagnosing the problem & fixing it.

  • CS2 InDesign problems with Snow Leopard

    I recently purchased a new iMac with Snow Leopard. I installed my CS2 and everything seemed okay. Apple said I would have no trouble with CS2 on the new operating system.
    InDesign is doing strange things. When I move a text box, the text disappears. I have to click the text cursor over the text and it reappears. Also, starting yesterday, when I export a file to PDF, InDesign crashes.
    Other than purchasing CS4, is there a way to fix these problems?
    Thank you.

    Sorry my email showing no message. What would be doing that?
    I called Apple and they told me to install Rosetta, which I did. It helped for a while—I could move a text box and the text would not disappear but I still could not export to a pdf without InDesign crashing. They gave me a number to call for Adobe. I haven't called yet because I know the answer.
    This is really a pain. I am working on a 32 page document with photos and lots of text. I always export to a pdf so I can send it out for proofing. I will have to transfer the files to my old computer to make pdfs.
    Thanks for all your help.

  • Importing Word into InDesign, problem with styles

    OS 10.6, CS5
    Hi everyone,
    Does anyone have any experience with importing styled Word docs into InDesign?
    Editors style their Word documents with some basic styles (Text, References, Headline, etc.) using a Word template that I created. Designers use import options to match the Word styles to the ID styles. This worked fine in Word 2004 and InDesign CS3: Word  "text" style would map on import to the InDesign "text" style, even though they had totally different attributes. Superscripts, italics, etc. would be respected as local overrides in InDesign.
    Then we upgraded to CS5. Automatic mapping on import no longer seems to work: After importing text, all the styles in InDesign have local overrides assigned to them that don't make sense (hyphenation exceptions, tab settings). So I'm left with importing the Word styles, using auto-renaming so that InDesign explicitly does NOT match styles.
    Then delete the Word styles one by one from the paragraph style panel, replacing with the desired ID style.
    This has gone on for several months and we've now upgraded to Office 2011 but that hasn't solved the problem.
    With Word 2011 docx files, the import works almost like it did in CS3, the styles almost come in cleanly: If the style in Word has NO local overrides, such as italics or superscripts, the InDesign style is correctly applied. The problem is those local overrides in Word--InDesign not only respects the italic or superscript, it also respects the font attribute. All the Word styles are Times New Roman so all superscripts in InDesign are coming in as superscript + TNR. (see screenshot)
    Are we left with our original work-around? Importing styles then manually deleting and replacing them?
    This is frustrating because it used to be smooth and seamless and while some new features of CS5 are great, it's annoying that it's broken this fundamental function!
    I've tried saving the Word files as doc or rtf instead of docx but this doesn't make a difference in this problem.
    Any help or advice would be much appreciated.

    I'm an author / publisher.  I write in Word and I publish with InDesign. When I'm in the review stages, I like to edit my text in Word, so I export the text as an RTF.  When I import it back into InDeisgn I often find that some of the styles have annoying overrides from Word that break things.  (1) Paragraph style stuff about hyphenation and (2)  Characters style stuff about  Character direction: Left-to-Right style.
    * Easy global  fix:  select the whole text open the Window | Style | Paragraph window, and click the button on the bottom to remove all overrides. And do the same for the Window | Style | Character window. Before doing this, I like to check that I don’t have any italics that are in the file as overrides rather than being in there as part of a header style or as part of the Emphasis style that I try to use throughout the text instead of just an italic override. It makes me uneasy to remove all overrides, as I always worry there might be an important one I could have kept.
    * (1) Specific fix for the hyphenation overrides: Make sure the hyphenation settings in the individual InDesign paragraph styles match, so far as possible, the Word global hyphenation settings in the Page Layout | Hyphenation dialog of Word.    InDesign will import any Word hyphenation settings that don’t match the InDesign doc styles as overrides.
    Specifically,  set InDesign Hyphen Limit to ( say) 1 and set Word | Hyphenation | Hyphenation Options | Limit consecutive hyphens to the same number (say) 1. Also set InDesign Paragraph Style Hyphenation | Hyphenation Zone to (say) 0.5” and set Word | Hyphenation | Hyphenation Options | Hyphenation Zone to the same number (say) 0.5”.  And turn off all the InDesign optional hyphenation check boxes at the bottom of the dialog, and the turn off the two check boxes in the Word Hyphenation Options box as well.In Word you should also set Hyphenation | Automatic.  If you cautiously set Word Hyphenation | None the import will throw a “Hyphenation” override on the hyphenated paragraph styles, even though this maikes no sense.
    You may still pick up some hyphenation related overrides on your heder styles, if you have set the headers not to hyphenate.  You can either dump the overrides in InDesign or you can set your header styles to hyphenate…and be careful not have any headers actually be longer than one line.
    (2) I still haven't found the fix for the Left-to-Right text override.

  • Indesign problem : background color don't appears in the pdf...

    Hello,
    When I export the document to PDF, the background color doesn't appears in the pdf.
    I'm a new Indesign user. Ihave searched every where, but i have not found  tutorial about this problem...
    EM2C

    How did you implement this "background color"?
    If, as I suspect, you changed the [Paper] swatch, then you aren't seeing a malfunction. That swatch is non-printing, and will not show up anywhere but in the InDesign editing environment. To add a color in the background, you must actually fill an object with the color and position it behind the rest of the elements in your layout.

  • Debugging AS91(problem)

    hi
    freinds ..
    i had been assign a task for which i have to do debug,
    i have to do debug , In t.code AS91 for one asset class i enter some values and goes for
    TAKE OVER VALUES iam unable to enter the cumilited acquistion values or change these fields
    are only in display mode.... similarly if i go for another asser class i get this TAKEOVER VALUES in chage mode ..i had been assign to find out the reason i tried by debugging but couldnot find anything that can solve my problem ,Pls let me know the solution for it.
    thanks in advance
    and regards.
    farukh

    I am facing same problem with leave request approver.The leave aprover screen is not getting launched in UWL.getting error as
    Application error occurred during request processing.
      Details:   com.sap.tc.webdynpro.services.sal.core.DispatcherException: The requested deployable object 'com.sap/ess~lea' and application 'LeaveRequestApprover' are not deployed on the server. Please check the used URL for typos.
    Exception id: [001A4B08B2300043000000F80000694600046521A4650BC9]
    Please help ,if anyone solved this problem.

  • Converting old Quark applescript to InDesign - problems

    Hello
    I'm converting an old Quark applescript to InDesign CS3 finally. I'm having a problem with placing, scaling and adjusting images.
    Here's how it works ... a user fills out a Microsoft Word form, which a designer unlocks and pastes into the layout, and then runs the script. The image frames are all labeled, and that's how I'd like to call them.
    Here's a snippet of the Quark portion that I'm having a problem with ...
    set Todayicon to item (offset from list Dayicons of Todayval) of DayIconEPS
    set Todayiconpath to (OPIpath and Todayicon as string)
    set Todayicon to item 1 of Todayiconpath
    set scale of Todayicon to {"65","65"}
    set offset of Todayicon to {"-1p2","0p5"}
    And here's what I'm thinking I need to do in InDesign CS3 ...
    set Todayicon to item (offset from list Dayicons of Todayval) of DayIconEPS
    set Todayiconpath to (OPIpath and Todayicon as string)
    set Todayicon to item 1 of Todayiconpath
    set TodayiconTransformationMatrix to make transformation matrix with properties {horizontal scale factor:0.65, vertical scale factor:0.65, geometric bounds:[-14,-5]
    transform Todayicon in inner coordinates with matrix TodayiconTransformationMatrix
    Unfortunately, the script errors out when it tries to make the transformation matrix, even though I'm following the examples in the Working with Tranformations in Applescript pdf.
    Any ideas? I guess I can put dummy images in the layout and call a "Place" to override the dummy images, which should keep the scale, but it doesn't help me when I need to offset the images sometimes.

    Philip Regan wrote: "The new scripting model with all of its touted advantaged is really poorly executed."
    While I didn't design the scripting model for transformations, and disagree with some of the decisions made in the design, I understand that InDesign's transformations architecture had to be rewritten for CS3. There were too many cases in CS2 where objects could not be returned to their original coordinates after transformation. The scripting implementation pretty much had to go along with the change in the underlying architecture.
    If you'd rather things work the way they worked in CS2, why not use the set of transform "wrappers" that I wrote and included in the transform tutorial? With those functions, you don't really need to worry about the new model.
    Thanks,
    Ole

  • BUG Remote Debug Dialog Problem

    When I Try open Remote Open Dialog:
    Project Properties -> Run/Debug -> Edit(Default) -> Tools Settings/Debugger/Remote
    I get this Exception:
    java.lang.NoClassDefFoundError
         at oracle.jdevimpl.runner.debug.RemoteDebugSettingsPanel$Protocol.<init>(RemoteDebugSettingsPanel.java:205)
         at oracle.jdevimpl.runner.debug.RemoteDebugSettingsPanel.<init>(RemoteDebugSettingsPanel.java:57)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
         at oracle.ide.panels.MetaTraversable.newTraversable(MetaTraversable.java:315)
         at oracle.ide.panels.MetaTraversable.newTraversable(MetaTraversable.java:219)
         at oracle.ide.panels.MDDPanel.getTraversable(MDDPanel.java:1061)
         at oracle.ide.panels.MDDPanel.mav$getTraversable(MDDPanel.java)
         at oracle.ide.panels.MDDPanel$Tsl.updateSelectedNavigable(MDDPanel.java:1308)
         at oracle.ide.panels.MDDPanel$Tsl.updateSelection(MDDPanel.java:1216)
         at oracle.ide.panels.MDDPanel$Tsl.actionPerformed(MDDPanel.java:1210)
         at javax.swing.Timer.fireActionPerformed(Timer.java:271)
         at javax.swing.Timer$DoPostEvent.run(Timer.java:201)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:153)
         at java.awt.Dialog$1.run(Dialog.java:515)
         at java.awt.Dialog.show(Dialog.java:536)
         at java.awt.Component.show(Component.java:1300)
         at java.awt.Component.setVisible(Component.java:1253)
         at oracle.bali.ewt.dialog.JEWTDialog.runDialog(Unknown Source)
         at oracle.bali.ewt.dialog.JEWTDialog.runDialog(Unknown Source)
         at oracle.ide.dialogs.WizardLauncher.runDialog(WizardLauncher.java:55)
         at oracle.ide.panels.TDialogLauncher.showDialog(TDialogLauncher.java:276)
         at oracle.jdevimpl.runner.RunConfigurationEditor.showDialog(RunConfigurationEditor.java:58)
         at oracle.jdevimpl.runner.RunConfigurationsPanel.editRunConfiguration(RunConfigurationsPanel.java:340)
         at oracle.jdevimpl.runner.RunConfigurationsPanel.editRunConfiguration(RunConfigurationsPanel.java:322)
         at oracle.jdevimpl.runner.RunConfigurationsPanel.actionPerformed(RunConfigurationsPanel.java:212)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:234)
         at java.awt.Component.processMouseEvent(Component.java:5488)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
         at java.awt.Component.processEvent(Component.java:5253)
         at java.awt.Container.processEvent(Container.java:1966)
         at java.awt.Component.dispatchEventImpl(Component.java:3955)
         at java.awt.Container.dispatchEventImpl(Container.java:2024)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
         at java.awt.Container.dispatchEventImpl(Container.java:2010)
         at java.awt.Window.dispatchEventImpl(Window.java:1774)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:153)
         at java.awt.Dialog$1.run(Dialog.java:515)
         at java.awt.Dialog.show(Dialog.java:536)
         at java.awt.Component.show(Component.java:1300)
         at java.awt.Component.setVisible(Component.java:1253)
         at oracle.bali.ewt.dialog.JEWTDialog.runDialog(Unknown Source)
         at oracle.bali.ewt.dialog.JEWTDialog.runDialog(Unknown Source)
         at oracle.ide.dialogs.WizardLauncher.runDialog(WizardLauncher.java:55)
         at oracle.ide.panels.TDialogLauncher.showDialog(TDialogLauncher.java:276)
         at oracle.ide.model.panels.ProjectPropertiesDialog.showDialog(ProjectPropertiesDialog.java:223)
         at oracle.ide.model.panels.ProjectPropertiesDialog.showDialog(ProjectPropertiesDialog.java:89)
         at oracle.ide.model.panels.ProjectPropertiesDialog.showDialog(ProjectPropertiesDialog.java:80)
         at oracle.jdeveloper.model.JProjectStructureController.handleEvent(JProjectStructureController.java:111)
         at oracle.jdeveloper.model.JProjectStructureController$JProjectMenuListener.handleDefaultAction(JProjectStructureController.java:576)
         at oracle.ide.controller.ContextMenu.fireDefaultAction(ContextMenu.java:343)
         at oracle.ideimpl.explorer.BaseTreeExplorer.fireDefaultAction(BaseTreeExplorer.java:1504)
         at oracle.ideimpl.explorer.BaseTreeExplorer.dblClicked(BaseTreeExplorer.java:1841)
         at oracle.ideimpl.explorer.BaseTreeExplorer.mouseReleased(BaseTreeExplorer.java:1862)
         at oracle.ideimpl.explorer.CustomTree.processMouseEvent(CustomTree.java:176)
         at java.awt.Component.processEvent(Component.java:5253)
         at java.awt.Container.processEvent(Container.java:1966)
         at java.awt.Component.dispatchEventImpl(Component.java:3955)
         at java.awt.Container.dispatchEventImpl(Container.java:2024)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
         at java.awt.Container.dispatchEventImpl(Container.java:2010)
         at java.awt.Window.dispatchEventImpl(Window.java:1774)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    I use JDeveloper version 10.1.3.0.4.3679 (Build JDEVADF 10.1.3. NT 060125.0900.3673)
    and JDK: Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_04-b05)
    When I use JDK: Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_04-b05)
    I get this Exception if I try show Remote Debug Dialog:
    java.lang.ClassCastException
         at oracle.jdeveloper.ejb.BaseEjbModuleContainer.getEjbJarNode(BaseEjbModuleContainer.java:324)
         at oracle.jdeveloper.ejb.BaseEjbModuleContainer.getEjbModuleEngine(BaseEjbModuleContainer.java:704)
         at oracle.jdeveloper.ejb.EjbAppManager.getEjbModuleEngine(EjbAppManager.java:648)
         at oracle.jdevimpl.runner.oc4j.Ejb30StarterFactory.checkIsEjb30Node(Ejb30StarterFactory.java:57)
         at oracle.jdevimpl.runner.oc4j.Ejb30StarterFactory.canStartImpl(Ejb30StarterFactory.java:40)
         at oracle.jdevimpl.runner.oc4j.Oc4jStarterFactory.canStart(Oc4jStarterFactory.java:71)
         at oracle.ide.runner.AbstractStarterFactory.canStart(AbstractStarterFactory.java:35)
         at oracle.ide.runner.RunProcess.canGetStarterForTarget(RunProcess.java:588)
         at oracle.jdevimpl.runner.DefaultRunnablePanel.validateDefaultRunTarget(DefaultRunnablePanel.java:144)
         at oracle.jdevimpl.runner.RunConfigurationLaunchPanel.commitTo(RunConfigurationLaunchPanel.java:203)
         at oracle.jdevimpl.runner.RunConfigurationLaunchPanel.onExit(RunConfigurationLaunchPanel.java:170)
         at oracle.ide.panels.MDDPanel.exitTraversable(MDDPanel.java:977)
         at oracle.ide.panels.MDDPanel.mav$exitTraversable(MDDPanel.java)
         at oracle.ide.panels.MDDPanel$Tsl.updateSelectedNavigable(MDDPanel.java:1272)
         at oracle.ide.panels.MDDPanel$Tsl.updateSelection(MDDPanel.java:1216)
         at oracle.ide.panels.MDDPanel$Tsl.actionPerformed(MDDPanel.java:1210)
         at javax.swing.Timer.fireActionPerformed(Timer.java:271)
         at javax.swing.Timer$DoPostEvent.run(Timer.java:201)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:454)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:141)
         at java.awt.Dialog$1.run(Dialog.java:540)
         at java.awt.Dialog.show(Dialog.java:561)
         at java.awt.Component.show(Component.java:1133)
         at java.awt.Component.setVisible(Component.java:1088)
         at oracle.bali.ewt.dialog.JEWTDialog.runDialog(Unknown Source)
         at oracle.bali.ewt.dialog.JEWTDialog.runDialog(Unknown Source)
         at oracle.ide.dialogs.WizardLauncher.runDialog(WizardLauncher.java:55)
         at oracle.ide.panels.TDialogLauncher.showDialog(TDialogLauncher.java:276)
         at oracle.jdevimpl.runner.RunConfigurationEditor.showDialog(RunConfigurationEditor.java:58)
         at oracle.jdevimpl.runner.RunConfigurationsPanel.editRunConfiguration(RunConfigurationsPanel.java:340)
         at oracle.jdevimpl.runner.RunConfigurationsPanel.editRunConfiguration(RunConfigurationsPanel.java:322)
         at oracle.jdevimpl.runner.RunConfigurationsPanel.actionPerformed(RunConfigurationsPanel.java:212)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1786)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1839)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:245)
         at java.awt.Component.processMouseEvent(Component.java:5100)
         at java.awt.Component.processEvent(Component.java:4897)
         at java.awt.Container.processEvent(Container.java:1569)
         at java.awt.Component.dispatchEventImpl(Component.java:3615)
         at java.awt.Container.dispatchEventImpl(Container.java:1627)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
         at java.awt.Container.dispatchEventImpl(Container.java:1613)
         at java.awt.Window.dispatchEventImpl(Window.java:1606)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:456)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:141)
         at java.awt.Dialog$1.run(Dialog.java:540)
         at java.awt.Dialog.show(Dialog.java:561)
         at java.awt.Component.show(Component.java:1133)
         at java.awt.Component.setVisible(Component.java:1088)
         at oracle.bali.ewt.dialog.JEWTDialog.runDialog(Unknown Source)
         at oracle.bali.ewt.dialog.JEWTDialog.runDialog(Unknown Source)
         at oracle.ide.dialogs.WizardLauncher.runDialog(WizardLauncher.java:55)
         at oracle.ide.panels.TDialogLauncher.showDialog(TDialogLauncher.java:276)
         at oracle.ide.model.panels.ProjectPropertiesDialog.showDialog(ProjectPropertiesDialog.java:223)
         at oracle.ide.model.panels.ProjectPropertiesDialog.showDialog(ProjectPropertiesDialog.java:89)
         at oracle.ide.model.panels.ProjectPropertiesDialog.showDialog(ProjectPropertiesDialog.java:80)
         at oracle.jdeveloper.model.JProjectStructureController.handleEvent(JProjectStructureController.java:111)
         at oracle.jdeveloper.model.JProjectStructureController$JProjectMenuListener.handleDefaultAction(JProjectStructureController.java:576)
         at oracle.ide.controller.ContextMenu.fireDefaultAction(ContextMenu.java:343)
         at oracle.ideimpl.explorer.BaseTreeExplorer.fireDefaultAction(BaseTreeExplorer.java:1504)
         at oracle.ideimpl.explorer.BaseTreeExplorer.dblClicked(BaseTreeExplorer.java:1841)
         at oracle.ideimpl.explorer.BaseTreeExplorer.mouseReleased(BaseTreeExplorer.java:1862)
         at oracle.ideimpl.explorer.CustomTree.processMouseEvent(CustomTree.java:176)
         at java.awt.Component.processEvent(Component.java:4897)
         at java.awt.Container.processEvent(Container.java:1569)
         at java.awt.Component.dispatchEventImpl(Component.java:3615)
         at java.awt.Container.dispatchEventImpl(Container.java:1627)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
         at java.awt.Container.dispatchEventImpl(Container.java:1613)
         at java.awt.Window.dispatchEventImpl(Window.java:1606)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:456)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    But after confirm Exception, dialog will open corectly.

    I Find, that problem was in project configure file, where was incorrect path to the workspace configuration file:
    <hash n="oracle.ide.model.DependencyConfiguration">
    <list n="dependencyList">
    <hash>
    <value n="class" v="oracle.jdeveloper.library.ProjectLibrary"/>
    <url n="sourceOwnerURL" path="../WorkspaceVersion2.jws"/>
    <url n="sourceURL" path="../ejb/ejb.jpr"/>
    </hash>
    </list>
    </hash>

  • Runing In debug mode problem

    i m using Form9i suite , oracle 9i running under VMware machine where i installed windows XP service pack 3 with internet explorer version 8 IE8.
    i have a problem when i run my Fmb form in debug mode it is not loaded, even though if i run it normally my fmb form loaded well .
    any suggestion
    thank you
    Edited by: user12923153 on Nov 11, 2012 6:37 AM

    Hi
    But the program to print the advice is set in the payment?
    What can you see in Print Out/Data Medium section?
    You need to considere F110 runs the print program in backgroud mode, that means a job is scheduled, so try to checl the job too
    Max

  • 10.5.4 and Photoshop/InDesign Problems

    After the previous problems that presented in the upgrade to 10.5.3 our company decided to test the upgrade to 10.5.4 before upgrading. We have experienced a strange thing happening to files located on the server. If you are in InDesign and you have a layered psd file (doesn't seem to happen with layered tif files) as a link in InDesign and you open it through the edit original button through the links palette, make a change and Save (Not Save As), something goes amiss. It updates on the InDesign document fine but when you open the file that the Photoshop document that should have been changed, it doesn't seem to have any changes made to it. However, if you edit original once again through InDesign it opens a file where the changes have been made. It's like the save command is saving a hidden/temp file and InDesign uses that.

    Regardless of how many bugs Adobe fixes, saving files directly to a shared server will always be incredibly dangerous. Why aren't you using revision control for your assets?

  • CS3 Illustrator and Indesign problems

    I am still using CS3 and have recently reinstalled (uninstalled from old comp) onto a new computer with double the capacity - now 8GB 64 bit OS Wind 7 Prof.  Since it has been on the new computer both Illustrator and Indesign close down on opening.  Indesign I haven't been able to use successfully, but I am using Illustrator, slowly and patiently.  The message on Indesign is basically the same each time, 'No virtual memory, free up memory' or similar.  Illustrator opens asking to relink/replace all images & graphic, but  closes down each time I try to relink through this prompt.  What I do is 'ignore' and then manually relink.  This seems to work for awhile, then goes into 'Illustrator Not Responding' will either freeze or close down, either way I loose what I have just done.
    What can the problem be, apart from it being CS3, no use saying I need to upgrade, because the company will not do that.  Do I need to download a patch or update etc.  Help, getting a little impatient with it all.
    Cheers
    Donna

    Short answer: CS3 is not tested and not certified to run on Win 7. Therefore, at the riosk of sounding rude, as far as Adobe is concerned, your problems are your own. There are no patches or magic buttons to push. All you can hope is to maximize compatibility by turning off UAC, using compatibility mode for Win XP, running with admin privileges and so on. Talk to your IT department/ person. If you can provide exact system info and the crash details, we may be able to advise further.
    Working with your Operating System’s Tools
    Mylenium

  • Indesign Problem CS2

    Hallo,
    ich habe ein Problem mit Adobe InDesign.
    Folgendes Szenario. Wir hatte auf einen File Server (Windows Server 2003) ein Share. Dort abgelegt waren Adobe InDesign Dateien. Die Kollegen hatten in Ihrem Arbeitsplatz (Windows XP) ein Share gemappt um auf diese Dateien zuzugreifen. Nun ist uns der Server abgeraucht, konnten das Raid wiederherstellen und haben die Daten auf einen anderen Server ausgelagert. Die Daten wurden erneut Freigegeben und wie vorher bei den Kollegen im Arbeitsplatz eingemappt. Nun ist das Problem das der Aufruf der Daten ewig dauert. Zudem kommt noch das die Verknüpfungen alle auf den alten Pfad vom defekten Server zeigen. Liegt wohl daran das es so lange dauert. Wie kann ich den Aufruf wieder beschleunigen und alle Verknüpfungen wiederherstellen??
    Händisch wäre es ja ein riesen Aufwand, da teilweise 100 Verknüpfungen in einer Datei stecken.
    Wünsche allen ein Frohes Fest und würde mich um eine Antwort freuen...
    Chris

    I ran your post through Babel Fish to translate, and I hope your English is better than my German.
    It appears that you are having trouble with missing links when re-opening files that were moved from one server to another, I think because either the server failed or you decided to outsource.
    It doesn't really matter why the files were moved. As you now know, InDesign uses absolute link paths for external data, and this is not something you can change. There is a partial remedy in the fact that InDesign will search the path and sub-directories where the document file is located and find any links there(which is how packaging and delivery to a service provider is possible), but if the links are in another branch of the directory tree the system will fail.
    If all of the links for any file are in a single location, move the document into that location temporarily as well, open, update the links, then save and relocate where it belongs. If the links are scattered, then I'm afraid you have a big job ahead of you.
    As far as I know, there is no way to automate the process.
    Peter

Maybe you are looking for

  • Album art and long songtitle (zen v pl

    The zen v plus will put the album art on the left side of the screen. This causes an issue when the songtitle is too long: the songtitle will now scroll. Can I change the way album art is shown? I would find it nice if the songtitle was above the alb

  • PhotoShop Elements 9 Time Machine Help

    I had a unsaved Photoshop Elements 9 project open when my computer froze up and I had to shut down. How do I restore it with Time Machine?

  • Cancel or Remove a backup to a database in SQL 2008 R2

    I got it, duh it was in the SQL server Agent, just disabled it. Thanks for the help anyways. 

  • Manual bank statement status "being posted"

    Hi guys, We are using manual bank statement. We have created one statement, posted it, but the status in ff67 is still "being posted". The accounting document has been created correctly; we have checked the corresponding bank account with FS10N and t

  • (URGENT) jCheckBox in jTable

    I have a jTable inwhich I would like to have a column of jCheckBox. I can I do that ???