Jnlp jvm-args for MAC OS X

Hello guys,
maybe its a simple problem, but i have it ;) . My javafx 1.3.1 applet starts with the jnlp below without any problems. But on a MAC OS X 10.6 it dont work. Without the java-vm-args -attribute, it will start, but the applet runs into an "OutOfMemory.PermGen"-Error, so i need the attributes to rise the size. Can anyone help me ?
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" codebase="http://www.persoware.de/newPersoware4338/" href="Persoware_browser.jnlp">
    <information>
        <title>Persoware</title>
        <vendor>maier</vendor>
        <homepage href="http://www.persoware.de/newPersoware4338/"/>
        <description>Persoware</description>
        <icon kind="splash" href="http://dl.javafx.com/1.3/splash.png"/>
        <offline-allowed/>
    </information>
    <security>
        <all-permissions/>
    </security>
    <resources>
        <j2se version="1.5+" java-vm-args="-d32 -XX:PermSize=64m -XX:MaxPermSize=256m"/>
        <property name="jnlp.packEnabled" value="true"/>
        <property name="jnlp.versionEnabled" value="true"/>
        <extension name="JavaFX Runtime" href="http://dl.javafx.com/1.3/javafx-rt.jnlp"/>
        <jar href="Persoware.jar" main="true" size="12153804"/>
        <jar href="lib/JFXtras-Controls-0.7rc2.jar" size="1435119"/>
        <jar href="lib/jtds-1.2.5.jar" size="306199"/>
        <jar href="lib/JFXtras-Common-0.7rc2.1.jar" size="1291808"/>
        <jar href="lib/miglayout-3.7.jar" size="201034"/>
        <jar href="lib/jdom-1.1.2.jar" size="156628"/>
        <jar href="lib/TableView_abdm.jar" size="85407"/>
        <jar href="lib/sqljdbc4.jar" size="525491"/>
    </resources>
    <applet-desc name="Persoware" main-class="com.sun.javafx.runtime.adapter.Applet" progress-class="com.javafx.progressbar.ProgressManager" width="800" height="600">
        <param name="MainJavaFXScript" value="gui.Main"/>
    </applet-desc>
    <update check="always"/>
</jnlp>

JavaFX 1.3 has multiple memory leaks problems:
http://javafx-jira.kenai.com/browse/RT-6921
You are not alone in this issue...actually I didn't know that JavaFX 1.3 applets work on MAC ;)
You'll have to migrate to JavaFX 2.XX and wait for the JavaFX runtime on MAC
Best
Edited by: alabala on 2012-2-28 9:02

