BUG : JDev 10.1.3 SR2 hangs when opening a java files

Hi,
think I've found a bug. I'm using JDev 10.1.3, patched with SR1 & 2, my machine is a Windows XP SP2 box with 1GB mem and Intel Pentium 4 2.60 Ghz with HT.
When I try to open a file in the Java editor the IDE hangs. Launching jdev.exe I can see that the following output is continuously printed:
Exception occurred updating RowMap: 16
startRow: 0
numRows: 1
startLine: 0
numLines: 15
_rowCount: 15
lineCount: 15
Stack trace follows
java.lang.ArrayIndexOutOfBoundsException: 16
     at oracle.javatools.buffer.ArrayLineMap.getLineEndOffset(ArrayLineMap.java:326)
     at oracle.javatools.editor.BasicView$LineRowMap.recalculateLineWidths(BasicView.java:3576)
     at oracle.javatools.editor.BasicView$LineRowMap.recalculateRows(BasicView.java:3487)
     at oracle.javatools.editor.BasicView$LineRowMap.handleInsert(BasicView.java:3315)
     at oracle.javatools.editor.BasicView$LineRowMap.rebuildRowMap(BasicView.java:3286)
     at oracle.javatools.editor.BasicView$LineRowMap.<init>(BasicView.java:3259)
     at oracle.javatools.editor.BasicView$FoldedRowMap.<init>(BasicView.java:3966)
     at oracle.javatools.editor.BasicView.updateMetrics(BasicView.java:1128)
     at oracle.javatools.editor.BasicView.getPreferredSpan(BasicView.java:1730)
     at javax.swing.plaf.basic.BasicTextUI$RootView.getPreferredSpan(BasicTextUI.java:1257)
     at javax.swing.plaf.basic.BasicTextUI.getPreferredSize(BasicTextUI.java:819)
     at oracle.javatools.editor.BasicEditorUI.getPreferredSize(BasicEditorUI.java:158)
     at javax.swing.JComponent.getPreferredSize(JComponent.java:1615)
     at javax.swing.JEditorPane.getPreferredSize(JEditorPane.java:1227)
     at javax.swing.JViewport.getViewSize(JViewport.java:1003)
     at javax.swing.plaf.basic.BasicScrollPaneUI.syncScrollPaneWithViewport(BasicScrollPaneUI.java:264)
     at javax.swing.plaf.basic.BasicScrollPaneUI$Handler.viewportStateChanged(BasicScrollPaneUI.java:855)
     at javax.swing.plaf.basic.BasicScrollPaneUI$Handler.stateChanged(BasicScrollPaneUI.java:797)
     at javax.swing.JViewport.fireStateChanged(JViewport.java:1357)
     at javax.swing.JViewport.setView(JViewport.java:975)
     at oracle.ideimpl.editor.SplitPane.setEditorComponent(SplitPane.java:343)
     at oracle.ideimpl.editor.SplitPane.attachEditor(SplitPane.java:949)
     at oracle.ideimpl.editor.SplitPane.attachCurrentEditor(SplitPane.java:919)
     at oracle.ideimpl.editor.SplitPane.setCurrentEditorStatePos(SplitPane.java:1138)
     at oracle.ideimpl.editor.SplitPane.setSplitPaneState(SplitPane.java:207)
     at oracle.ideimpl.editor.TabGroup.attachCurrentNode(TabGroup.java:517)
     at oracle.ideimpl.editor.TabGroup.setCurrentTabGroupState(TabGroup.java:1294)
     at oracle.ideimpl.editor.TabGroup.activateEditor(TabGroup.java:639)
     at oracle.ideimpl.editor.EditorManagerImpl.createEditor(EditorManagerImpl.java:1273)
     at oracle.ideimpl.editor.EditorManagerImpl.createEditor(EditorManagerImpl.java:1196)
     at oracle.ideimpl.editor.EditorManagerImpl.openEditor(EditorManagerImpl.java:1131)
     at oracle.ideimpl.editor.EditorManagerImpl.whenOpenEditor(EditorManagerImpl.java:2332)
     at oracle.ideimpl.editor.EditorManagerImpl.handleDefaultAction(EditorManagerImpl.java:1893)
     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)
Forcing RowMap rebuild
I also disabled ALL extension and removed the jar files in jdev/extension, except the one that was originally included in the 10.1.3 and those that seems related to the service releases.
The file I'm trying to open is done like this:
--- start after this line ---
package com.websiteitalia.jsftest.view.controllers.people.list;
import com.websiteitalia.jsftest.model.list.people.PeopleListUtil;
import com.websiteitalia.jsftest.view.controllers.BaseListBacker;
import com.websiteitalia.weblib.ejb.list.IWSList;
public class PeopleListBacker extends BaseListBacker {
public IWSList getListRemote() throws Exception {
return PeopleListUtil.getList();
--- end before this line ---
I include also an HEX encoding of the file:
00000000h: 70 61 63 6B 61 67 65 20 63 6F 6D 2E 77 65 62 73 ; package com.webs
00000010h: 69 74 65 69 74 61 6C 69 61 2E 6A 73 66 74 65 73 ; iteitalia.jsftes
00000020h: 74 2E 76 69 65 77 2E 63 6F 6E 74 72 6F 6C 6C 65 ; t.view.controlle
00000030h: 72 73 2E 70 65 6F 70 6C 65 2E 6C 69 73 74 3B 0D ; rs.people.list;.
00000040h: 0A 0D 0A 69 6D 70 6F 72 74 20 63 6F 6D 2E 77 65 ; ...import com.we
00000050h: 62 73 69 74 65 69 74 61 6C 69 61 2E 6A 73 66 74 ; bsiteitalia.jsft
00000060h: 65 73 74 2E 6D 6F 64 65 6C 2E 6C 69 73 74 2E 70 ; est.model.list.p
00000070h: 65 6F 70 6C 65 2E 50 65 6F 70 6C 65 4C 69 73 74 ; eople.PeopleList
00000080h: 55 74 69 6C 3B 0D 0A 69 6D 70 6F 72 74 20 63 6F ; Util;..import co
00000090h: 6D 2E 77 65 62 73 69 74 65 69 74 61 6C 69 61 2E ; m.websiteitalia.
000000a0h: 6A 73 66 74 65 73 74 2E 76 69 65 77 2E 63 6F 6E ; jsftest.view.con
000000b0h: 74 72 6F 6C 6C 65 72 73 2E 42 61 73 65 4C 69 73 ; trollers.BaseLis
000000c0h: 74 42 61 63 6B 65 72 3B 0D 0A 69 6D 70 6F 72 74 ; tBacker;..import
000000d0h: 20 63 6F 6D 2E 77 65 62 73 69 74 65 69 74 61 6C ; com.websiteital
000000e0h: 69 61 2E 77 65 62 6C 69 62 2E 65 6A 62 2E 6C 69 ; ia.weblib.ejb.li
000000f0h: 73 74 2E 49 57 53 4C 69 73 74 3B 0D 0A 0D 0A 0D ; st.IWSList;.....
00000100h: 0A 70 75 62 6C 69 63 20 63 6C 61 73 73 20 50 65 ; .public class Pe
00000110h: 6F 70 6C 65 4C 69 73 74 42 61 63 6B 65 72 20 65 ; opleListBacker e
00000120h: 78 74 65 6E 64 73 20 42 61 73 65 4C 69 73 74 42 ; xtends BaseListB
00000130h: 61 63 6B 65 72 20 7B 0D 0A 20 20 20 20 0D 0A 20 ; acker {..    ..
00000140h: 20 20 20 70 75 62 6C 69 63 20 49 57 53 4C 69 73 ; public IWSLis
00000150h: 74 20 67 65 74 4C 69 73 74 52 65 6D 6F 74 65 28 ; t getListRemote(
00000160h: 29 20 74 68 72 6F 77 73 20 45 78 63 65 70 74 69 ; ) throws Excepti
00000170h: 6F 6E 20 7B 0D 0A 20 20 20 20 20 20 20 20 72 65 ; on {..        re
00000180h: 74 75 72 6E 20 50 65 6F 70 6C 65 4C 69 73 74 55 ; turn PeopleListU
00000190h: 74 69 6C 2E 67 65 74 4C 69 73 74 28 29 3B 0D 0A ; til.getList();..
000001a0h: 20 20 20 20 7D 0D 0A 20 20 20 20 0D 0A 7D 0D 0A ; }.. ..}..
Note the last empty line before the end-of-file. If I try to past this code into a Java file and open it in JDev, it hangs as described.
Moreover, if I remove the last empty line, JDev will open the file in the editor but, as soon as I enter it again (placing the cursor at the end of the file a hitting enter) JDev hangs again.
A final note: I experienced many hangs also in JSP editor, especially selecting a block of text and pasting something in its place, but don't know if the two behaviours are related.

Ok, maybe I've tracked down at least one factor that makes JDev hang. I changed my font back to the default "DialogInput" instead of "Lucida Console" and now it opens my file.
This is the settings that works in system/oracle.jdeveloper.10.1.3.36.73/preferences.xml
<Item>
<Key>FontSizeOptions</Key>
<Value class="oracle.ide.ceditor.options.FontSizeOptions">
<fontFamily>DialogInput</fontFamily>
<fontSize>12</fontSize>
<showOnlyFixedWidth>false</showOnlyFixedWidth>
</Value>
</Item>
With this one it hangs:
<Item>
<Key>FontSizeOptions</Key>
<Value class="oracle.ide.ceditor.options.FontSizeOptions">
<fontFamily>Lucida Console</fontFamily>
<fontSize>12</fontSize>
<showOnlyFixedWidth>false</showOnlyFixedWidth>
</Value>
</Item>
Logging the exception
Exception occurred updating RowMap: 16
startRow: 0
numRows: 1
startLine: 0
numLines: 15
_rowCount: 15
lineCount: 15
Stack trace follows
java.lang.ArrayIndexOutOfBoundsException: 16
     at oracle.javatools.buffer.ArrayLineMap.getLineEndOffset(ArrayLineMap.java:326)
     at oracle.javatools.editor.BasicView$LineRowMap.recalculateLineWidths(BasicView.java:3576)
     at oracle.javatools.editor.BasicView$LineRowMap.recalculateRows(BasicView.java:3487)
     at oracle.javatools.editor.BasicView$LineRowMap.handleInsert(BasicView.java:3315)
     at oracle.javatools.editor.BasicView$LineRowMap.rebuildRowMap(BasicView.java:3286)
     at oracle.javatools.editor.BasicView$LineRowMap.<init>(BasicView.java:3259)
     at oracle.javatools.editor.BasicView$FoldedRowMap.<init>(BasicView.java:3966)
     at oracle.javatools.editor.BasicView.updateMetrics(BasicView.java:1128)
     at oracle.javatools.editor.BasicView.getPreferredSpan(BasicView.java:1730)
     at javax.swing.plaf.basic.BasicTextUI$RootView.getPreferredSpan(BasicTextUI.java:1257)
     at javax.swing.plaf.basic.BasicTextUI.getPreferredSize(BasicTextUI.java:819)
     at oracle.javatools.editor.BasicEditorUI.getPreferredSize(BasicEditorUI.java:158)
     at javax.swing.JComponent.getPreferredSize(JComponent.java:1615)
     at javax.swing.JEditorPane.getPreferredSize(JEditorPane.java:1227)
     at oracle.javatools.editor.gutter.LineGutterPlugin.getRowCount(LineGutterPlugin.java:1485)
     at oracle.javatools.editor.gutter.LineGutterPlugin.getPreferredSize(LineGutterPlugin.java:890)
     at java.awt.BorderLayout.preferredLayoutSize(BorderLayout.java:690)
     at java.awt.Container.preferredSize(Container.java:1558)
     at java.awt.Container.getPreferredSize(Container.java:1543)
     at javax.swing.JComponent.getPreferredSize(JComponent.java:1617)
     at javax.swing.ViewportLayout.preferredLayoutSize(ViewportLayout.java:78)
     at java.awt.Container.preferredSize(Container.java:1558)
     at java.awt.Container.getPreferredSize(Container.java:1543)
     at javax.swing.JComponent.getPreferredSize(JComponent.java:1617)
     at javax.swing.ScrollPaneLayout.layoutContainer(ScrollPaneLayout.java:717)
     at java.awt.Container.layout(Container.java:1401)
     at java.awt.Container.doLayout(Container.java:1390)
     at java.awt.Container.validateTree(Container.java:1473)
     at java.awt.Container.validateTree(Container.java:1480)
     at java.awt.Container.validateTree(Container.java:1480)
     at java.awt.Container.validateTree(Container.java:1480)
     at java.awt.Container.validateTree(Container.java:1480)
     at java.awt.Container.validateTree(Container.java:1480)
     at java.awt.Container.validateTree(Container.java:1480)
     at java.awt.Container.validateTree(Container.java:1480)
     at java.awt.Container.validateTree(Container.java:1480)
     at java.awt.Container.validateTree(Container.java:1480)
     at java.awt.Container.validateTree(Container.java:1480)
     at java.awt.Container.validateTree(Container.java:1480)
     at java.awt.Container.validate(Container.java:1448)
     at java.awt.Window.show(Window.java:515)
     at oracle.ideimpl.MainWindowImpl.show(MainWindowImpl.java:572)
     at java.awt.Component.show(Component.java:1300)
     at java.awt.Component.setVisible(Component.java:1253)
     at oracle.ideimpl.MainWindowImpl$2.runImpl(MainWindowImpl.java:773)
     at oracle.javatools.util.SwingClosure$1Closure.run(SwingClosure.java:50)
     at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:199)
     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.pumpEvents(EventDispatchThread.java:157)
     at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
     at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
Forcing RowMap rebuild

Similar Messages

  • Adobe reader XI crash and hangs when open the pdf file

    After update the adobe reader xi 11.0.10, the reader always crashes and hangs when open the pdf file. Please help me how to do.

    Ben Leung wrote:
    HThis situation is started after I clear the pop up advertisement.
    What kind of advertisement?  In Adobe Reader?  Can you post a screenshot of that: https://forums.adobe.com/thread/1070933
    Regarding the crash, can you try disabling Protected Mode through the registry: download, unzip, then run the registry script https://files.acrobat.com/a/preview/49eeb48b-07c5-4502-984c-8a25259914fa

  • Bug Found: Illustrator CC *always* merges layers when opening a DXF file - CS6 works properly

    Bug Found: Illustrator CC *always* merges layers when opening a DXF file - CS6 works properly.  When opening a DXF, CC merges multiple layers into one, even if you have the "Merge Layers" unchecked.  Can a forum admin employee get this submitted as a bug report?  Thanks.

    Thank you Larry.  I just submitted this bug report pasted below at the link you provided.
    ******BUG******
    Illustrator CC 17.0.0 *always* merges layers when opening a DXF file, even if you have the "Merge Layers" unchecked.
    1. Open a DXF file that contain multiple layers in Illustrator CC 17.0.0
    2. Uncheck the "Merge Layers" button. 
    3. Click OK.
    Results:  It has merge all the layers into one layer.
    Expected results: It should open with multiple layers preserved.  Illustrator CS6 works properly.

  • Quicktime hangs when opening a .avi file

    Please help. for the past two years ever since i got my powerbook g4 i have no problem opening a .avi file until today all my .avi files cannot be open at all. the quicktime program will hang when i click to open any .avi files. please help if anyone got a solution.

    Hi,
    He's right!
    Install the Perian plugin, and I would advise you to follow their recommendations on removing redundant Quicktime plugins.
    I was having the same problems with slow loading .avi movies in Quicktime, and in the Finder preview window, until I installed Perian and got rid of Divx 3ivx and other plugins from my Hard Drive/Library/Quicktime folder
    Everything works fine now.
    Regards

  • JDeveloper 11.1.2.3 hangs when opening project from JDeveloper 11.1.1.6

    Hello! I have a problem here which I can't solve. I also asked this question here: http://stackoverflow.com/questions/14365031/jdeveloper-11-1-2-3-hangs-when-opening-project-from-jdeveloper-11-1-1-6/14369211#14369211 . The whole story in short. I have a JavaEE client-server project in JDeveloper 11.1.1.6, where it works like a charm. Recently I had to upgrade JDeveloper version to the latest 11.1.2.3. The first problem was that the standard procedure of migrating project from the older version of JDeveloper to the newer one did not help: IDE was hanging forever all the time with no apparent (for me) reason, log file was silent about that. Then I tried another way: I just created the same project from the beginning and put there all necessary source files, libraries, set project properties etc. Still nothing, but now found the way to obtain a kind of error at least. I ran C:\Oracle\Middleware\jdeveloper\jdev\bin\jdev.exe from the command line and got the following (e.g. when I started running debug):
    Jan 16, 2013 8:52:09 PM oracle.ideimpl.runner.StarterFactoryDescriptionImpl logError
    SEVERE: Incorrect hash-structure value in starter-factory definition
    Jan 16, 2013 8:52:10 PM oracle.ideimpl.runner.StarterFactoryDescriptionImpl logError
    SEVERE: Incorrect hash-structure value in starter-factory definition
    But I don't know what could be the next step... Could anyone help me? Thanks in advance for your attention!
    Edited by: user12144197 on 22.01.2013 0:42

    Hi,
    not sure if you have a support contract or work for Oracle. In both cases the best option is to file a bug (service request)
    Frank

  • Photoshop CS3 Hangs when opening files

    PS hangs when opening, duplicating images. The longer it's on the longer the wait. I'm talkin' 15 - 20 seconds. Deleted the prefs multiple times.
    Anybody else having this problem?

    Set your default printer to something local, that is actually hooked up.
    When Photoshop creates the document, it asks for the default printer information - and your printer driver is taking a nap while trying to connect to the printer.

  • Microsoft Word Hangs When Opening Document From SharePoint 2010 Document Library

    I am running into an issue where Word hangs when opening certain files from a document library.  When the issue occurs, Word opens and hangs at the Downloading <Doc URL> stage.  I have tried disabling the SharePoint plugins in IE and that
    makes no difference.  I can download a local copy of the file and open in just fine.  The file in questions exists in a separate document library where it can be opened just fine (The file was copied to the library where the issue is occurring by
    a Workflow).  The issue also has only occurred on .docx files and not .doc, however, not all docx files are having the issue.
    Does anyone have any thoughts on what might be causing this?
    Thanks.

    Hi,
    According to your post, my understanding is that when you opened a certain files from a document library, it hanged at the downloading stage.
    I tried to reproduce the issue, after coping by a workflow, the .docx files opened well in my environment.
    Did the issue occur in other documents libraries? You can copy the files to a new documents library by workflow, then check whether it works.
    For more details we also can check the SharePoint ULS logs.
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\LOGS
    Have you check your IE settings (Tools->options->connections->LAN settings->uncheck Automatically detect settings).
    Please also use fidder tools to detect the process. You can download it by the following link.
    http://fiddler2.com/
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • I have Dreamweaver CS3 on a PC with Windows Vista SP2. The program recently began to hang when opening previously created HTML files. How do I fix this?

    I have Dreamweaver CS3 on a PC with Windows Vista SP2. The program recently began to hang when opening previously created HTML files. How do I fix this?

    Hi rmarchione,
    Can you try restoring preferences and let us know if it helps?
    Restore preferences | Dreamweaver CS4, CS5, CS5.5, CS6
    Thanks,
    Preran

  • Dreamweaver hangs when opening

    Running DW MX 2004, with updater 7.0.1 applied, on a Sony PC
    with Win XP, DW hangs when opening. I have waited as long as 10
    minutes to see it it every responds, and it doesn't.
    I have to CTRL-ALT-DEL and terminate the application. When
    re-opening, it opens normally.
    Not connected to a network, site files on local C drive.
    It seems to have started happening after applying the 7.0.1
    updater.
    Anyone have any solutions to this?

    Hi JillTW,
    DW 7 had some serious time lags. Search the
    Macromedia.Dreamweaver groups on
    Google's groups for slow DW and look for postings over a year
    old. The fixes
    they discuss may help solve your lockup problem.
    If you are working on a large site, 10 minutes might not be
    enough time for
    DW 7 to resolve cache issues. Look at your Task Manager to
    see if it is
    working (high cpu usage on Dreamweaver.exe) or not
    responding. Even if it is
    not responding a high CPU usuage may mean it is in progress
    and just
    ignoring the keyboard/mouse.
    Also, you might want to try to clear the site cache (or just
    check its
    size - a little one should not take long to process even if
    corupt) before
    starting DW. Adobe tells how to remove the cache here:
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=5989f7f4
    Look for the cache in: C:\Documents and
    Settings\<user>\Application
    Data\Macromedia\Dreamweaver MX 2004\Configuration\SiteCache
    The file is named: {yoursitenamehere}.dws
    I suggest moving it to another folder for safe keeping until
    you know if
    this is the problem.
    Upgrading to DW8 is a major improvement in speed.
    Best of luck,
    Alan C
    alan (a t) cates-associates (d ot) net
    http://www.cates-associates.net
    "JillTW" <[email protected]> wrote in
    message
    news:e81a5o$cpf$[email protected]..
    > Running DW MX 2004, with updater 7.0.1 applied, on a
    Sony PC with Win XP,
    > DW
    > hangs when opening. I have waited as long as 10 minutes
    to see it it every
    > responds, and it doesn't.
    >
    > I have to CTRL-ALT-DEL and terminate the application.
    When re-opening, it
    > opens normally.
    >
    > Not connected to a network, site files on local C drive.
    >
    > It seems to have started happening after applying the
    7.0.1 updater.
    >
    > Anyone have any solutions to this?
    >

  • Latest Reader Hangs when opening any pdf with 'tools' selected

    Any pdf will hang when opened in the latest Acrobat Reader (Either from file or open Acrobar Reader first.)
    However if I first open Reader and turn off the tools (Tools top right) I can then open any pdf without problems.
    Users who want to have the tools bar open are querying this.
    Can anyone help.
    Windows 7 64 bit systems.

    Try disabling Protected Mode [Edit | Preferences | Security (Enhanced)].

  • Dreamweaver CS6 hangs when opening file

    Starting recently Dreamweaver CS6 hangs for 30 seconds or more, sometimes saying not responding, when I open an HTML file. It appears to do this when the file contains links to external places. To test I created a file that contained nothing except the "new HTML file" basic headers, saved the file, then opened. This test file did not hang.
    I have tried the registry fix "ResolveRemoteURLToIPAddress FALSE" and deleting the personal configuration directory (with Dreamweaver closed). Neither of these solved the problem. Dreamweaver still hangs when opening a file.
    Any other ideas?
    Barry.

    Once the document opens, check the code for any protocol relative links (links that start with // rather than http://) and change them to http:// links, at least during development. It is a know issue to Adobe and will cause what you describe.
    If you don't have any protocol relative links, links to third party sites can cause issues from time to time if their servers are slow or have any kind of conflict with your network. Unless you absolutely can't, you may want to copy those external scripts to your local site and link to the local versions instead, again, during development.

  • InDesign CS6 (8.1) hangs when opening documents, intermittent

    InDesign CS6 (8.1) hangs when opening documents, intermittent, and a document that hangs InDesign, after restarting InDesign, will open fine. I found the following track, Re: InDesign CS5.5 Not Responding  for instructions to "force a hang into a crash" and am posting the crash logs to  pastebin.com
    This is the sample process report OPI_Sample9MAY15 - Pastebin.com
    This is the corresponding InDesign Crash log OPI_InDesignCrashLog9MAY15 - Pastebin.com
    I am hoping that someone might be able to read the logs and tell me what is causing InDesign to hang
    For more background information we are using Mac OS X 10.10.3, Within indesign we are using an editorial management software called "NewsEngin GPS" that utilizes Rohohiko's ADIP ToolAssistant plugin and an advertising management plugin "Pagelink" from Mactive/NewsCycle Solutions. These are the only 3 third party vendors that are being used and of course all claim that their products separately are stable under Mac OS 10.10 and InDesign CS6 v8.1.

    Did you try to export the INDD file to IDML, open that and work with the new files?

  • After installing the latest upgrade firefox just hangs when opening - was fine before. have tried deleting restore session but worse not better now

    after installing the latest upgrade firefox just hangs when opening - was fine before. have tried deleting restore session but worse not better now. no change with firewall.
    == This happened ==
    Every time Firefox opened
    == yesterday, after installing the upgrade ==
    == User Agent ==
    Opera/9.80 (Windows NT 5.1; U; en-GB) Presto/2.5.24 Version/10.54

    I'm using Mac OS 10.4.11 & even typing this message the characters appear so slowly that I could get a hammer and chisel and inscribe the words faster than the new Firefox runs. WTF?

  • Office 2013 applications cannot be made to show the "Documents" folder when opening and saving files

    (Windows Server 2012R2 and Windows 8.1 PRO)
    We are redirecting the user's "Documents" folder to the network (using Folder Redirection). The OS hides this fact however, and most applications simply see the "Documents" folder when opening or saving files, including Office 2003.
    Office 2013 however displays the actual path, which in this case is:
    \\sever1\redirect$\username\documents
    Even if you forcibly set the "Default local file location:"  in the Options Save area to the 'Documents' folder in, say, Word, Word immediately converts the local path to the network path.
    Is there anyway to get Office 2013 to follow the virtual path? All of other apps follow it and expose the users only to "Documents".
    Thank you so much.
    Dana

    There's nothing in my FAQ concerning screen savers, so I'm unsure why you decided to take that approach. From your description, it looks like you only tried a few of the suggestions before throwing in the towel. That's fine, it's your call.
    I don't have the problems you described with 10.4.7. Usually when folks have problems after an update, these are caused by either installing an update on an already-corrutped system or they've installed third-party applications or hardware that have been rendered incompatible by the update.
    Before installing software updates, you may wish to consider the advice in my "Installing Software Updates" FAQ. Taking the steps therein before installing an update often helps avert problems and gives you a fallback position in case trouble arises.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X
    Note: The information provided in the link(s) above is freely available. However, because I own The X Lab™, a commercial Web site to which some of these links point, the Apple Discussions Terms of Use require I include the following disclosure statement with this post:
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • Error when opening table container file keydb read only

    Hi Guys,
    We are installing solution manager 4.0 on windows/sql but we are getting following error and couldnt continue the installation
    FKD-00070  Error when opening table container file C:\PROGRA1\SAPINS1\SOLMAN\SYSTEM\MSS\CENTRAL\AS\keydb.xml for writing. Possible reason: "read-only"
    ERROR 2008-06-04 20:10:56.843
    FKD-00049  XML - Parser error: error: no DTD specified, can't validate in line 1, 1
    in file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\keydb.xml.
    Please help
    Regards,
    Santosh

    Further info
    keydb.xml is empty and the directory has got write access for everyone
    regards
    Edited by: Santosh Keerti on Jun 4, 2008 1:29 PM

Maybe you are looking for

  • Coreaudiod root process- not responding?

    I installed a new graphic card ATI 23870. The card's fan runs all the time so; I switched on Activity monitor and selected all processes. I noticed Process ID 145 coreaudiod (Not Responding) in red. I went to force quit and was told it was a root pro

  • Performance of File Adapter

    Hi Experts, Many of the Messages are failed in File Adapter that is in the Module. We found it is due to heavy load. How to improve performance of File Adapter. How to check the Thread Count for the File Adapter. What are the parameters i need to cha

  • Hot Deploy Servlet in JAR file problem

    I've been playing with hot deploying servlets in WLS 5.1. I have SP2           installed. I have things working fine with individual servlet class files. I           decided to try hot deploying with jar files.           I created a servlet, added it

  • Kopete crashes

    Hello. I have just reinstalled my system, and having some problem with kopete. It starts, but crashes after a little while. If I start it from the console: [jaqob@p238 ~]$ kopete Xlib: extension "Generic Event Extension" missing on display ":0.0". Xl

  • Gripes with Adobe scripting UI

    Spent a lot of time trying to get fillPath() to work in a UI.  Looked to be simple in the scripting guide but no luck.  The sample script colorselector.jsx with the Bridge SDK claimed to have paths used in it.  I couldn't find it.  Maybe Adobe can't