IE hang (Freeze) if use applet/javascript with JRE 1.4.2_06

When i run my applet on IE 6 with JRE 1.4.2_06 and try to close IE window it freezes the IE window, while if i run the same code in 1.4.1_05 it works fine.
The OS is windows 2000 Professional and IE is 6.0.2800.1106.
Also the same applet works fine on Windows XP with IE 6.0.2900.2180 SP2 with JRE 1.4.2_06
Please help....

I was having similar problem earlier. Check if you are closing all the open resources (threads etc etc)

Similar Messages

  • Applet work with JRE 7_51 but NOT with JRE 7_45

    Hello,
    My major problem is, that my Applet signed with COMODO certificate DOES NOT WORK with JRE 7_45.
    The SAME applet works fine with JRE 7_45, if I sign this applet WITH A SELFMADE UNTRUSTED certificate.
    WHY the comodo signed applet doesn't run in JRE 7_45 ???
    If i launch the comodo signed applet with JRE 7_51 it works perfect !!!
    But in our company we got JRE 7_45 and I have to deal with JRE 7_45. That’s my problem.
    Could you please tell me a solution what I have to do that the comodo signed applet works also in JRE 7_45.
    Thank you!
    Philipp

    Thanks gimbal2.
    I agree the problem may be in the proxy or in the firewall but I don' to know how to prove it as if i call the servlet url from browser I dont have problems .
    The version im using is 6.45 but im sure the same problem occurs also with other versions of JRE6 .
    ... and the problem disappear with JRE7 ...
    trouble is my company want people to use JRE6
    any idea ?
    Gio

  • How can I use URLConnection to use applet communication with servlet?

    I want to send a String to a servlet in applet.I now use URLConnection to communicat between applet and servlet.
    ====================the applet code below=========================
    import java.io.*;
    import java.applet.Applet;
    import java.awt.*;
    import java.net.*;
    //I have tested that in applet get data from servlet is OK!
    //Still I will change to test in applet post data to a servlet.
    public class TestDataStreamApplet extends Applet
    String response;
    String baseurl;
    double percentUsed;
    String total;
    public void init()
    try
    java.net.URL url = new java.net.URL(getDocumentBase(),"/servlet/dataStreamEcho");
    //String currenturl=new String("http://lib.nju.edu.cn");
    java.net.URLConnection con = url.openConnection();
    //URL currentPage=getCodeBase();
    // String protocol=currentPage.getProtocol();
    // String host=currentPage.getHost();
    //int port=currentPage.getPort();
    // String urlSuffix="/servlet/dataStreamEcho";
    // URL url=new URL(protocol,host,port,urlSuffix);
    // URLConnection con=url.openConnection();
    con.setUseCaches(false);
    con.setDoOutput(true);
    con.setDoInput(true);
    ByteArrayOutputStream byteout = new ByteArrayOutputStream();
    PrintWriter out=new PrintWriter(byteout,true);
    String currenturl=new String("http://lib.nju.edu.cn");
    String var1=this.encodedValue(currenturl); //encode the data
    String data="currenturl="+var1;
    out.print(data);
    out.flush();
    con.setRequestProperty("Content-Length",String.valueOf(byteout.size()));
    con.setRequestProperty("Content-Type","application/x-www-form-urlencoded");
    byteout.writeTo(con.getOutputStream());
    BufferedReader in=new BufferedReader(new InputStreamReader(con.getInputStream()));
    String line;
    while((line=in.readLine())!=null)
         System.out.println(line);
    catch (Exception e)
    e.printStackTrace();
    private String encodedValue(String rawValue)
         return(URLEncoder.encode(rawValue));
    =========================The servlet code below=====================
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    public class DataStreamEcho extends HttpServlet
    {public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
          res.setContentType("text/plain");
          PrintWriter out = res.getWriter();
          Runtime rt = Runtime.getRuntime();
          out.println(rt.freeMemory());
          out.println(rt.totalMemory());
          response.setContentType("text/html; charset=GBK");     
          request.setCharacterEncoding("GBK");
          PrintWriter out = response.getWriter();
          HttpSession session=request.getSession();
          ServletContext application=this.getServletContext();
          String currenturl=(String)session.getAttribute("currenturl");
          out.print(currenturl);
    =============================================================
    I have done up,but I found the program don't run as I have thought.
    Can you help me to find where is wrong?Very thank!

    You are trying to pass the current URL to the servlet
    from the applet, right?
    Well, what I put was correct. Your servlet code is
    trying to read some information from session data.
    request.getInputStream() is not the IP address of
    anything...see
    http://java.sun.com/products/servlet/2.2/javadoc/javax
    servlet/ServletRequest.html#getInputStream()
    Please read
    http://www.j-nine.com/pubs/applet2servlet/Applet2Servle
    .htmlNo,you all don't understand I.
    I want to send an Object to the server from a applet on a client.not url only.I maybe want to send a JPEG file instead.
    All I want is how to communicate with a servlet from an applet,send message to servlet from client's applet.
    for example,Now I have a method get the desktop picture of my client .and I want to send it to a server with a servlet to done it.How can I write the applet and servlet program?
    Now my program is down,But can only do string,can't not done Object yet.Can anyone help me?
    =======================applet=============================
    public void init()
    try
    java.net.URL url = new java.net.URL(getDocumentBase(),"/servlet/dataStreamEcho");
    //String currenturl=new String("http://lib.nju.edu.cn");
    java.net.URLConnection con = url.openConnection();
    //URL currentPage=getCodeBase();
    // String protocol=currentPage.getProtocol();
    // String host=currentPage.getHost();
    //int port=currentPage.getPort();
    // String urlSuffix="/servlet/dataStreamEcho";
    // URL url=new URL(protocol,host,port,urlSuffix);
    // URLConnection con=url.openConnection();
    con.setUseCaches(false);
    con.setDoOutput(true);
    con.setDoInput(true);
    ByteArrayOutputStream byteout = new ByteArrayOutputStream();
    PrintWriter out=new PrintWriter(byteout,true);
    String currenturl=new String("http://lib.nju.edu.cn");
    String var1=this.encodedValue(currenturl); //encode the data
    String data="currenturl="+var1;
    out.print(data);
    out.flush();
    con.setRequestProperty("Content-Length",String.valueOf(byteout.size()));
    con.setRequestProperty("Content-Type","application/x-www-form-urlencoded");
    byteout.writeTo(con.getOutputStream());
    con.connect();
    BufferedReader in=new BufferedReader(new InputStreamReader(con.getInputStream()));
    String line;
    while((line=in.readLine())!=null)
         System.out.println(line);
    catch (Exception e)
    e.printStackTrace();
    =======================servlet=============================
    public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
         response.setContentType("text/html; charset=GBK");
    //request.setCharacterEncoding("GBK");
    PrintWriter out = response.getWriter();
    HttpSession session=request.getSession();
    ServletContext application=this.getServletContext();
    //String currenturl=(String)session.getAttribute("currenturl");
    String currenturl=(String)request.getParameter("currenturl");
    out.print(currenturl);
    File fileName=new File("c:\\noname.txt");
    fileName.createNewFile();
    FileOutputStream f=new FileOutputStream(fileName); //I just write the String data get from
    //applet to a file for a test.
    byte[] b=currenturl.getBytes();
    f.write(b);
    f.close();
    }

  • Applet runs with jre 1.5 but not jre 1.6

    I'm working on an applet which works just fine when 1.5.0_15 is the latest JRE installed on the PC, but does not work when 1.6.0_6 is installed. In the latter case, the applet does not load due to getting a NoClassDefFoundError. Here's the Java Console error trace:
    java.lang.NoClassDefFoundError: com/hp/nonstop/hsc/core/configuration/ConfigurationMetaData
            at com.hp.nonstop.hsc.tools.configurator.ConfiguratorApplet.init(ConfiguratorApplet.java:53)
            at sun.applet.AppletPanel.run(Unknown Source)
            at java.lang.Thread.run(Unknown Source)
    Caused by: java.lang.ClassNotFoundException: com.hp.nonstop.hsc.core.configurati
    on.ConfigurationMetaData
            at sun.applet.AppletClassLoader.findClass(Unknown Source)
            at java.lang.ClassLoader.loadClass(Unknown Source)
            at sun.applet.AppletClassLoader.loadClass(Unknown Source)
            at java.lang.ClassLoader.loadClass(Unknown Source)
            at java.lang.ClassLoader.loadClassInternal(Unknown Source)
            ... 3 moreThe relevant (I think) portions of the <object> generated by the JSP is:
    <object
        classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
        name="ConfiguratorApplet" width="600" height="400"
        codebase="http://java.sun.com/products/plugin/1.3/jinstall-131-win32.cab">
    <param name="java_code" value="com.hp.nonstop.hsc.tools.configurator.ConfiguratorApplet.class">
    <param name="java_codebase" value="/HSC/configurator">
    <param name="java_archive" value="configurator.jar,../lib/configapi.jar,<<other jar files listed here>>">
    <<other param tags included here>>
    </object>The class it can't seem to find (under 1.6) is actually located in the configapi.jar file, which itself is located in the ../lib folder (relative to the /HSC/configurator folder where configurator.jar is located).
    Obviously, when the browser is using JRE 1.5.15 the VM engine can find all the needed classes as the applet runs OK. But when 1.6.6 is installed, things can't be found. I suspect something different in the search paths (though I thought the "java_archive" value was supposed to specify that), in the permissions needed to read the files, or something, but I just can't track down what the difference is (and thus why things are failing with 1.6 installed).
    Any help/ideas would be greatly appreciated!

    Stephen.Thomas wrote:
    have [you] tried moving the configapi.jar into the same folder as the configurator.jarYes, I have. I've also tried re-rooting the page to the lib directory where everything exists; i.e. changing java_codebase to /HSC/lib and changing java_archive so all jars referenced no longer have ../lib/ in them. Same behavior.
    It's almost as if the search path is behaving differently between 1.5 and 1.6, possibly not even being controlled by the values of java_codebase and java_archive at all.

  • Problem in using Infoswing GridControl with jre 1.3

    Hi,
    I'm using the InfoSwing GridControl which is bound to a table ....the problem is that when I deploy it and run the applet in the browser then it shows a blank row when I scroll down towards the end of the rows.
    I'm using the java Plug-in and jre 1.3. IF I OPEN THE SAME APPLET IN BROWSER AND RUN IT JRE 1.2 THEN IT WORKS FINE. ?? Why So ??
    Thanx in Advance,
    Jigar.

    Hello,
    well, yes it is.
    Running the code with jdk 1.4 is absolutely fine.
    if i run it like this
    <myjdk14install>\bin\java -jar xxx.jar works fine
    if i run it l ike this (which will use 1.5 by default)
    java -jar xxx.jar it gives me that exception...
    have the classloading mechanism changed between jdk 1.4 and jdk 1.5?
    regards
    marco

  • IE Freeze when running applet on JRE 1.4.2_06

    When i run my applet on IE 6 with JRE 1.4.2_06 and try to close IE window it freezes the IE window, while if i run the same code in 1.4.1_05 it works fine.
    The OS is windows 2000 Professional and IE is 6.0.2800.1106.
    Also the same applet works fine on Windows XP with IE 6.0.2900.2180 SP2 with JRE 1.4.2_06
    Please help....

    The difference between the 2 is that the public JRE can be accessed from the command line using just "java ....", because the Registry maintains the pointers to it. You can use the other one (inside the JDK), but you have to provide explicit directions to it - via full paths, ie "C:\...\bin\java ....". This JRE doesn't jhave any Registry entries associated with it.
    Once accessed, the 2 work identically.
    If the jars are used only by programs that you execute via "java ...", there isn't a need to put a copy in the JRE that's in JDK_HOME.

  • Applet javascript communication

    hi all,
    I want my applet to flash the browser window, came to know that can be done
    using applet javascript communication.
    ne1 has ne idea how to do that.
    thx in adv,
    kiran

    ???

  • Very long applet load time with JRE 1.5 - HELP!!

    My applet is taking forever to load and init using JRE 1.5.
    With JRE 1.4.2_06 it takes a matter of seconds to load and init. The same 1.4.2_06 compiled code running on JRE 1.5 takes ~ 17 minutes!!! Is anyone having a similar experience? I've seen other similar posts related to past plug-in versions, but nothing related to 1.5. The same problem occurs if I compile the code with JDK 1.5 and run with JRE 1.5.
    This extreme example happens on a 533 MHz Win2000 pc with 524 MB RAM.
    A desktop with 3 GHz P4, 1 GB RAM running WinXP SP2 doesn't have an appeciable delay (a couple seconds).
    A laptop with 2.21 GHz AMD Athlon 64, 512 MB RAM running WinXP SP1 takes about 8 seconds to load the applet.
    I don't believe it's running yet in the init method during this long wait time. I don't see any print statements, but the basic layout of it is the following:
         public void init()
              applet = this;
              // Setup Look and Feel
              try
                   UIManager.setLookAndFeel (UIManager.getSystemLookAndFeelClassName());
              catch (java.lang.ClassNotFoundException e) {System.err.println("Error setting Look and Feel.");}
              catch (javax.swing.UnsupportedLookAndFeelException e) {System.err.println("Error setting Look and Feel.");}
              catch (java.lang.IllegalAccessException e) {System.err.println("Error setting Look and Feel.");}
              catch (java.lang.InstantiationException e) {System.err.println("Error setting Look and Feel.");}
              // Setup background coloring
              HeaderFile.bgcolor5 = UIManager.getColor("Panel.background");  //new Color(212,208,200);
              HeaderFile.bgcolor6 = UIManager.getColor("desktop");
              applet.getContentPane().setBackground(HeaderFile.bgcolor6);
              // Splash screens
              urlSplash = getURL("AesGuiLarge.jpg");
              ImageIcon_Splash = new ImageIcon(getURL("OmniViewSplash_noWords.jpg"));
              ImageIcon_OmniView = new ImageIcon(getURL("OmniView_wordOnly.gif"));
              // Setup Intitialization panel
              final InitializationPanel initPanel = new InitializationPanel();
              contentPane = getContentPane();
              if (preRelease == true)
                Label label = new Label("PRE-RELEASE");
                label.setFont(new Font("SansSerif", Font.BOLD|Font.ITALIC, 11));
                 JPanel panel = new JPanel();
                   panel.setBackground(Color.yellow);
                   panel.add(label);
                   contentPane.add(panel, BorderLayout.SOUTH);
              contentPane.add(initPanel, BorderLayout.CENTER);
              Thread initialize = new Thread ()
                   public void run()
                            System.out.println("\n***** Initialize thread start *****\n");
              initialize.start();
         }Any help would be appeciated.

    I've discovered where the bulk of the delay is coming from.
    I have 23 default *.properties files in my project. These files contain the English translation of all displayable strings for Internationalization (I18N). The default naming convention is "text.properties".
    For those who don't know I18N, here's a brief synopsis of what happens. ResourceBundles are used to get the strings that are displayed. if your local computer's language/regional settings are English/US, then when the ResourceBundle searches for the file that contains the strings it first looks for a file named text_en_US.properties. If that file is not present or the string is not located, it then looks for a file named text_en.properties. If that file is not present or the string is not located, it then looks for the default file named text.properties. My properties files are all default named.
    I used the Java Console tracing capability to see what was happening and this is what I saw. This is happening for every .properties file:
    Using JRE 1.4.2_06:
    Connecting http://dummy.com/demos/AES/1_4_2_06/fax.class with no proxy
    Connecting http://dummy.com/demos/AES/1_4_2_06/fax_en.class with no proxy
    Connecting http://dummy.com/demos/AES/1_4_2_06/fax_en.properties with no proxy
    Connecting http://dummy.com/demos/AES/1_4_2_06/fax_en_US.class with no proxy
    Connecting http://dummy.com/demos/AES/1_4_2_06/fax_en_US.properties with no proxy
    Using JRE 1.5:
    network: Connecting http://dummy.com/demos/AES/1_4_2_06/fax.class with proxy=DIRECT
    network: Connecting http://dummy.com/demos/AES/1_4_2_06/fax.class with cookie "PHPSESSID=e4aad164588f860e495812ec5c52326c"
    network: Server http://dummy.com/demos/AES/1_4_2_06/fax.class requesting to set-cookie with "PHPSESSID=e4aad164588f860e495812ec5c52326c; path=/"
    network: Connecting http://dummy.com/demos/AES/1_4_2_06/fax_en.class with proxy=DIRECT
    network: Connecting http://dummy.com/demos/AES/1_4_2_06/fax_en.class with cookie "PHPSESSID=e4aad164588f860e495812ec5c52326c"
    network: Server http://dummy.com/demos/AES/1_4_2_06/fax_en.class requesting to set-cookie with "PHPSESSID=e4aad164588f860e495812ec5c52326c; path=/"
    network: Connecting http://dummy.com/demos/AES/1_4_2_06/fax_en.properties with proxy=DIRECT
    network: Connecting http://dummy.com/demos/AES/1_4_2_06/fax_en.properties with cookie "PHPSESSID=e4aad164588f860e495812ec5c52326c"
    network: Server http://dummy.com/demos/AES/1_4_2_06/fax_en.properties requesting to set-cookie with "PHPSESSID=e4aad164588f860e495812ec5c52326c; path=/"
    network: Connecting http://dummy.com/demos/AES/1_4_2_06/fax_en_US.class with proxy=DIRECT
    network: Connecting http://dummy.com/demos/AES/1_4_2_06/fax_en_US.class with cookie "PHPSESSID=e4aad164588f860e495812ec5c52326c"
    network: Server http://dummy.com/demos/AES/1_4_2_06/fax_en_US.class requesting to set-cookie with "PHPSESSID=e4aad164588f860e495812ec5c52326c; path=/"
    network: Connecting http://dummy.com/demos/AES/1_4_2_06/fax_en_US.properties with proxy=DIRECT
    network: Connecting http://dummy.com/demos/AES/1_4_2_06/fax_en_US.properties with cookie "PHPSESSID=e4aad164588f860e495812ec5c52326c"
    network: Server http://dummy.com/demos/AES/1_4_2_06/fax_en_US.properties requesting to set-cookie with "PHPSESSID=e4aad164588f860e495812ec5c52326c; path=/"
    None of the files in these traces exist. JRE 1.5 is attempting to set cookies on each of these non-existent files. There is approximately a 5-8 second delay that occurs before each attempt times out. So for each of my 23 properties files this translates to 575-920 total seconds (or 9-15 minutes).
    I tried turning off cookies, but the timeout still occurs.
    Can anyone explain why this is happening and how to fix it?

  • Thread hangs in windows XP with JRE 1.5

    My java application hangs in a windows xp machine with jre 1.5. But it works fine in windows 2000 and in some other windows xp machine.
    I am doing UI updates(like custom listmodels) inside the user spawn thread. I read from forums that we need to use SwingUtilities.invokeLater() in such cases. But how it then works in some windows xp machines and windows 2000 ? Am I missing anything.
    Here is the thread dump :
    Full thread dump Java HotSpot(TM) Client VM (1.5.0-b64 mixed mode, sharing):
    "Image Animator 3" daemon prio=4 tid=0x038bab90 nid=0x9cc waiting on condition [
    0x0378f000..0x0378fbe8]
    at java.lang.Thread.sleep(Native Method)
    at sun.awt.image.GifFrame.dispose(Unknown Source)
    at sun.awt.image.GifImageDecoder.readImage(Unknown Source)
    at sun.awt.image.GifImageDecoder.produceImage(Unknown Source)
    at sun.awt.image.InputStreamImageSource.doFetch(Unknown Source)
    at sun.awt.image.ImageFetcher.fetchloop(Unknown Source)
    at sun.awt.image.ImageFetcher.run(Unknown Source)
    "Thread-17" prio=7 tid=0x038baa10 nid=0x9a4 waiting for monitor entry [0x0311f00
    0..0x0311fc68]
    at java.awt.Component.setFont(Unknown Source)
    - waiting to lock <0x17e98810> (a java.awt.Component$AWTTreeLock)
    at java.awt.Container.setFont(Unknown Source)
    at javax.swing.JComponent.setFont(Unknown Source)
    at javax.swing.plaf.basic.BasicComboBoxRenderer.getListCellRendererCompo
    nent(Unknown Source)
    at javax.swing.plaf.basic.BasicListUI.updateLayoutState(Unknown Source)
    at javax.swing.plaf.basic.BasicListUI.maybeUpdateLayoutState(Unknown Sou
    rce)

    Crosspost:
    http://forum.java.sun.com/thread.jspa?threadID=761152&messageID=4345269#4345269

  • Problem with Photoshop hangs/freezing for users on a terminal server

    Dear Forum!
    I'm having some trouble with Photoshop freezing over a period of ~20 minutes when you (1.) user the eraser with special brushes and (2.) copy and paste material from a PDF to Photoshop. As you might notice by the size of this post i'm getting quite depserate over here and need some help.
    A Little background information...
    Photoshop CS6 is installed on a terminal server with ~25 Active users where 3 of them are using Photoshop.
    The operating system on the server is Windows Server 2012 R2.
    There are no additional add-ons just a plain installation of Photoshop in that matter.
    The server uses 40-60% of the memory most of the time (mostly a bit less, some times a bit more but never 100%) and 40% of the CPU.
    There's enough space free on the disc.
    The problem in detail...
    There are two occasions where the freezing has occured most of the time. After it hangs for the first time, it will happen everytime you do any of the operations over a period of ~20 minutes and it's Mutual for all users. When it freezes, the whole terminal session freezes but the program i still responding (it's not getting set to "not responding") when viewed from Another user through the task manager. Ending the process as an administrator sometimes work, although from the moment i end he proces it takes about 10-60 seconds Before the program actually Closes and the user gets back Control. The easiest thing to do most of the time is if an administrator forces them to log out.
    1. The first occasion is when you use the eraser with a brush that's not standard but manually added. The names of the brush packages used are:
    Extacy__Elemental
    KKC_Fractal
    Kornkid's_Grunge_Set
    and the problem is with all brushes inside those packages. The way i evoke the problem is the following:
         1. Start Photoshop
         2. Create new
         3. Fill the background with any color
         4. Select the eraser tool
         5. Change the brush to one of the ones mentioned above
         6. Program freezes
    2. The second scenario when the problem occurs is when the users copy something from a PDF to Photoshop. The way i evoke this is:
         1. Open a PDF
         2. Select area and copy it
         3. Open Photoshop
         4. Create new
         5. Paste into Photoshop
         6. Program freezes
    Solutions we have tried so far...
    I've been working on this for several round now and i'm not entirely sure on what exactly i have done. I will try and do the following solutions once more but i'm pretty sure that i have tried most of them.
    Update graphic card drivers.
    Resetting all Tools:
         1. Select options for a tool
         2. choose "Reset all Tools"
    Resetting presets:
         1. Hold ctrl + shift + alt while Photoshop is starting
         2. select "yes"
    Tested if it matters if i have a pen connected or not, which it doesn't.
    Removed the special brushes (but it still freezes when copy/paste from PDF)
    Removed "save in background" and "automatically save recovery information" options
    Updated to latest version.
    Turned off OpenGL
    Solutions i haven't, but will try...
    Reinstall Photoshop
    Change font preview size
         1. Go to "type"
         2. select "Font prview size"
         3. select "none"
    Delete system font cache
    Close all Adobe applications including the Creative Cloud desktop app (if installed).
    Navigate to \Windows\ServiceProfiles\LocalService\Appdata\Local
    Delete the *FNTCACHE*.DAT or *FontCache*.dat files.
    NOTE: The asterisk (*) indicates various numbers, letters, or words, such as FontCache-S-1-5-21.dat or COFFfntCache.dat.
    Delete Photoshop font cache
    Exit Photoshop and the Creative Cloud desktop app (if installed).
    Navigate to the appropriate folder
    Photoshop CS6 and earlier.
    Windows XP: \Documents and Settings\Local Settings\Application Data\Adobe
    Windows 7: \Users\[user name]\AppData\Local\Adobe
    Photoshop CC and CC 2014
    Windows 7 and 8: \Users\[user name]\AppData\Roaming\Adobe\Adobe Photoshop CC or CC 2014
         3. Delete the TypeSupport folder (Photoshop CS6 and earlier) or the CT Font Cache folder (Photoshop CC and CC 2014), and empty the trash.
    Some links i have been using...
    http://blogs.adobe.com/crawlspace/2012/07/photoshop-basic-troubleshooting-steps-to-fix-mos t-issues.html
    http://helpx.adobe.com/photoshop/kb/photoshop-cs6-gpu-faq.html#troubleshoot
    http://helpx.adobe.com/photoshop/kb/troubleshoot-fonts-photoshop-cs5.html

    Hi Mylenium!
    Thanks for your reply but since the users work on the terminal server via remote dektop the only data sent through the network is a "Picture" of what is happening on the server. All the operations are handled on and by the server and nothing is executed on the users local machine. Also all files are stored on the server therefore the load on the network is minimum.
    We are not the first in the World to run this setup and i know that this is possible to do since i've read about others running PS like this.
    Kind Regards,
    J. Alm

  • Issues with Quark Xpress Hang/Freeze when focus is shifted to anything else

    I've been working on this issue since the 28th of Dec.
    I've been in contact with Quark. They're still examining crash log.
    I thought I'd share what is on my plate in hopes others might have had, and solved similar experience.
    This message will be verbose in hope of giving the uber-guru answers to questions in advance of their being asked.
    First portion will contain a log of actions taken and results there of.
    Second will be the typical Quark Crash log I've been getting when the application is quit.
    I will mention as well that I've received a clean bill of health from TechToolPro, DiskWarrior, etceteras, as well as Passed the tests from Apple Hardware Tests.
    Let me know if I can provide any additional info
    Log of Actions
    Installation of new Quark, up to 6.5 only.
    Completed at 5:27pm
    Launching Quark under New User at 5:28
    Launch successful.
    Created one file. Saved file, selected finder, then text editor, the quark.
    Quark still operating. added text, saved, and closed document.
    selected finder, then text editor, the quark.
    Quark still operating.
    Manually quit quark from application menu at 5:33.
    Application successfully "quit" without "crashing"
    Repeating the procedure above at 5:34
    Launched quark via double-click of previously saved file.
    added text, saved, selected finder, then text editor, the quark.
    Quark still operating.
    selected finder, then text editor, the quark.
    Quark still operating.
    quit quark from cmd-tab cmd-q method causes "unexpected crash"
    Ran several similar scenarios, with this as conclusion:
    Launching quark from double click of application, creation of new document, saving, and quitting in ANY fashion allows safe quit
    Launching Quark, opening from save/open dialog box an existing document, then quit with or without edit, using cmd-tab cmd-q allows safe quit
    Double-clicking existing document to launch Quark, then closing document after edit and save or immediately, quark Unexp. Crash occurs with Cmd-Tab Cmd-Q every time.
    Double-clicking existing documents to launch Quark, then closing document after edit and save, then create new document, with save and close, quark Unexp. Crash occurs with Cmd-Tab Cmd-Q every time.
    Launching of Quark 6.50 under base user
    Launching Quark, opening from save/open dialog box an existing document, then quit with or without edit, using cmd-tab cmd-q allows safe quit
    Double-clicking existing document to launch Quark, then closing document after edit and save or immediately, quark Unexp. Crash occurs with Cmd-Tab Cmd-Q every time.
    Double-clicking existing documents to launch Quark, then closing document after edit and save, then create new document, with save and close, quark Unexp. Crash occurs with Cmd-Tab Cmd-Q every time.
    Launching Quark, creating file, saving, selected finder, then text editor, the quark.
    Quark hangs/freezes until force-quit
    it seems there are two issues at hand.
    unexpected crashes occur with cmd-tab cmd-q in either Base or New user logins when quark launch was initiated by double-click of file from finder.
    and
    unexplained application hangs/freezes when under base user.
    Quark Crash Log
    Date/Time: 2008-01-03 19:08:44.597 -0500
    OS Version: 10.4.11 (Build 8S165)
    Report Version: 4
    Command: QuarkXPress
    Path: /Applications/QuarkTest/QuarkXPress 6.1/QuarkXPress/Contents/MacOS/QuarkXPress
    Parent: WindowServer [102]
    Version: QuarkXPress version 6.50 (6.50)
    PID: 4127
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x170f086c
    Thread 0 Crashed:
    0 <<00000000>> 0x170f086c 0 + 386861164
    1 com.quark.QuarkXPress 0x00554a18 _destroy_globalchain + 60
    2 com.quark.QuarkXPress 0x0053f910 exit + 52
    3 com.quark.QuarkXPress 0x00003f04 call_mod_initfuncs + 0
    4 com.quark.QuarkXPress 0x00003d80 _code_start_ + 48
    Thread 1:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.unsanity.ape 0xc0001bf4 _apeagent + 296
    3 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x90054388 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90070be8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf73f4 TSWaitOnSemaphoreCommon + 176
    3 ...ple.CoreServices.CarbonCore 0x90bff390 TimerThread + 60
    4 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x900411f8 machwaituntil + 8
    1 libSystem.B.dylib 0x90040fc4 nanosleep + 388
    2 libSystem.B.dylib 0x90040df0 sleep + 144
    3 <<00000000>> 0x26124604 0 + 638731780
    4 <<00000000>> 0x2612d724 0 + 638768932
    5 <<00000000>> 0x2612d334 0 + 638767924
    6 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x90054388 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x900541e4 pthreadcondtimedwait + 676
    2 <<00000000>> 0x26125f90 0 + 638738320
    3 <<00000000>> 0x26126134 0 + 638738740
    4 <<00000000>> 0x25caa6bc 0 + 634037948
    5 <<00000000>> 0x26251480 0 + 639964288
    6 <<00000000>> 0x2612d724 0 + 638768932
    7 <<00000000>> 0x2612d334 0 + 638767924
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x90054388 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x900541e4 pthreadcondtimedwait + 676
    2 <<00000000>> 0x26125f90 0 + 638738320
    3 <<00000000>> 0x26126134 0 + 638738740
    4 <<00000000>> 0x25caa6bc 0 + 634037948
    5 <<00000000>> 0x26251480 0 + 639964288
    6 <<00000000>> 0x2612d724 0 + 638768932
    7 <<00000000>> 0x2612d334 0 + 638767924
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x90054388 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x900541e4 pthreadcondtimedwait + 676
    2 <<00000000>> 0x26125f90 0 + 638738320
    3 <<00000000>> 0x26126134 0 + 638738740
    4 <<00000000>> 0x25caa6bc 0 + 634037948
    5 <<00000000>> 0x26251480 0 + 639964288
    6 <<00000000>> 0x2612d724 0 + 638768932
    7 <<00000000>> 0x2612d334 0 + 638767924
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x900411f8 machwaituntil + 8
    1 libSystem.B.dylib 0x90040fc4 nanosleep + 388
    2 libSystem.B.dylib 0x90040df0 sleep + 144
    3 <<00000000>> 0x2625157c 0 + 639964540
    4 <<00000000>> 0x2612d724 0 + 638768932
    5 <<00000000>> 0x2612d334 0 + 638767924
    6 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x00000000170f086c srr1: 0x100000004000f030 vrsave: 0x0000000000000000
    cr: 0x44800204 xer: 0x0000000000000000 lr: 0x00000000005549cc ctr: 0x00000000170f086c
    r0: 0x0000000000554a18 r1: 0x00000000bffffac0 r2: 0x00000000007e2d70 r3: 0x00000000170f086c
    r4: 0xffffffffffffffff r5: 0x00000000000003e8 r6: 0xffffffffffffffff r7: 0x0000000000000000
    r8: 0x0000000000000001 r9: 0x00000000a0001fac r10: 0x0000000002285a00 r11: 0x0000000024800202
    r12: 0x00000000170f086c r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x0000000000000000
    r16: 0x0000000000000000 r17: 0x0000000000000000 r18: 0x0000000000000000 r19: 0x0000000000000000
    r20: 0x0000000000000000 r21: 0x0000000000000000 r22: 0x0000000000000000 r23: 0x0000000000000000
    r24: 0x0000000000000000 r25: 0x0000000000000000 r26: 0x00000000bffffc44 r27: 0x000000000000000c
    r28: 0x0000000000000002 r29: 0x00000000bffffc54 r30: 0x000000000053f8f8 r31: 0x00000000007e49f0
    Binary Images Description:
    0x1000 - 0x71efff com.quark.QuarkXPress QuarkXPress version 6.50 (6.50) /Applications/QuarkTest/QuarkXPress 6.1/QuarkXPress/Contents/MacOS/QuarkXPress
    0xb05000 - 0xc45fff OmniCore.Mach-O.r.dylib /Applications/QuarkTest/QuarkXPress 6.1/OmniCore.Mach-O.r.dylib
    0xd1e000 - 0xe8ffff Xerces-c-cw8 /Library/Frameworks/Xerces-c-cw8.framework/Xerces-c-cw8
    0x1922c20 - 0x1922cd2 CFMPriv_CoreFoundation PEF binary: CFMPriv_CoreFoundation
    0x19232f0 - 0x1923367 CFMPriv_System PEF binary: CFMPriv_System
    0x1923610 - 0x19236e0 CFMPriv_CarbonSound PEF binary: CFMPriv_CarbonSound
    0x1923760 - 0x1923833 CFMPriv_CommonPanels PEF binary: CFMPriv_CommonPanels
    0x1923910 - 0x19239cb CFMPriv_Help PEF binary: CFMPriv_Help
    0x19239d0 - 0x1923a9a CFMPriv_HIToolbox PEF binary: CFMPriv_HIToolbox
    0x1923b20 - 0x1923bf6 CFMPriv_HTMLRendering PEF binary: CFMPriv_HTMLRendering
    0x1923c70 - 0x1923d43 CFMPriv_ImageCapture PEF binary: CFMPriv_ImageCapture
    0x1923dd0 - 0x1923eb5 CFMPriv_NavigationServices PEF binary: CFMPriv_NavigationServices
    0x1923f30 - 0x1924006 CFMPriv_OpenScriptingMacBLib PEF binary: CFMPriv_OpenScriptingMacBLib
    0x19240e0 - 0x192419e CFMPriv_Print PEF binary: CFMPriv_Print
    0x19241c0 - 0x192428d CFMPriv_SecurityHI PEF binary: CFMPriv_SecurityHI
    0x1924310 - 0x19243f2 CFMPriv_SpeechRecognition PEF binary: CFMPriv_SpeechRecognition
    0x1924470 - 0x1924543 CFMPriv_CarbonCore PEF binary: CFMPriv_CarbonCore
    0x19245c0 - 0x1924693 CFMPriv_OSServices PEF binary: CFMPriv_OSServices
    0x1924770 - 0x1924832 CFMPriv_AE PEF binary: CFMPriv_AE
    0x1924840 - 0x1924905 CFMPriv_ATS PEF binary: CFMPriv_ATS
    0x1924980 - 0x1924a57 CFMPriv_ColorSync PEF binary: CFMPriv_ColorSync
    0x1924ae0 - 0x1924bc3 CFMPriv_FindByContent PEF binary: CFMPriv_FindByContent
    0x1924c40 - 0x1924d1a CFMPriv_HIServices PEF binary: CFMPriv_HIServices
    0x1924d90 - 0x1924e70 CFMPriv_LangAnalysis PEF binary: CFMPriv_LangAnalysis
    0x1924f00 - 0x1924fe6 CFMPriv_LaunchServices PEF binary: CFMPriv_LaunchServices
    0x19250c0 - 0x1925197 CFMPriv_PrintCore PEF binary: CFMPriv_PrintCore
    0x19251a0 - 0x1925262 CFMPriv_QD PEF binary: CFMPriv_QD
    0x1925360 - 0x1925449 CFMPriv_SpeechSynthesis PEF binary: CFMPriv_SpeechSynthesis
    0x1ed3000 - 0x1eedfff com.apple.AppleIntermediateCodec 1.1 (141) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x1ef2000 - 0x1f08fff com.apple.IMXCodec 1.0 (114) /Library/QuickTime/IMXCodec.component/Contents/MacOS/IMXCodec
    0x1f93000 - 0x1f9efff com.apple.LiveType.component 2.0.2 /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x1fac000 - 0x1febfff com.apple.QuickTimeFireWireDV.component 7.3.1 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x1fff000 - 0x1fff92b KodakCarbonShared PEF binary: KodakCarbonShared
    0x1623c000 - 0x162b5fff com.DivXInc.DivXDecoder 6.0.5 /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0x162c6000 - 0x163a2fff com.divxnetworks.DivXCodec 5.1.1 /Library/QuickTime/DivX 5.component/Contents/MacOS/DivX 5
    0x1642e000 - 0x1642efff com.apple.applescript.component 1.10.7 /System/Library/Components/AppleScript.component/Contents/MacOS/AppleScript
    0x16444000 - 0x1667dfff net.telestream.wmv.import 2.2.0.49 /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x166b3000 - 0x16867fff net.telestream.wmv.advanced 2.2.0.49 /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0x168a9000 - 0x16922fff com.apple.DVCPROHDCodec 1.1.1 (209) /Library/QuickTime/DVCPROHDCodec.component/Contents/MacOS/DVCPROHDCodec
    0x16938000 - 0x169e8fff com.apple.AppleHDVCodec 1.0 (129) /Library/QuickTime/AppleHDVCodec.component/Contents/MacOS/AppleHDVCodec
    0x16a06000 - 0x16a7ffff com.apple.applepixletvideo 1.2.5 (1.2d5) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x18576000 - 0x185c53c7 CarbonLibpwpc PEF binary: CarbonLibpwpc
    0x185e7000 - 0x1864f97e KodakCMSC PEF binary: KodakCMSC
    0x25ac4000 - 0x25b1402f OLE.CARBON.Shared PEF binary: OLE.CARBON.Shared
    0x780ce000 - 0x78136fff com.apple.LiveType.framework 2.0.2 /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x88d70000 - 0x88d75fff com.apple.CoreMediaAuthoringPrivate 1.1 /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x88fc0000 - 0x88fe7fff com.apple.CoreMediaPrivate 1.2 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x89030000 - 0x890d0fff com.apple.QuickTimeImporters.component 7.3.1 /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x8fe00000 - 0x8fe52fff dyld 46.16 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90293000 - 0x90344fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.77 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bb000 - 0x90895fff com.apple.CoreFoundation 6.4.9 (368.31) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e0000 - 0x909e2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3c000 - 0x90ac0fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aea000 - 0x90b5afff com.apple.framework.IOKit 1.4.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b70000 - 0x90b82fff libauto.dylib /usr/lib/libauto.dylib
    0x90b89000 - 0x90e60fff com.apple.CoreServices.CarbonCore 681.17 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec6000 - 0x90f46fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f90000 - 0x90fd2fff com.apple.CFNetwork 129.22 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe7000 - 0x90ffffff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100f000 - 0x91090fff com.apple.SearchKit 1.0.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d6000 - 0x91100fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91111000 - 0x9111ffff libz.1.dylib /usr/lib/libz.1.dylib
    0x91122000 - 0x912ddfff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dc000 - 0x913e5fff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ec000 - 0x913f4fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f8000 - 0x91420fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91433000 - 0x9143efff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91443000 - 0x914befff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fb000 - 0x914fbfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fd000 - 0x91535fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91550000 - 0x91622fff com.apple.ColorSync 4.4.10 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91675000 - 0x91706fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174d000 - 0x91804fff com.apple.QD 3.10.25 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91841000 - 0x9189ffff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918ce000 - 0x918f2fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91906000 - 0x9192bfff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193e000 - 0x91980fff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9199c000 - 0x919b0fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919be000 - 0x91a04fff com.apple.ImageIO.framework 1.5.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a1b000 - 0x91ae2fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b30000 - 0x91b46fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b4b000 - 0x91b69fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6f000 - 0x91c26fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c75000 - 0x91c79fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c7b000 - 0x91ce5fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91cea000 - 0x91d27fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91d2e000 - 0x91d48fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d4d000 - 0x91d50fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d52000 - 0x91e30fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e50000 - 0x91e50fff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e52000 - 0x91f37fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f3f000 - 0x91f5efff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fca000 - 0x92038fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x92043000 - 0x920d8fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920f2000 - 0x9267afff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926ad000 - 0x929d8fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a08000 - 0x92af6fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92af9000 - 0x92b81fff com.apple.DesktopServices 1.3.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bc2000 - 0x92dedfff com.apple.Foundation 6.4.9 (567.36) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f1a000 - 0x92f38fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f43000 - 0x92f9dfff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fbb000 - 0x92fbbfff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fbd000 - 0x92fd1fff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92fe9000 - 0x92ff9fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93005000 - 0x9301afff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9302c000 - 0x930b3fff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930c7000 - 0x930d2fff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930dc000 - 0x93109fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93123000 - 0x93133fff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9313f000 - 0x931a5fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931d6000 - 0x93225fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93253000 - 0x93270fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93282000 - 0x9328ffff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93298000 - 0x935a6fff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x936f6000 - 0x93702fff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9377b000 - 0x9377bfff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9377d000 - 0x93db0fff com.apple.AppKit 6.4.9 (824.44) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9413d000 - 0x941affff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941e8000 - 0x942adfff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94300000 - 0x94300fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94302000 - 0x944c2fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9450c000 - 0x94549fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94551000 - 0x945a1fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945aa000 - 0x945c4fff com.apple.CoreVideo 1.4.2 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x945d5000 - 0x945f6fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x94799000 - 0x947a8fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x947b0000 - 0x947bcfff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94802000 - 0x9481afff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94821000 - 0x94b48fff com.apple.QuickTime 7.3.1 /System/Library/Frameworks/QuickTime.framework/QuickTime
    0x94c2e000 - 0x94c9ffff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x95075000 - 0x95092fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x974b5000 - 0x974d4fff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97cda000 - 0x97ce7fff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x97de2000 - 0x97e04fff com.apple.AppleVAFramework 2.4.32 /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x98f34000 - 0x98fdefff com.apple.applescript 1.10.7 /System/Library/PrivateFrameworks/AppleScript.framework/Versions/A/AppleScript
    0x9917c000 - 0x99d6afff com.apple.QuickTimeComponents.component 7.3.1 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x99fcd000 - 0x99fd1fff com.apple.QuickTimeH264.component 7.3.1 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x9a26d000 - 0x9a33bfff com.apple.QuickTimeMPEG4.component 7.3.1 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x9ac70000 - 0x9ac8efff com.apple.OpenTransport 2.0 /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport
    0xc0000000 - 0xc000ffff com.unsanity.ape 2.0.3 /Library/Frameworks/ApplicationEnhancer.framework/Versions/A/ApplicationEnhance r
    Model: PowerMac11,2, BootROM 5.2.7f1, 2 processors, PowerPC G5 (1.1), 2 GHz, 2.5 GB
    Graphics: NVIDIA GeForce 6600, GeForce 6600, PCI, 256 MB
    Memory Module: DIMM0/J6700, 256 MB, DDR2 SDRAM, PC2-4200U-444
    Memory Module: DIMM1/J6800, 256 MB, DDR2 SDRAM, PC2-4200U-444
    Memory Module: DIMM2/J6900, 1 GB, DDR2 SDRAM, PC2-4200U-444
    Memory Module: DIMM3/J7000, 1 GB, DDR2 SDRAM, PC2-4200U-444
    Network Service: Built-in Ethernet 1, Ethernet, en0
    PCI Card: GeForce 6600, Display, SLOT-1
    PCI Card: bcom5714, network, GIGE
    PCI Card: bcom5714, network, GIGE
    Serial ATA Device: WDC WD1600JS-41MVB1, 149.05 GB
    Parallel ATA Device: HL-DT-ST DVD-RW GWA-4165B
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: CTE-440-U V4.0-3, WACOM, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    USB Device: Hub, Up to 12 Mb/sec, 500 mA
    USB Device: USB Printer, EPSON, Up to 12 Mb/sec, 500 mA
    USB Device: AK5370, AKM, Up to 12 Mb/sec, 500 mA
    FireWire Device: External HD, Iomega, Up to 800 Mb/sec
    FireWire Device: unknown_device, unknown_value, Up to 400 Mb/sec

    nodel9999 wrote:
      Should I buy an enclosure for my HD and see if I can get it going externally?  Would that be the best way to see if it is the drive and not the cable?  An enclosure is cheaper than buying a new SATA cable, so I'm hoping that's where I can start.
    Yes.  See if the HDD will boot the MBP via a USB connection.  You should probably have an external HDD for backups or a possible replacement of your boot drive.
    Ciao.

  • Bridge CC hangs/freezes with AE animation presets.

    Does anyone else have the issue of Bridge CC hanging/freezing when an AE animation preset is selected in Bridge?  This happens whether I Browse Presets from AE or I attempt to navigate to the presets folder directly through Bridge CC.
    I have uninstalled and re-installed both programs, with no success.  I can still apply an animation preset to a layer from the presets panel in AE, but of course there is no preview, so this is a bit frustrating.  Any ideas would be appreciated.
    Thanks in advance.

    No experience with AE but if one set up does work and the other not it is likely the problem of that one set up.
    Uninstall and reinstall without using Adobe cleaner tool is rarely solving problems because existing prefs and cache often keeps the same.
    The central cache is by default installed in the user library caches folder. When in real trouble I always manual delete this cache file, together with the Bridge plist file and restart Bridge holdong down option key and reset prefs.
    This provides an almost new install with factory defaults.
    Be aware that per OSX 10.7 the user library is hidden, use menu Go with option to reveal)
    User / library / caches / Adobe/ Bridge CC : inhere a plug in and a folder called cache. Drag both outside the user library (trash or back up)
    User / library / preferences / com.adobe.Bridge6.plist (drag to the trash)
    restart Bridge holding down option and choose refresh prefs, then try again.
    You need to reset your custom settings and sometimes reset the custom workspace and since you dumped the cache it first needs time to recache your content.

  • HELP: iTunes 6 unable to sync songs with ipod - hangs freezes crashes

    Hi,
    This has been posted before, but a search of 500 messages have turned up no solutions. Anyone who has any idea of a solution please help.
    PROBLEM:
    iTunes 6 and ipod 5th gen unable to sync songs or manually move more than 50 songs at a time to ipod. It hangs / freezes / crashes when updating the ipod. It will stop at 50 songs, 100 songs, sometimes even 2200 songs - out of 8000.
    The "Beachball of death" comes on, and there is no way to force quit or stop the now frozen update. The only thing that gets a response is pulling the ipod from the dock or powering the computer down manually.
    TRIED:
    1. Repair permissions
    2. Update ipod with latest ipod update software
    3. Restore ipod " " " " '
    4. Used Activity Monitor to see where program hangs - no added info, it will stop randomly at different songs, and next time around it will pick another son to hang / freeze at
    5. uncheck "put hard disks to sleep when possible" in Energy Preferences pane
    I am at my wits end with this..... will try anything.... even Voodoo at this point as long as you tell me it worked for you!
    Anyone ever solved this long standing problem (which seems to be present with iTunes 7 as well) ?
    Thanks !
    Alf
    Dual 1 ghz powerpc   Mac OS X (10.4.6)   usb 2.0 card installed in pci slot

    Thanks for the help!

  • Can we make a Applet -- Javascript to Managed Bean call Multiple times and vice a versa using a loop?

    Hi,
         I have a requirement wherein im uploading multiple files using an Applet to ADF. With the file sizes relatively lower this works fine but now we have a request to upload bigger files, so the only option i could find is to send the uploaded file data in smaller chunks from the applet to ADF serverside code. But if i want to keep my previous design wherein i was passing the filedata in an encoded string format from the applet to ADF via javascript, i observed that Applets are not able to call a managed bean more than one time and thus only the data sent in the first chunk is received at the client side.
    Could you please provide me with a direction here?

    Can you help understand why you want to use Applet?  Anyhow, check out,  JUpload project on Sourceforge - JUpload - File Upload Applet - General presentation
    for some lead. Not sure if this would help, but no harm checking.

  • Intercepting applet clicks with javascript

    I have an applet that runs in a jsp.
    Is it possible without changing the code of the applet
    to handle events of the applet like onmouseup in javascript?
    For example -when the user clicks on the applet I want to know that
    via javascript.
    Thanks.

    Not sure if it is possible with out changing the Applet code but to do Applet-JavaScript interaction you use LiveConnect
    http://java.sun.com/products/plugin/1.3/docs/jsobject.html

Maybe you are looking for