Similar Messages

  • Controlling JVM Args for the Connection Server?

    I'm looking to control the JVM Args for the Connection Server which is invoked from Web Intelligence.  Any idea how I would do that?  I'm primarily looking to control min/max memory and to set a debug port for a custom Open Data driver.  I saw this post which seemed like a similar question, https://forums.sdn.sap.com/click.jspa?searchID=26256895&messageID=5611756 , but the resolution doesn't seem to apply to Connection Server.
    Thanks!

    Hi Jin-Chong -
    Yes, by entering
    -Xmx1024m
    ...you will successfully increase the heap size of the default JVM used by connection server.  We do this in our product when data volumes become significantly large.  Make sure you don't forget the "m" or "-" - it must be exactly as shown above.
    Regarding the libjvm: You should use the classic version.  The alternate version is meant in most situations for debugging but does provide some additional features.  You should check w/ IBM DeveloperWorks online for more info. about that.
    I'm not sure how you mean by "logging" - if you have some custom code you're running through cs.cfg, I would output runtime settings from that code.  Otherwise, you should be able to profile cs.cfg if you attach a debugger as mentioned earlier in this post.
    Hope this helps.

  • Help for Mac Browser Launcher for jvm 5 for Mac OS X 10.5.1

    hi im using Mac OS X 10.5.1 and im having a java code BrowserLauncher.java which works properly for earlier verioson of Mac but its not working on this version on jdk1.5. can anyone suggest me how can i get a browser launcher in java for Mac Os X 10.5.1. im using here jdk1.5.
    im providing code below which im using right now..    public static void openURL(String url) throws IOException {
            if (!loadedWithoutErrors) {
                throw new IOException("Exception in finding browser: " + errorMessage);
            Object browser = locateBrowser();
            if (browser == null) {
                throw new IOException("Unable to locate browser: " + errorMessage);
            StringBuffer sbUrl = new StringBuffer();
            int urlLength = url.length();
            for (int i = 0; i < urlLength; i++) {
                char urlChar = url.charAt(i);
                if (urlChar == ' ') {
                    sbUrl.append("%20");
                } else {
                    sbUrl.append(urlChar);
            url = sbUrl.toString();
            switch (jvm) {
                case MRJ_2_0:
                    Object aeDesc = null;
                    try {
                        aeDesc = aeDescConstructor.newInstance(new Object[]{url});
                        putParameter.invoke(browser, new Object[]{keyDirectObject, aeDesc});
                        sendNoReply.invoke(browser, new Object[]{});
                    } catch (InvocationTargetException ite) {
                        throw new IOException("InvocationTargetException while creating AEDesc: " + ite.getMessage());
                    } catch (IllegalAccessException iae) {
                        throw new IOException("IllegalAccessException while building AppleEvent: " + iae.getMessage());
                    } catch (InstantiationException ie) {
                        throw new IOException("InstantiationException while creating AEDesc: " + ie.getMessage());
                    } finally {
                        aeDesc = null;
                        // Encourage it to get disposed if it was created
                        browser = null;
                        // Ditto
                    break;
                case MRJ_2_1:
                    Runtime.getRuntime().exec(new String[]{(String) browser, url});
                    break;
                case MRJ_3_0:
                    int[] instance = new int[1];
                    int result = ICStart(instance, 0);
                    if (result == 0) {
                        int[] selectionStart = new int[]{0};
                        byte[] urlBytes = url.getBytes();
                        int[] selectionEnd = new int[]{urlBytes.length};
                        result = ICLaunchURL(instance[0], new byte[]{0}, urlBytes,
                                urlBytes.length, selectionStart,
                                selectionEnd);
                        if (result == 0) {
                            // Ignore the return value; the URL was launched successfully
                            // regardless of what happens here.
                            ICStop(instance);
                        } else {
                            throw new IOException("Unable to launch URL: " + result);
                    } else {
                        throw new IOException("Unable to create an Internet Config instance: " + result);
                    break;
                case MRJ_3_1:
                case MRJ_4_1:
                    try {
                        openURL.invoke(null, new Object[]{url});
                    } catch (InvocationTargetException ite) {
                        throw new IOException("InvocationTargetException while calling openURL: " + ite.getMessage());
                    } catch (IllegalAccessException iae) {
                        throw new IOException("IllegalAccessException while calling openURL: " + iae.getMessage());
                    break;
                case WINDOWS_NT:
                    // Add quotes around the URL to allow ampersands and other special
                    // characters to work.
                    Process processNT = Runtime.getRuntime().exec(new String[]{(String) browser,
                            FIRST_WINDOWS_PARAMETER,
                            SECOND_WINDOWS_PARAMETER,
                            THIRD_WINDOWS_PARAMETER,
                            url});
                    try {
                        // This avoids a memory leak on some versions of Java on Windows.
                        // That's hinted at in <http://developer.java.sun.com/developer/qow/archive/68/>.
                        processNT.waitFor();
                        processNT.exitValue();
                    } catch (InterruptedException ie) {
                        throw new IOException("InterruptedException while launching browser: " + ie.getMessage());
                    break;
                case WINDOWS_9x:
                    Process process = Runtime.getRuntime().exec(new String[]{(String) browser,
                            FIRST_WINDOWS_PARAMETER,
                            SECOND_WINDOWS_PARAMETER,
                            url});
                    try {
                        process.waitFor();
                        process.exitValue();
                    } catch (InterruptedException ie) {
                        throw new IOException("InterruptedException while launching browser: " + ie.getMessage());
                    break;
                case OTHER:
                    // Assume that we're on Unix and that Netscape is installed
                    // First, attempt to open the URL in a currently running session of Netscape
                    try {
                        process = Runtime.getRuntime().exec(new String[]{(String) browser,
                                NETSCAPE_REMOTE_PARAMETER,
                                NETSCAPE_OPEN_PARAMETER_START +
                                        url +
                                        NETSCAPE_OPEN_PARAMETER_END});
                    } catch (IOException exc) {
                        // Netscape does not exist; try Mozilla
                        browser = "mozilla";
                        process = Runtime.getRuntime().exec(browser + " -remote openURL(" + url + ")");
                    try {
                        int exitCode = process.waitFor();
                        if (exitCode != 0) {
                            // if Netscape was not open
                            Runtime.getRuntime().exec(new String[]{(String) browser, url});
                    } catch (InterruptedException ie) {
                        throw new IOException("InterruptedException while launching browser: " + ie.getMessage());
                    break;
                default:
                    // This should never occur, but if it does, we'll try the simplest thing possible
                    Runtime.getRuntime().exec(new String[]{(String) browser, url});
                    break;
        }

    keeskist wrote:
    It's actually not that hard, take a look at http://developer.apple.com/documentation/Java/Reference/1.5.0/appledoc/api/com/apple/eio/FileManager.html#openURL(java.lang.String)
    That's what is in the first reply

  • I can't start halo for mac

    Hi, I having some problems with halo for mac. I have a intel duel core mac with windows installed. I have been playing halo for some time now, but about 3 weeks ago I quit for a week. In this time I installed America's Army (the game developed by the US military) and also anti-virus for windows. When I started halo up again about 2 weeks ago, it wouldn't work! It would start for about 10 seconds, then "quit unexpectedly"! I know I'm not the only one who has had this problem, but I still need help!
    Here is the programing error.... thing (I don't know what it is, really)
    Date/Time: 2006-09-19 19:57:34.271 -1000
    OS Version: 10.4.7 (Build 8J2135)
    Report Version: 4
    Command: Halo
    Path: /Applications/Halo/Halo
    Parent: WindowServer [66]
    Rosetta: Yes
    Version: 1.5.1 (1.5.1 © 2003-2004 Bungie Studios & Microsoft Corporation)
    PID: 424
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x0000000c
    Thread 0 Crashed:
    0 LaunchCFMApp 0xb808703d 0xb8000000 + 553021
    1 LaunchCFMApp 0xb807b116 0xb8000000 + 504086
    2 LaunchCFMApp 0xb808f47a 0xb8000000 + 586874
    3 LaunchCFMApp 0xb80e3f07 spinlockwrapper + 2511
    Thread 1:
    0 LaunchCFMApp 0xb81f326b strchr + 72
    1 LaunchCFMApp 0xb818ebf6 pthreadcondwait + 3114
    2 LaunchCFMApp 0xb812ae90 catchexception_raise_stateidentity + 320
    3 LaunchCFMApp 0xb812a3ba CallPPCFunctionAtAddressInt + 175496
    4 LaunchCFMApp 0xb812a2b1 CallPPCFunctionAtAddressInt + 175231
    5 LaunchCFMApp 0xb812af8e catchexception_raise_stateidentity + 574
    6 LaunchCFMApp 0xb81c438c pthread_create + 1124
    Thread 2:
    0 LaunchCFMApp 0xb80f80af spinlockwrapper + 84855
    1 LaunchCFMApp 0xb81232a8 CallPPCFunctionAtAddressInt + 146550
    2 LaunchCFMApp 0xb8125d45 CallPPCFunctionAtAddressInt + 157459
    3 LaunchCFMApp 0xb809a35e 0xb8000000 + 631646
    Thread 3:
    0 LaunchCFMApp 0xb80f80af spinlockwrapper + 84855
    1 LaunchCFMApp 0xb81232a8 CallPPCFunctionAtAddressInt + 146550
    2 LaunchCFMApp 0xb8125d45 CallPPCFunctionAtAddressInt + 157459
    3 LaunchCFMApp 0xb809a35e 0xb8000000 + 631646
    Thread 4:
    0 LaunchCFMApp 0xb80f80af spinlockwrapper + 84855
    1 LaunchCFMApp 0xb81232a8 CallPPCFunctionAtAddressInt + 146550
    2 LaunchCFMApp 0xb8125d45 CallPPCFunctionAtAddressInt + 157459
    3 LaunchCFMApp 0xb809a35e 0xb8000000 + 631646
    Thread 5:
    0 LaunchCFMApp 0xb80f80af spinlockwrapper + 84855
    1 LaunchCFMApp 0xb81232a8 CallPPCFunctionAtAddressInt + 146550
    2 LaunchCFMApp 0xb8125d45 CallPPCFunctionAtAddressInt + 157459
    3 LaunchCFMApp 0xb809a35e 0xb8000000 + 631646
    Thread 0 crashed with i386 Thread State:
    eax: 0x00000003 ebx: 0xb807ae88 ecx:0x00000000 edx: 0x0000000c
    edi: 0x80d03720 esi: 0x0000000c ebp:0xb7fffa08 esp: 0xb7fffa04
    ss: 0x0000002f efl: 0x00010206 eip:0xb808703d cs: 0x00000027
    ds: 0x0000002f es: 0x0000002f fs:0x00000000 gs: 0x00000037
    Binary Images Description:
    0x1000 - 0x2fff LaunchCFMApp /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMApp
    0x7d4000 - 0x7dffff com.apple.iokit.IOHIDLib 1.4.8 /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Co ntents/MacOS/IOHIDLib
    0x7ec000 - 0x7edfff BDL.dylib /usr/libexec/oah/Shims/BDL.dylib
    0x7f0000 - 0x7f0fff libSystem.B.dylib /usr/libexec/oah/Shims/libSystem.B.dylib
    0x7f3000 - 0x7f4fff CoreFoundation /usr/libexec/oah/Shims/CoreFoundation.framework/CoreFoundation
    0x7f7000 - 0x7f7fff ApplicationServices /usr/libexec/oah/Shims/ApplicationServices.framework/ApplicationServices
    0x1535000 - 0x159dfff com.DivXInc.DivXDecoder 6.2.5 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x16ea000 - 0x16f4fff libHIDUtilities.dylib HIDBundle version 1.0 (0.0.1d1) /Applications/Halo/HID.bundle/Contents/MacOS/libHIDUtilities.dylib
    0x175b000 - 0x1795fff GLEngine /usr/libexec/oah/Shims/GLEngine.bundle/GLEngine
    0x17a8000 - 0x17aefff IOKit /usr/libexec/oah/Shims/IOKit.framework/IOKit
    0x17b3000 - 0x17e3fff GLEngine /usr/libexec/oah/Shims/GLEngine.bundle/GLEngine
    0xb904000 - 0xb920fff GLDriver /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0xb927000 - 0xb948fff GLRendererFloat /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0xba00000 - 0xba07fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0xba0c000 - 0xbb4dfff GLEngine /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0xbc0c000 - 0xbc46fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0xbc4b000 - 0xbd06fff libGLProgrammability.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0xbd20000 - 0xbd83fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0xbdf2000 - 0xbfbefff com.apple.ATIRadeonX1000GLDriver 1.4.32 (4.3.2) /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRade onX1000GLDriver
    0xbff2000 - 0xbff3fff libGLSystem.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x112c8000 - 0x114c1fff net.telestream.wmv.import 2.1.0.33 /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x114f0000 - 0x1152ffff com.apple.QuickTimeFireWireDV.component 7.1.3 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x1153a000 - 0x11554fff com.apple.AppleIntermediateCodec 1.1 (141) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x11559000 - 0x115b5fff com.apple.applepixletvideo 1.2.9 (1.2d9) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x13046000 - 0x13071fff com.apple.audio.SoundManager.Components 3.9.2 /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0x8fc00000 - 0x8fc52fff dyld 45.3 /usr/lib/dyld
    0x8fe00000 - 0x8fe4cfff dyld 45.3 /usr/lib/dyld
    0x90000000 - 0x901bbfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90213000 - 0x90218fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021a000 - 0x9025cfff com.apple.CoreText 1.1.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90284000 - 0x90361fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9038a000 - 0x90730fff com.apple.CoreGraphics 1.258.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bf000 - 0x90895fff com.apple.CoreFoundation 6.4.6 (368.27) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908dc000 - 0x908dcfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908de000 - 0x909e4fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a35000 - 0x90ab8fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90ae1000 - 0x90b52fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bc5000 - 0x90bd0fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90bd5000 - 0x90c47fff com.apple.framework.IOKit 1.4.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c5d000 - 0x90c6ffff libauto.dylib /usr/lib/libauto.dylib
    0x90c75000 - 0x90f3dfff com.apple.CoreServices.CarbonCore 682.12 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f9a000 - 0x91013fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91055000 - 0x91094fff com.apple.CFNetwork 129.16 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x910a8000 - 0x910bbfff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x910c7000 - 0x9114dfff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91183000 - 0x911a3fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x911b0000 - 0x911bffff libz.1.dylib /usr/lib/libz.1.dylib
    0x911c2000 - 0x9138ffff com.apple.security 4.4.1 (27569) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9147f000 - 0x91488fff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9148f000 - 0x914b7fff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x914c9000 - 0x914d1fff libbsm.dylib /usr/lib/libbsm.dylib
    0x914d5000 - 0x91552fff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x91599000 - 0x91599fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9159b000 - 0x915cdfff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x915e3000 - 0x916bdfff com.apple.ColorSync 4.4.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x916fa000 - 0x91787fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x917c3000 - 0x91875fff com.apple.QD 3.10.20 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x918aa000 - 0x91900fff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91928000 - 0x91941fff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9194f000 - 0x9196cfff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91978000 - 0x919b4fff com.apple.LaunchServices 181 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x919cc000 - 0x919d9fff com.apple.speech.synthesis.framework 3.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919e1000 - 0x91a19fff com.apple.ImageIO.framework 1.4.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a2d000 - 0x91aeffff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b3a000 - 0x91b4ffff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b54000 - 0x91b72fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b77000 - 0x91bd5fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91be5000 - 0x91be9fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91beb000 - 0x91c3afff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91c3e000 - 0x91c7dfff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91c83000 - 0x91c9dfff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91ca2000 - 0x91ca4fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91ca6000 - 0x91ca6fff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91ca8000 - 0x91d8dfff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d95000 - 0x91db4fff 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
    0x91e20000 - 0x91e8efff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91e99000 - 0x91f2efff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91f48000 - 0x924d0fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92503000 - 0x9282efff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9285e000 - 0x928eafff com.apple.DesktopServices 1.3.4 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92927000 - 0x92b5dfff com.apple.Foundation 6.4.6 (567.27) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92c72000 - 0x92d60fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92d7f000 - 0x92e6efff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92e7f000 - 0x92e9efff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92ea9000 - 0x92efefff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92f14000 - 0x92f14fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92f16000 - 0x92f29fff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92f39000 - 0x92f43fff com.apple.speech.recognition.framework 3.5 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92f4b000 - 0x92f53fff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92f5a000 - 0x92fe4fff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92ff9000 - 0x92ffdfff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93001000 - 0x93022fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93035000 - 0x9303dfff com.apple.print.framework.Print 5.1 (192.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93044000 - 0x930abfff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x930d1000 - 0x93118fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93142000 - 0x93152fff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9315b000 - 0x93161fff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93167000 - 0x93486fff com.apple.HIToolbox 1.4.8 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x935bb000 - 0x935c7fff com.apple.opengl 1.4.10 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93633000 - 0x93633fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93635000 - 0x93c8dfff com.apple.AppKit 6.4.7 (824.41) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94015000 - 0x94088fff com.apple.CoreData 90 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x940c1000 - 0x9418cfff com.apple.audio.toolbox.AudioToolbox 1.4.3 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x941cd000 - 0x941cdfff com.apple.audio.units.AudioUnit 1.4.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x941cf000 - 0x94374fff com.apple.QuartzCore 1.4.8 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x943c5000 - 0x94405fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9440d000 - 0x9445efff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945e3000 - 0x945f3fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x945fa000 - 0x94606fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94655000 - 0x9466efff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94675000 - 0x94944fff com.apple.QuickTime 7.1.3 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94a07000 - 0x94a29fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x96866000 - 0x96885fff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96f96000 - 0x96fa3fff com.apple.agl 2.5.9 (AGL-2.5.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x98335000 - 0x98cecfff com.apple.QuickTimeComponents.component 7.1.3 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x98f13000 - 0x98f17fff com.apple.QuickTimeH264.component 7.1.3 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x98f19000 - 0x98ffdfff QuickTimeH264.altivec /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.altivec
    0x99149000 - 0x99210fff com.apple.QuickTimeMPEG4.component 7.1.3 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x99aa3000 - 0x99aa4fff com.apple.iokit.dvcomponentglue 1.9.0 /System/Library/Frameworks/DVComponentGlue.framework/Versions/A/DVComponentGlue
    0xb8000000 - 0xb827bfff LaunchCFMApp /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMApp
    Translated Code Information:
    Rosetta Version: 14.11
    Args: /Applications/Halo/Halo /Applications/Halo/Halo -psn04980737
    Exception: EXCBADACCESS (0x0001)
    Thread 0: (0xb009981c, 0xb80f80af)
    0x00000000: /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMApp : + 0x0
    0x90cd319c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _YieldToThread + 0x204
    0x90cdcee8: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _SetThreadState + 0xac
    0x90cdce10: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _SetThreadStateEndCritical + 0x88
    0x8554bac8: /Applications/Halo/Halo [CFM] : + 0x262ac8
    0x8554b6f8: /Applications/Halo/Halo [CFM] : + 0x2626f8
    0x8554b820: /Applications/Halo/Halo [CFM] : + 0x262820
    0x8554cc0c: /Applications/Halo/Halo [CFM] : + 0x263c0c
    0x8554d2e4: /Applications/Halo/Halo [CFM] : + 0x2642e4
    0x90cdcfb8: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _InvokeThreadEntryUPP + 0x18
    0x90cdcd38: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _CooperativeThread + 0x138
    0x9002bea8: /usr/lib/libSystem.B.dylib : _pthreadbody + 0x60
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x00000000 lr: 0x9000aadc ctr: 0x9000ab80
    r00: 0xffffffe1 r01: 0xf00809d0 r02: 0x00000013 r03: 0xf0080a7c
    r04: 0x00000003 r05: 0x00000018 r06: 0x00000020 r07: 0x0000630f
    r08: 0x00000000 r09: 0x00000000 r10: 0x00000000 r11: 0xa0006a3c
    r12: 0x9000ab80 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0x00000000 r22: 0x00000000 r23: 0x00000018
    r24: 0xf0080a7c r25: 0x00000020 r26: 0x0000630f r27: 0x00000000
    r28: 0x00000000 r29: 0x00000003 r30: 0x00000003 r31: 0x90cd2fa0
    Thread 1: (0xb023381c, 0xb80f80af)
    0x00000000: /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMApp : + 0x0
    0x90cd319c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _YieldToThread + 0x204
    0x8554c974: /Applications/Halo/Halo [CFM] : + 0x263974
    0x85543044: /Applications/Halo/Halo [CFM] : + 0x25a044
    0x85542930: /Applications/Halo/Halo [CFM] : + 0x259930
    0x85543e10: /Applications/Halo/Halo [CFM] : + 0x25ae10
    0x854c3430: /Applications/Halo/Halo [CFM] : + 0x1da430
    0x85542d00: /Applications/Halo/Halo [CFM] : + 0x259d00
    0x8554d2e4: /Applications/Halo/Halo [CFM] : + 0x2642e4
    0x90cdcfb8: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _InvokeThreadEntryUPP + 0x18
    0x90cdcd38: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _CooperativeThread + 0x138
    0x9002bea8: /usr/lib/libSystem.B.dylib : _pthreadbody + 0x60
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x00000000 lr: 0x9000aadc ctr: 0x9000ab80
    r00: 0xffffffe1 r01: 0xf0182920 r02: 0x00000013 r03: 0xf01829cc
    r04: 0x00000003 r05: 0x00000018 r06: 0x00000020 r07: 0x00008803
    r08: 0x00000000 r09: 0x00000000 r10: 0x00000000 r11: 0xa0006a3c
    r12: 0x9000ab80 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0x00000000 r22: 0x00000000 r23: 0x00000018
    r24: 0xf01829cc r25: 0x00000020 r26: 0x00008803 r27: 0x00000000
    r28: 0x00000000 r29: 0x00000003 r30: 0x00000003 r31: 0x90cd2fa0
    Thread 2: Crashed (0xb7fffa04, 0xb808703d)
    0x8553d10c: /Applications/Halo/Halo [CFM] : + 0x25410c
    0x8553d1d0: /Applications/Halo/Halo [CFM] : + 0x2541d0
    0x8553d190: /Applications/Halo/Halo [CFM] : + 0x254190
    0x854d32b8: /Applications/Halo/Halo [CFM] : + 0x1ea2b8
    0x854dec10: /Applications/Halo/Halo [CFM] : + 0x1f5c10
    0x854cc73c: /Applications/Halo/Halo [CFM] : + 0x1e373c
    0x854cd714: /Applications/Halo/Halo [CFM] : + 0x1e4714
    0x852f0a44: /Applications/Halo/Halo [CFM] : + 0x7a44
    0x85550748: /Applications/Halo/Halo [CFM] : + 0x267748
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x00000000 lr: 0x8553d10c ctr: 0x00000001
    r00: 0x8553d10c r01: 0xbffff030 r02: 0x00487000 r03: 0x00000000
    r04: 0x01a7ce00 r05: 0x00000000 r06: 0x00000000 r07: 0x00000000
    r08: 0x00000001 r09: 0xa0001fcc r10: 0x01a83800 r11: 0x24002042
    r12: 0x900060e0 r13: 0x004b98b0 r14: 0x0052d487 r15: 0x005d5654
    r16: 0x00000000 r17: 0x002e32e3 r18: 0x00000005 r19: 0x00000001
    r20: 0x0033fa20 r21: 0x0048a2cc r22: 0x0048abd4 r23: 0x00517efc
    r24: 0x00517f00 r25: 0x00506274 r26: 0x855a3958 r27: 0x00000001
    r28: 0x006aa38c r29: 0x006aa448 r30: 0x00000000 r31: 0x1274bed0
    Thread 3: (0xb02b481c, 0xb80f80af)
    0x00000000: /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMApp : + 0x0
    0x907e27e4: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation : _CFRunLoopRunSpecific + 0x678
    0x914e8cd8: /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio : __ZN10HALRunLoop9OwnThreadEPv + 0xd8
    0x914e8aa8: /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio : _ZN9CAPThread5EntryEPS + 0x6c
    0x9002bea8: /usr/lib/libSystem.B.dylib : _pthreadbody + 0x60
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x00000000 lr: 0x9000aadc ctr: 0x9000ab80
    r00: 0xffffffe1 r01: 0xf02037e0 r02: 0xa07c2184 r03: 0xf02038b0
    r04: 0x03000006 r05: 0x00000000 r06: 0x00000450 r07: 0x0000b303
    r08: 0x00000000 r09: 0x00000000 r10: 0x7fffffff r11: 0xa0006a3c
    r12: 0x9000ab80 r13: 0x00000000 r14: 0x00000000 r15: 0x907e2184
    r16: 0xa07c2184 r17: 0xa07c2184 r18: 0x20000024 r19: 0x00000000
    r20: 0xf02038b0 r21: 0x003dc4f8 r22: 0x0033cf08 r23: 0x00000000
    r24: 0xf02038b0 r25: 0x00000450 r26: 0x0000b303 r27: 0x00000000
    r28: 0x00000000 r29: 0x03000006 r30: 0x03000006 r31: 0x907e2184
    Thread 4: (0xb011a81c, 0xb80f80af)
    0x00000000: /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMApp : + 0x0
    0x90cd319c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _YieldToThread + 0x204
    0x8554c974: /Applications/Halo/Halo [CFM] : + 0x263974
    0x85543044: /Applications/Halo/Halo [CFM] : + 0x25a044
    0x85542944: /Applications/Halo/Halo [CFM] : + 0x259944
    0x85543e10: /Applications/Halo/Halo [CFM] : + 0x25ae10
    0x85371e2c: /Applications/Halo/Halo [CFM] : + 0x88e2c
    0x85542d00: /Applications/Halo/Halo [CFM] : + 0x259d00
    0x8554d2e4: /Applications/Halo/Halo [CFM] : + 0x2642e4
    0x90cdcfb8: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _InvokeThreadEntryUPP + 0x18
    0x90cdcd38: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _CooperativeThread + 0x138
    0x9002bea8: /usr/lib/libSystem.B.dylib : _pthreadbody + 0x60
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x00000000 lr: 0x9000aadc ctr: 0x9000ab80
    r00: 0xffffffe1 r01: 0xf0101a30 r02: 0x00000013 r03: 0xf0101adc
    r04: 0x00000003 r05: 0x00000018 r06: 0x00000020 r07: 0x00008503
    r08: 0x00000000 r09: 0x00000000 r10: 0x00000000 r11: 0xa0006a3c
    r12: 0x9000ab80 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0x00000000 r22: 0x00000000 r23: 0x00000018
    r24: 0xf0101adc r25: 0x00000020 r26: 0x00008503 r27: 0x00000000
    r28: 0x00000000 r29: 0x00000003 r30: 0x00000003 r31: 0x90cd2fa0
    Model: iMac4,1, BootROM IM41.0055.B03, 2 processors, Intel Core Duo, 1.83 GHz, 512 MB
    Graphics: ATI Radeon X1600, ATY,RadeonX1600, PCIe, 128 MB
    Memory Module: DIMM1/BANK 1, 512 MB, DDR2 SDRAM, 667 MHz
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x89), 103.2 (3.120.28.3)
    Bluetooth: Version 1.7.5f10, 2 service, 0 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Maxtor 6L160M0, 152.67 GB
    Parallel ATA Device: PIONEER DVD-RW DVR-K05, 781.27 MB
    USB Device: Built-in iSight, Micron, Up to 480 Mb/sec, 500 mA
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: Apple Optical USB Mouse, Mitsumi Electric, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    USB Device: Bluetooth HCI, Up to 12 Mb/sec, 500 mA
    USB Device: IR Receiver, Apple Computer, Inc., Up to 12 Mb/sec, 500 mA
      Mac OS X (10.4.7)  

    Hey, I downloaded the intel version. Everything went smoothly, except the new halo app doesn't recognize the game CD! I tried both CD's, the burn and the original, and it doesn't recognize either. Amazingly, though, the original halo app works now! (for now anyway, we'll see after i download the patches).
    I have no idea what I did (I deleted some Divx stuff, which was mentioned in a thread with a similar problem), but it works now! Thank you for helping me, you guys, and if I have this problem again, I'll know where to get help!

  • How can I re-install the OS with Deskstop Manager for Mac

    I just downloaded the Deskstop manager for Mac, tried to upgrade by BB software and it gave me the JVM Error 513. Luckily I backed up all info cause I know that means the whole thing is erased. How do I on a Mac re-install the software? When I connect it to the computer it does not recognize it?

    Hmm.. that is kind of weird. 
    I did a quick search and came up with this:
    http://www.blackberry.com/btsc/search.do?cmd=displayKC&docType=kc&externalId=KB13003&sliceId=SAL_Pub...
    You should be able to restore software onto your BlackBerry by disconnecting and then reconnecting it. BlackBerry Desktop Manager will have show "Connecting" at the bottom of the window, and then it should eventually recognize that software needs to be releases onto it. 

  • ColdFusion 8 Fails to start after update Java for Mac OSX 10.5 Update 4

    I have been using ColdFusion on a Mac for years. Now CF fails to start after I updated Java for Mac OS X 10.5 Update 4. I usually start by typing in the terminal window sudo /Applications/ColdFusion8/bin/ColdFusion start.
    There is a crash report but I don't know how to read it. See attached.
    Please help, I need this working for my job.
    Thanks...Colin

    Dear Craig,
    Macbook Pro 2.4GHz Intel Core 2 Duo 4 GB RAM
    I'm sure that this is 64-bit
    CF 8.0.1 Enterprise Build 3080
    I had moved the Java SE 6 to the top in both Plugin and Applications. The
    correct version is showing in the terminal window. See below.
    Last login: Thu Jun 18 11:27:09 on ttys001
    Beta-4:~ Colin$ java -version
    java version "1.6.0_13"
    Java(TM) SE Runtime Environment (build 1.6.0_13-b03-211)
    Java HotSpot(TM) 64-Bit Server VM (build 11.3-b02-83, mixed mode)
    Beta-4:~ Colin$
    CF will not start. I have the activity monitor open, and when I start CF you
    see it in the activity monitor for a few seconds as it starts up. When the
    message process is completed in the terminal window CF disappears in the
    activity monitor.
    Any suggestions?
    C
    Hi, Colin,
    My apologies but I forgot to ask 2 questions: (1) What kind of Mac you have
    (Intel or PowerPC)? (2) What version of CF are you running and what installer
    did you choose (8 or 8.0.1, 32-bit, 64-bit, etc.)?
    To start, try the following:
    1. Normally you'd shut CF down first ... but that's not necessary for you
    2. Open Java Preferences again
    3. Select Java SE 6 and move it (drag) to the top spot in both section (Applet
    Plugin and Applications)
    4. Open Terminal
    5. Type java -version (you should see 1.6.0_13 as the new version)
    6. Try to start CF again
    This may not work (I've had issues with it) but it's technically how it's
    supposed to work. With the Java Preferences utility, you're visually setting a
    default JVM (you can do it with commands in Terminal but this is much faster
    and easier).
    If CF still won't start, look for the jvm.config file in your CF application
    folder (try /Applications/ColdFusion8/bin or
    /Applications/ColdFusion8/runtime/bin -- the latter is where a jvm.config file
    is on my machine for a particular version of CF that's installed similar to
    yours). You can override the JVM in this file but, hopefully, that won't be
    necessary!
    Best,
    Craig

  • The Java for Mac OSX 10.5 Update 10 removed the Java plugin from Firefox 5.0. How do I re-install it?

    I've just installed Java for Mac OSX 10.5 Update 10 and can no longer run Java Applets from Firefox 5.0

    Dear Craig,
    Macbook Pro 2.4GHz Intel Core 2 Duo 4 GB RAM
    I'm sure that this is 64-bit
    CF 8.0.1 Enterprise Build 3080
    I had moved the Java SE 6 to the top in both Plugin and Applications. The
    correct version is showing in the terminal window. See below.
    Last login: Thu Jun 18 11:27:09 on ttys001
    Beta-4:~ Colin$ java -version
    java version "1.6.0_13"
    Java(TM) SE Runtime Environment (build 1.6.0_13-b03-211)
    Java HotSpot(TM) 64-Bit Server VM (build 11.3-b02-83, mixed mode)
    Beta-4:~ Colin$
    CF will not start. I have the activity monitor open, and when I start CF you
    see it in the activity monitor for a few seconds as it starts up. When the
    message process is completed in the terminal window CF disappears in the
    activity monitor.
    Any suggestions?
    C
    Hi, Colin,
    My apologies but I forgot to ask 2 questions: (1) What kind of Mac you have
    (Intel or PowerPC)? (2) What version of CF are you running and what installer
    did you choose (8 or 8.0.1, 32-bit, 64-bit, etc.)?
    To start, try the following:
    1. Normally you'd shut CF down first ... but that's not necessary for you
    2. Open Java Preferences again
    3. Select Java SE 6 and move it (drag) to the top spot in both section (Applet
    Plugin and Applications)
    4. Open Terminal
    5. Type java -version (you should see 1.6.0_13 as the new version)
    6. Try to start CF again
    This may not work (I've had issues with it) but it's technically how it's
    supposed to work. With the Java Preferences utility, you're visually setting a
    default JVM (you can do it with commands in Terminal but this is much faster
    and easier).
    If CF still won't start, look for the jvm.config file in your CF application
    folder (try /Applications/ColdFusion8/bin or
    /Applications/ColdFusion8/runtime/bin -- the latter is where a jvm.config file
    is on my machine for a particular version of CF that's installed similar to
    yours). You can override the JVM in this file but, hopefully, that won't be
    necessary!
    Best,
    Craig

  • Steps to take if BlackBerry is not shown as connected in Desktop Manager for Mac

    Hello Community,
    Here is a list of steps you should attempt to try and get your BlackBerry detected in Desktop Manager for Mac.
    1. Make sure you're using the most up to date BlackBerry Desktop Software for Mac.  Which is available to download at http://www.blackberry.com/desktop
    2. If using a MacBook/MacBook Pro make sure the BlackBerry is plugged in the left USB port close to the screen.  If using a iMac make sure you use the USB ports on the Mac and not a USB hub.
    3. Make sure you're using a BlackBerry branded USB cord.  (There are usb cords out there for charging only).
    4. Make sure mass storage mode is enabled on your BlackBerry smartphone. KB Article.
    5. Disable Media Transport Protocol on your BlackBerry smartphone. (Options>Memory)
    6. Make sure your Mac OS X 10.6 is running in 32-bit mode. KB Article.
    7. Make sure ALL other syncing software has been uninstalled and removed off your Mac.  KB Article.
    8. Perform a battery reset on your BlackBerry smartphone. KB Article.
    9. Make sure your BlackBerry smartphone is not hour-glassing or have an application error appearing on the LCD screen. However if there is a JVM 507/513 error appearing on the BlackBerry the Desktop Manager for Mac will pick up the device and reload the software.
    10. Make sure "Open using Rosetta" is not running/disabled on Mac OS X. KB Article.
    I will be adding more tips and tricks to this post once I come across them.
    Feel free to share with other community members and I always welcome suggestions and comments. 
    -ViciousFerret
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Like! for those who have helped you.
    Click  Accept as Solution for posts that have solved your issue(s)!

    Hey burko74,
    Do you have a media card in your BlackBerry? If so, do you get prompt for mass storage mode?
    Also does the mac pick up the media card as a removable hard drive?
    Have you tried to do a battery reset as well?
    I look forward to your reply.
    -ViciousFerret
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Like! for those who have helped you.
    Click  Accept as Solution for posts that have solved your issue(s)!

  • Problem Report for Mac OS X Kernel

    Twice within half an hour I had a message I've never seen before telling me to shut down my MacBook by pressing the power key down for a few seconds.  The message took up the whole screen, I couldn't escape from it and when I did as it said, my computer had the "Problem Report for Mac OS X Kernel" report ready to send to Apple.  But when I hit "send to Apple", I get the message "Your report could not be submitted.  Please try again later."   I've tried about 5 times to submit it but it won't go through.  Does this mean I have a virus? 
    In case this helps, here is the problem detail that I can't send to Apple.
    Interval Since Last Panic Report:  164 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    AB7441C1-FF8F-4875-AE44-5667520924CF
    Sun Mar 18 11:23:52 2012
    panic(cpu 1 caller 0x001AB0FE): Kernel trap at 0x010e341c, type 14=page fault, registers:
    CR0: 0x80010033, CR2: 0x00000008, CR3: 0x0194e000, CR4: 0x00000660
    EAX: 0x20228000, EBX: 0x000c63d1, ECX: 0x08961a00, EDX: 0x00000000
    CR2: 0x00000008, EBP: 0x301a3b78, ESI: 0x2047d000, EDI: 0x2047d000
    EFL: 0x00010206, EIP: 0x010e341c, CS:  0x00000008, DS:  0x25d80010
    Error code: 0x00000002
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x301a3988 : 0x12b4c6 (0x45f91c 0x301a39bc 0x13355c 0x0)
    0x301a39d8 : 0x1ab0fe (0x469a98 0x10e341c 0xe 0x469248)
    0x301a3ab8 : 0x1a1713 (0x301a3ad0 0x2047d000 0x301a3b78 0x10e341c)
    0x301a3ac8 : 0x10e341c (0xe 0x1000048 0x10 0x24ed0010)
    0x301a3b78 : 0x10e55b6 (0x2047d000 0x8961a00 0x59a 0x2044f090)
    0x301a3c88 : 0x43faec (0x2047d000 0x1 0x301a3cdc 0x301a3cd8)
    0x301a3cf8 : 0x444345 (0x2047d000 0x1 0x42c6d04 0x1)
    0x301a3d28 : 0x44445c (0x2047d000 0x1 0x42c6d04 0x301a3d58)
    0x301a3d68 : 0x18ac09 (0x2047d000 0x1 0x42c6d04 0x5d043b8)
    0x301a3db8 : 0x12d4d6 (0x5d04384 0x4f25d98 0x301a3df8 0x11f1c6)
    0x301a3df8 : 0x1264fa (0x5d04300 0x4276254 0x1fac174 0x0)
    0x301a3f08 : 0x198fa3 (0x301a3f44 0x0 0x0 0x0)
    0x301a3fc8 : 0x1a1cfa (0x5d010e0 0x0 0x1a40b5 0x5d010e0)
    No mapping exists for frame pointer
    Backtrace terminated-invalid frame pointer 0xbfffd058
          Kernel loadable modules in backtrace (with dependencies):
             com.apple.GeForce(5.4.8)@0x10c9000->0x1160fff
                dependency: com.apple.NVDAResman(5.4.8)@0xc0d000
                dependency: com.apple.iokit.IONDRVSupport(1.7.3)@0xbff000
                dependency: com.apple.iokit.IOPCIFamily(2.6)@0x6fa000
                dependency: com.apple.iokit.IOGraphicsFamily(1.7.3)@0x7f8000
    BSD process name corresponding to current thread: Skype
    Mac OS version:
    9L31a
    Kernel version:
    Darwin Kernel Version 9.8.0: Wed Jul 15 16:55:01 PDT 2009; root:xnu-1228.15.4~1/RELEASE_I386
    System model name: MacBook5,2 (Mac-F22788AA)
    System uptime in nanoseconds: 1595040333581
    unloaded kexts:
    com.apple.driver.InternalModemSupport    2.4.0 - last unloaded 335995043855
    loaded kexts:
    com.apple.nke.pppoe    1.5 - last loaded 118994245267
    com.apple.nke.ppp    1.5
    com.apple.driver.AppleHWSensor    1.9d0
    com.apple.driver.IOBluetoothSCOAudioDriver    2.1.9f10
    com.apple.driver.IOBluetoothA2DPAudioDriver    2.1.9f10
    com.apple.driver.InternalModemSupport    2.4.0
    com.apple.iokit.IOBluetoothSerialManager    2.1.9f10
    com.apple.filesystems.autofs    2.0.2
    com.apple.driver.AppleHDAPlatformDriver    1.7.1a2
    com.apple.driver.AppleUpstreamUserClient    2.7.5
    com.apple.driver.AppleHDAHardwareConfigDriver    1.7.1a2
    com.apple.driver.AppleHDA    1.7.1a2
    com.apple.driver.AGPM    100.8.7
    com.apple.Dont_Steal_Mac_OS_X    6.0.3
    com.apple.driver.AppleHDAController    1.7.1a2
    com.apple.driver.ACPI_SMC_PlatformPlugin    3.4.0a17
    com.apple.driver.NVSMU    1.1.7
    com.apple.driver.AppleSMBusPCI    1.0.1d1
    com.apple.driver.AppleLPC    1.3.1
    com.apple.nvidia.nv50hal    5.4.8
    com.apple.iokit.IOFireWireIP    1.7.7
    com.apple.driver.AppleIRController    113
    com.apple.driver.AudioIPCDriver    1.0.6
    com.apple.GeForce    5.4.8
    com.apple.driver.AppleGraphicsControl    2.8.15
    com.apple.driver.AppleBacklight    1.6.0
    com.apple.driver.AppleTyMCEDriver    1.0.0d28
    com.apple.driver.SMCMotionSensor    2.1.1d2
    com.apple.driver.AppleUSBMergeNub    3.5.2
    com.apple.driver.AppleUSBTrackpad    1.7.4f1
    com.apple.driver.AppleUSBTCKeyEventDriver    1.7.4f1
    com.apple.driver.AppleUSBTCKeyboard    1.7.4f1
    com.apple.driver.BroadcomUSBBluetoothHCIController    2.1.9f10
    com.apple.driver.USBCameraFirmwareLoader    1.0.9
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    2.1.1
    com.apple.iokit.SCSITaskUserClient    2.1.1
    com.apple.driver.XsanFilter    2.7.91
    com.apple.iokit.IOAHCISerialATAPI    1.1.2
    com.apple.iokit.IOAHCIBlockStorage    1.2.3
    com.apple.driver.AirPortBrcm43xx    367.91.22
    com.apple.driver.AppleUSBHub    3.4.9
    com.apple.iokit.IOUSBUserClient    3.5.2
    com.apple.driver.AppleAHCIPort    1.7.0
    com.apple.driver.AppleUSBEHCI    3.4.6
    com.apple.driver.AppleFWOHCI    3.9.7
    com.apple.driver.AppleFileSystemDriver    1.1.0
    com.apple.driver.AppleEFINVRAM    1.2.0
    com.apple.driver.AppleUSBOHCI    3.4.6
    com.apple.nvenet    1.0.54
    com.apple.driver.AppleSmartBatteryManager    158.10.5
    com.apple.driver.AppleRTC    1.2.3
    com.apple.driver.AppleHPET    1.4
    com.apple.driver.AppleACPIPCI    1.2.5
    com.apple.driver.AppleACPIButtons    1.2.5
    com.apple.driver.AppleSMBIOS    1.4
    com.apple.driver.AppleACPIEC    1.2.5
    com.apple.driver.AppleAPIC    1.4
    com.apple.security.seatbelt    107.12
    com.apple.nke.applicationfirewall    1.8.77
    com.apple.security.TMSafetyNet    3
    com.apple.driver.AppleIntelCPUPowerManagement    76.2.0
    com.apple.driver.DiskImages    199
    com.apple.BootCache    30.4
    com.apple.iokit.IOSerialFamily    9.4
    com.apple.driver.DspFuncLib    1.7.1a2
    com.apple.iokit.IOHDAFamily    1.7.1a2
    com.apple.driver.IOPlatformPluginFamily    3.4.0a17
    com.apple.iokit.IOAudioFamily    1.6.9fc5
    com.apple.kext.OSvKernDSPLib    1.1
    com.apple.NVDAResman    5.4.8
    com.apple.iokit.IONDRVSupport    1.7.3
    com.apple.iokit.IOGraphicsFamily    1.7.3
    com.apple.driver.AppleSMC    2.3.1d1
    com.apple.driver.AppleUSBBluetoothHCIController    2.1.9f10
    com.apple.iokit.IOBluetoothFamily    2.1.9f10
    com.apple.iokit.IOUSBHIDDriver    3.4.6
    com.apple.driver.AppleUSBComposite    3.2.0
    com.apple.iokit.IOSCSIBlockCommandsDevice    2.1.1
    com.apple.iokit.IOBDStorageFamily    1.5
    com.apple.iokit.IODVDStorageFamily    1.5
    com.apple.iokit.IOCDStorageFamily    1.5
    com.apple.iokit.IOSCSIArchitectureModelFamily    2.1.1
    com.apple.iokit.IO80211Family    216.1
    com.apple.iokit.IOAHCIFamily    1.5.0
    com.apple.iokit.IOFireWireFamily    3.4.9
    com.apple.iokit.IOUSBFamily    3.5.2
    com.apple.iokit.IONetworkingFamily    1.6.1
    com.apple.driver.AppleEFIRuntime    1.2.0
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.iokit.IOStorageFamily    1.5.6
    com.apple.iokit.IOHIDFamily    1.5.5
    com.apple.driver.AppleACPIPlatform    1.2.5
    com.apple.iokit.IOPCIFamily    2.6
    com.apple.iokit.IOACPIFamily    1.2.0

    Welcome to Apple Discussions.
    It is unlikely you have a virus. From other threads, it seems that Apple is no longer accepting crash reports for OS X Leopard 10.5.
    Here's some guidance on troubleshooting Kernel Panics:
    http://support.apple.com/kb/TS3742

  • Build native bundle for mac (.app/.dmg) has no file right to access files....

    Hi,
    today I build my first native bundle (.dmg) for Mac.
    Everything works very well except that my running app has no access to local files. The files are shown but the app does not have the right to read.
    The windows version has no problem to access local files.
    Any ideas what i have to add for Mac.
    Thanks
    Michael
    Buildscript:
    <project name="JavaFXSample" default="build and deploy" basedir="."
             xmlns:fx="javafx:com.sun.javafx.tools.ant">
        <target name="build and deploy">
            <property name="applet.width" value="500"/>
            <property name="applet.height" value="500"/>
            <property name="application.title" value="ZP_Prototype2"/>
            <property name="application.vendor" value="TestVendor"/>
            <property name="build.classes.dir" value="/Users/mb_ta_michi/NetBeansProjects/ZP_Prototype2/build/classes/"/>
            <property name="basedir" value="/Users/mb_ta_michi/NetBeansProjects/ZP_Prototype2/"/>
            <property name="dist.dir" value="/Users/mb_ta_michi/NetBeansProjects/ZP_Prototype2_BUNDLE/"/>
            <property name="javafx.lib.ant-javafx.jar" value="/Library/Java/JavaVirtualMachines/jdk1.7.0_25.jdk/Contents/Home/lib/ant-javafx.jar"/>
            <taskdef resource="com/sun/javafx/tools/ant/antlib.xml"     
                    uri="javafx:com.sun.javafx.tools.ant"
                    classpath="${javafx.lib.ant-javafx.jar}"/>
            <fx:application id="zpAppID"
                    name="ZP_Prototype2"
                    mainClass="zp_prototype2.ZP_Prototype2"
                    />
            <fx:resources id="appRes">
                <fx:fileset dir="./../misc/libs2add" includes="*.jar"/>
                <fx:fileset dir="${dist.dir}" includes="*.jar"/>
            </fx:resources>
            <fx:jar destfile="${dist.dir}/ZP_Prototype2.jar">
                    <fx:application refid="zpAppID"/>
                    <fx:resources refid="appRes"/>
                    <manifest>
                        <attribute name="Implementation-Vendor"
                                value="${application.vendor}"/>
                        <attribute name="Implementation-Title"
                                value="${application.title}"/>
                        <attribute name="Implementation-Version" value="1.0"/>
                    </manifest>
                    <fileset dir="${build.classes.dir}"/>
            </fx:jar>
            <fx:deploy width="${applet.width}" height="${applet.height}"
                    outdir="${dist.dir}"
                    embedJNLP="false"
                    outfile="${application.title}"
                    nativeBundles="all"
                    >
                <fx:application refId="zpAppID"/>
                <fx:resources refid="appRes"/>           
                <fx:info title="${application.title}"
                        vendor="${application.vendor}"/>
                 <!-- Custom JVM setup for application -->
                <fx:platform>
                    <fx:jvmarg value="-Xmx512m"/>
                    <fx:jvmarg value="-Xms512m"/>
                    <property name="my.property" value="something"/>
                </fx:platform>
            </fx:deploy>
        </target>
    </project>

    Exact same problem here, and no workaround.
    Windows Phone 8.1; WindowsPhone.app 3.1.1, iTunes 11.2.2, OSX 10.8.5
    The following solution doesn't work on my Mac:
    http://forums.wpcentral.com/mac-os-x/223845-window​s-phone-app-not-syncing-itunes.html

  • There is a version of Developer Studio 7.31 for Mac OSX ??

    Hello i need a distribution of Developer Studio for mac ... can it possible to find?

    Hi Julian,
    this is also described on the corresponding update site, e.g.
    https://nwds.sap.com/swdc/downloads/updates/netweaver/nwds/nw/731/doc/prerequisites.html
    To make things easier I copy paste here the current state:
    Hardware (minimal requirements)
    3 GB free disk space
    2 GB RAM
    Software
    Operating system
    Supported operating systems are:
    Windows XP 32-bit
    Windows Vista 32-bit
    Windows Server 2008 64-bit
    Windows 7 32-bit
    Windows 7 64-bit
    For more information, see the product availability matrix (PAM) at:
    http://service.sap.com/pam
    JDK version
    Supported Java Development Kit (JDK) are from SAP AG or Oracle. Note that the JDK you use must be the 32-bit version. You can either use:
    JDK provided with the SAP JVM 6 "Windows Server on IA32 32-bit".
    You can start the installation process from here.
    JDK from Oracle.
    You need JDK version 1.6.0_7 or higher, 32-bit. You can download a JDK from http://java.sun.com/javase/downloads.
    Thank you for your understanding!
    Best regards,
    Ervin

  • Opening animated gif in PSE 8 for Mac

    I am switching from PSE for PC to PSE 8 for Mac.
    I have always been able to open animated gif as layers and work with them, then resave as an updated animated gif.
    WIth PSE 8 for Mac, I get a pop up that the file is animated and can only see the top frame. Any ideas on how to open up all of the frames in layers?

    Do I need to enable this process for my Mac? Maybe I'm missing a plug-in or update?
    I have been opening these files from others, tweeking and resaving for almost 2 years in PSE. It definitely will not shuffle the individual panels on an animated gif into the layers box.
    My tweeking usually involves adjusting frame speed. Is that what you mean by 'frame rate'?
    Thank you for your help.

  • How do i add multiple lines in a cell (like a list) in Excel for MAC?

    I'm trying to add multiple lines (in the form of a list) in a individual cell in Excel for MAC.  I used ALT Enter on my PC but that doesn't work on the iMac.  Does anyone know how to do this?
    Thanks!

    It's been a while but I think you hold SHIFT while typing a page break (RETURN) to make a new line without shifting to another cell.
    However, as Excel isn't an Apple product, I am sure you will get a faster and more current answer by using Microsoft's Office:Mac forums here:
    Office for Mac forums
    They are very good.

  • SAV for Mac 9.2.7 released!

    Hey everyone,
    We released SAV for Mac 9.2.7 to all home users late last week. 
    This release at a glance:
    Compatible with OSX 10.6 - 10.10
    Stability and performance improvements
    Updated threat engine and threat data (release notes for threat detection engine)
    Provides an updated version of OpenSSL
    Fixed SophosUIServer.app crashes
    Fixed streaming issues from francetv.fr website
    How to get the update? 
    If you're already running SAV, you should have automatically recieved the update courtesy of Sophos AutoUpdate
    You can also manually trigger an update by clicking the Sophos sheild tray icon and clicking Update Now
    Download a copy from our website
    What about OSX 10.11 "El Capitian"?
    In the last few weeks I've seen some folks asking about 10.11, which is currently available as a pre-release. At the moment, SAV 9.2.7 *should* work if SAV is already installed before you upgrade, but the install will fail if you attempt to install a fresh copy post-upgrade. That said, we'll be releasing another update for SAV prior to the official release of 10.11 "El Capitain"  which will ensure full compatibility, so at the moment we recommend upgrading with caution.
    Questions? Feedback on SAV 9.2.7?
    Post it here and we'll get back to you ASAP! 
     

    in case you didn't see it
    https://supportforums.cisco.com/thread/2252436?tstart=0
    That should help you out.

  • I can no longer read any material in nook for mac. I have a macbook pro running lion. I used to be able to but something changed and i can no longer read it. any help?

    I have nook for mac loaded on my macbook pro. When I try to open a book or magazine nothing happens. I`ve downloaded the nook program twice thinking it was a bad download but to no avail. Any help?

    I found the following suggested fix, posted by a user on Barnes & Noble's site:
    1. Create a folder in your Applications folder, call it: NOOKforMac
    Once you've done this, copy the Nook app to this folder. This should allow the app to run on the 1st or possibly second attempt to launch it.
    2. Once you're done using the app always quit it by clicking on the X (red in some cases) button of the application window (upper left hand corner)
    This seems to have resolved the issue and my guess is that somehow the .dmg volume path is somewhere hard coded in the app configuration.
    Elsewhere in that thread, the administrator advises calling Customer Service Team at 1-800-THE-BOOK (1-800-843-2665) and choose option 2 for Digital Support. 
    Good luck.

Maybe you are looking for

  • Paid apps do not show up on my iphone 3 after restore

    after i restored my iphone 3g the paid apps don't show up on the screen however, itunes and the app store say that they are downloaded also, in the iphone setting it shows settings for beejive and facebook they just seem to not show up, as if minimiz

  • Debatching in Orchestration

    How can we perform debatching in orchestration ?? Please Give me any solution. Prakash

  • Memory allocation profiling - where is it going?

    I am profiling a Swing application that seems to be using more memory than expected - Windows task manager (which I don't necessarily trust) reports that the Java process hogs 400MB+ of memory. However, profiling with JProfiler indicates that heap us

  • DNG VS ACR updated

    my nikon D300s NEF file won't open in ACR, will i ned to to donwload both DNG and ACR 5.6 to open the files, or will just updating the ACR work?

  • Border radius not working in my web using firefox 18.0.2 using -moz or without

    I'm using the code below for the menu of my web and it works perfect in Safari 5 and in my html editor Coda but the rounded corners are missing in Firefox 18.0.2 on my iMac, did tried several changes without success ¿can you help me please? The code: