My ToggleButton doesn't work anymore! (code)

I've extended JToggleButton to toggle the visibility of a JFrame. Click it once, the button is selected and the frame is visible. Click it again, the button is deselected and the frame is hidden.
At least that's how it used to work! I recently lost a hard drive and restored all my projects to a fresh RedHat 8.0 install with Gnome and j2sdk-1.4.1_02-fcs. Previously I was running Mandrake 8.1 with Ximian Gnome and j2sdk-1.4.0-rc. Now when I activate the toggle button, the window appears; but when I click it again, it remains activated and the window is not hidden. Both windows flicker though.
I have run into weird problems with various window managers in the past, like not respecting the modality of a dialog. Having just upgraded my whole environment, though, I don't if it's a quirk of the WM, a bug in the SDK, or what.
Could somebody test this code and tell me if it works?
import javax.swing.*;
import javax.swing.event.*;
import java.awt.*;
import java.awt.event.*;
public class ToggleTest {
public static void main(String[] args) {
     JFrame toggleFrame = new JFrame("Toggle Test");
     JFrame buttonFrame = new JFrame("Toggle Test");
     JPanel panel = new JPanel();
     panel.setBorder(new javax.swing.border.EmptyBorder(20, 20, 20, 20));
     JLabel label = new JLabel("This is only a test.");
     panel.add(label);
     toggleFrame.setContentPane(panel);
     toggleFrame.pack();
     toggleFrame.setResizable(false);
     panel = new JPanel();
     panel.setBorder(new javax.swing.border.EmptyBorder(30, 30, 30, 30));
     panel.add(new PanelButton(toggleFrame, "Click Me!"));
     buttonFrame.setContentPane(panel);
     buttonFrame.pack();
     buttonFrame.setResizable(false);
     buttonFrame.setVisible(true);
private static class PanelButton extends JToggleButton {
     private final JFrame frame;
     public PanelButton(JFrame f, String label) {
          super(label);
          frame = f;
          /* initial button state */
          setSelected(frame.isVisible());
          /* when frame closes, deselect button */
          frame.addWindowListener(new WindowAdapter() {
               public void windowClosing(WindowEvent e) {
                    setSelected(false);     
          /* when button is toggled, show/hide window */
          addChangeListener(new ChangeListener() {
               public void stateChanged(ChangeEvent e) {
                    frame.setVisible(isSelected());
} /* end inner class PanelButton */
}

I changed the button's ChangeListener to an ActionListener and it works.
Now I'm not sure if it ever worked. I'm pretty sure it did, but I went through my incremental backups and it's always been a ChangeListener.

Similar Messages

  • I cannot locate my cs6 redemption code and I just purchased a new computer because my old one doesn't work anymore. How can I get my photoshop on this computer? All my other products are registerd with a serial number

    I cannot locate my cs6 redemption code and I just purchased a new computer because my old one doesn't work anymore. How can I get my photoshop on this computer? All my other products are registerd with a serial number

    The activation servers for CS and CS2 stopped working and were taken down. You'll need to take a look at this link for your issue: https://helpx.adobe.com/x-productkb/policy-pricing/creative-suite-2-activation-end-life.ht ml
    Benjamin

  • Merge 2 code and script doesn't work anymore

    I have 2 AS2 codes (I think). One is a carousel gallery script that lets pictures flying in a circle. And the second code is the one that let words fly, downloaden from http://www.levitated.net/daily/levTextSpace.html.
    The scripts work seperatly, but once i merge the codes together the levTextSpace doesn't work anymore. And I can't find where the problem is. Fla file is included.
    Carousel gallery:
    picData = new XML();
    picData.ignoreWhite = true;
    picData.onLoad = loadXML;
    picData.load("md_photos.xml");
    function loadXML() {
         _root.createEmptyMovieClip("thumbnails", 1);
         images = new Array();
         for (i=0; picData.firstChild.childNodes[i].firstChild.nodeValue != undefined; i++) {
              images.push(picData.firstChild.childNodes[i].firstChild.nodeValue);
         thumbnails._x = 750;
         thumbnails._y = 75;
         imageLoading = true;
         numObjects = images.length;
         objectsInScene = new Array();
         focalLength = 750;
         spin = 0;
         _root.thumbnailSize = 350/((numObjects)/9);
         displayPane = function () {
              var angle = this.angle+spin;
              var x = Math.cos(angle)*this.radius;
              var z = Math.sin(angle)*this.radius;
              var y = this.y;
              var scaleRatio = focalLength/(focalLength+z);
              this._x = x*scaleRatio;
              this._y = y*scaleRatio;
              this._xscale = -(this._yscale=100*scaleRatio);
              this._xscale *= Math.sin(angle);
              this.swapDepths(Math.round(-z));
         angleStep = 2*Math.PI/numObjects;
         for (i=0; i<numObjects; i++) {
              thumbnail = thumbnails.createEmptyMovieClip("thumbnail_"+i, i);
              myPic = thumbnail.createEmptyMovieClip("picHolder", 1);
              myPic.loadMovie(images[i]);
              thumbnail.angle = angleStep*i;
              thumbnail.radius = 650;
              thumbnail.x = Math.cos(thumbnail.angle)*thumbnail.radius;
              thumbnail.z = Math.sin(thumbnail.angle)*thumbnail.radius;
              thumbnail.y = 0;
              thumbnail.display = displayPane;
              thumbnail.drawBox(_root.thumbnailSize);
              thumbnail.buttonize(i);
              thumbnail.notLoaded = true;
              objectsInScene.push(thumbnail);
         panCamera = function () {
              spin -= 0.001;
              for (var i = 0; i<objectsInScene.length; i++) {
                   objectsInScene[i].display();
         thumbnails.onEnterFrame = panCamera;
         _root.onEnterFrame = function() {
              for (i=0; i<images.length; i++) {
                   if ((_root.thumbnails["thumbnail_"+i].picHolder.getBytesLoaded()/_root.thumbnails["thumbnail_"+i].picHolder.getBytesTotal() == 1) && _root.thumbnails["thumbnail_"+i].notLoaded) {
                        if (_root.thumbnails["thumbnail_"+i].picHolder._width>=_root.thumbnails["thumbnail_"+i].picHolder._height) {
                             _root.thumbnails["thumbnail_"+i].picHolder._yscale = _root.thumbnails["thumbnail_"+i].picHolder._xscale=(100*(1-(_root.thumbnails["thumbnail_"+i].picHolder._width-_root.thumbnailSize)/(_root.thumbnails["thumbnail_"+i].picHolder._width)));
                             _root.thumbnails["thumbnail_"+i].picHolder._y = (_root.thumbnailSize-_root.thumbnails["thumbnail_"+i].picHolder._height)/2;
                        if (_root.thumbnails["thumbnail_"+i].picHolder._width<=_root.thumbnails["thumbnail_"+i].picHolder._height) {
                             _root.thumbnails["thumbnail_"+i].picHolder._yscale = _root.thumbnails["thumbnail_"+i].picHolder._xscale=(100*(1-(_root.thumbnails["thumbnail_"+i].picHolder._height-_root.thumbnailSize)/(_root.thumbnails["thumbnail_"+i].picHolder._height)));
                             _root.thumbnails["thumbnail_"+i].picHolder._x = (_root.thumbnailSize-_root.thumbnails["thumbnail_"+i].picHolder._width)/2;
                        if (_root.thumbnails["thumbnail_"+i].picHolder._width == _root.thumbnails["thumbnail_"+i].picHolder._height) {
                             _root.thumbnails["thumbnail_"+i].picHolder._yscale = _root.thumbnails["thumbnail_"+i].picHolder._xscale=(100*(1-(_root.thumbnails["thumbnail_"+i].picHolder._width-_root.thumbnailSize)/(_root.thumbnails["thumbnail_"+i].picHolder._width)));
                             _root.thumbnails["thumbnail_"+i].picHolder._x = _root.thumbnails["thumbnail_"+i].picHolder._y=0;
                        _root.thumbnails["thumbnail_"+i].picHolder._alpha = 80;
                        _root.thumbnails["thumbnail_"+i].notLoaded = false;
                   if ((_root.thumbnails["thumbnail_"+i].picHolder.getBytesLoaded()/_root.thumbnails["thumbnail_"+i].picHolder.getBytesTotal()<1)) {
    levTextSpace:
    // register root as environment
    Object.environment = _root;
    // create camera object
    this.cam = {x:0, y:0, z:500, dx:0, dy:0, dz:-500};
    // set environmental constants
    this.fl = 1000;
    // create 'space' to which all words will be attached
    this.createEmptyMovieClip("space", 2);
    // center 'space' on the stage
    space._x = 800;
    space._y = 900;
    // a string of words related to the wind
    this.keywords = "no-nonsense  full-service partner  co-creation  innovation  keep it simple  technical expertise  integral design method  successful products  teamwork  designers engineers  design for (dis)assembly  sustainability  ecological  smart  ideation  feasability study  ergonomic analysis  imagineering  trade off matrix  prototyping  consultancy  technology  problemsolvers  open-minded  multi-disciplinary  imagination  creative minds  passionated  user centered  strategy  added value";
    // convert the string of words into an array of words
    this.wordList = new Array();
    this.wordList = this.keywords.split("  ");
    // create one instance for each word in the list
    for (n=0; n<this.wordList.length; n++) {
        // pick a word from the list
        var word = Object.environment.wordList[n];
        var x = random(600)-(300);
        var y = random(400)-(200);
        var z = random(Object.environment.fl*2)-Object.environment.fl;
        // create an instance of the keyWord object
        nombre = "word"+String(depth++);
        initialization = {txtword: word, x: x, y: y, z: z};
        space.attachMovie("keyWord", nombre, depth, initialization);
        trace(nombre);
    this.onEnterFrame = function() {
        this.cam.dz += 5;
        // move the camera to its destination
        this.cam.x += (this.cam.dx-this.cam.x)/10;
        this.cam.y += (this.cam.dy-this.cam.y)/10;
        this.cam.z += (this.cam.dz-this.cam.z)/30;

    change the highlighted text
    picData = new XML();
    picData.ignoreWhite = true;
    picData.onLoad = loadXML;
    picData.load("md_photos.xml");
    function loadXML() {
         _root.createEmptyMovieClip("thumbnails", 1);
         images = new Array();
         for (i=0; picData.firstChild.childNodes[i].firstChild.nodeValue != undefined; i++) {
              images.push(picData .firstChild.childNodes[i].firstChild.nodeValue);
         thumbnails._x = 750;
         thumbnails._y = 75;
         imageLoading = true;
         numObjects = images.length;
         objectsInScene = new Array();
         focalLength = 750;
         spin = 0;
         _root.thumbnailSize = 350/((numObjects)/9);
         displayPane = function () {
              var angle = this.angle+spin;
              var x = Math.cos(angle)*this.radius;
              var z = Math.sin(angle)*this.radius;
              var y = this.y;
              var scaleRatio = focalLength/(focalLength+z);
              this._x = x*scaleRatio;
              this._y = y*scaleRatio;
              this._xscale = -(this._yscale=100*scaleRatio);
              this._xscale *= Math.sin(angle);
              this.swapDepths(Mat h.round(-z));
         angleStep = 2*Math.PI/numObjects;
         for (i=0; i<numObjects; i++) {
              thumbnail = thumbnails.createEmptyMovieClip("thumbnail_"+i, i);
              myPic = thumbnail.createEmptyMovieClip("picHolder", 1);
              myPic.loadMovie(ima ges[i]);
              thumbnail.angle = angleStep*i;
              thumbnail.radius = 650;
              thumbnail.x = Math.cos(thumbnail.angle)*thumbnail.radius;
              thumbnail.z = Math.sin(thumbnail.angle)*thumbnail.radius;
              thumbnail.y = 0;
              thumbnail.display = displayPane;
              thumbnail.drawBox(_ root.thumbnailSize);
              thumbnail.buttonize (i);
              thumbnail.notLoaded = true;
              objectsInScene.push (thumbnail);
         panCamera = function () {
              spin -= 0.001;
              for (var i = 0; i<objectsInScene.length; i++) {
                 & nbsp; objectsInScene[i].display();
         thumbnails.onEnterFrame = panCamera;
         _root.onEnterFrame = function() {
              for (i=0; i<images.length; i++) {
                 & nbsp; if ((_root.thumbnails["thumbnail_"+i].picHolder.getBytesLoaded()/_root.thumbnails["thumbnail_"+i].picHolder.getBytesTotal() == 1) && _root.thumbnails["thumbnail_"+i].notLoaded) {
                 & nbsp;      if (_root.thumbnails["thumbnail_"+i].picHolder._width>=_root.thumbnails["thumbnail_"+i].picHolder._height) {
                 & nbsp;           _root.thu mbnails["thumbnail_"+i].picHolder._yscale = _root.thumbnails["thumbnail_"+i].picHolder._xscale=(100*(1-(_root.thumbnails["thumbnail_"+i].picHolder._width-_root.thumbnailSize)/(_root.thumbnails["thumbnail_"+i].picHolder._width)));
                 & nbsp;           _root.thu mbnails["thumbnail_"+i].picHolder._y = (_root.thumbnailSize-_root.thumbnails["thumbnail_"+i].picHolder._height)/2;
                 & nbsp;      }
                 & nbsp;      if (_root.thumbnails["thumbnail_"+i].picHolder._width<=_root.thumbnails["thumbnail_"+i].picHolder._height) {
                 & nbsp;           _root.thu mbnails["thumbnail_"+i].picHolder._yscale = _root.thumbnails["thumbnail_"+i].picHolder._xscale=(100*(1-(_root.thumbnails["thumbnail_"+i].picHolder._height-_root.thumbnailSize)/(_root.thumbnails["thumbnail_"+i].picHolder._height)));
                 & nbsp;           _root.thu mbnails["thumbnail_"+i].picHolder._x = (_root.thumbnailSize-_root.thumbnails["thumbnail_"+i].picHolder._width)/2;
                 & nbsp;      }
                 & nbsp;      if (_root.thumbnails["thumbnail_"+i].picHolder._width == _root.thumbnails["thumbnail_"+i].picHolder._height) {
                 & nbsp;           _root.thu mbnails["thumbnail_"+i].picHolder._yscale = _root.thumbnails["thumbnail_"+i].picHolder._xscale=(100*(1-(_root.thumbnails["thumbnail_"+i].picHolder._width-_root.thumbnailSize)/(_root.thumbnails["thumbnail_"+i].picHolder._width)));
                 & nbsp;           _root.thu mbnails["thumbnail_"+i].picHolder._x = _root.thumbnails["thumbnail_"+i].picHolder._y=0;
                 & nbsp;      }
                 & nbsp;      _root.thumbnails["thumbnail_"+i].picHolder._alpha = 80;
                 & nbsp;      _root.thumbnails["thumbnail_"+i].notLoaded = false;
                 & nbsp; }
                 & nbsp; if ((_root.thumbnails["thumbnail_"+i].picHolder.getBytesLoaded()/_root.thumbnails["thumbnail_"+i].picHolder.getBytesTotal()<1)) {
                 & nbsp; }
    levTextSpace:
    // register root as environment
    Object.environment = _root;
    // create camera object
    this.cam = {x:0, y:0, z:500, dx:0, dy:0, dz:-500};
    // set environmental constants
    this.fl = 1000;
    // create 'space' to which all words will be attached
    this.createEmptyMovieClip("space", 2);
    // center 'space' on the stage
    space._x = 800;
    space._y = 900;
    // a string of words related to the wind
    this.keywords = "no-nonsense  full-service partner  co-creation  innovation  keep it simple  technical expertise  integral design method  successful products  teamwork  designers engineers  design for (dis)assembly  sustainability  ecological  smart  ideation  feasability study  ergonomic analysis  imagineering  trade off matrix  prototyping  consultancy  technology  problemsolvers  open-minded  multi-disciplinary  imagination  creative minds  passionated  user centered  strategy  added value";
    // convert the string of words into an array of words
    this.wordList = new Array();
    this.wordList = this.keywords.split("  ");
    // create one instance for each word in the list
    for (n=0; n<this.wordList.length; n++) {
        // pick a word from the list
        var word = Object.environment.wordList[n];
    // changing the next 3 lines probably will change where the words appear
        var x = random(600)-(300);
        var y = random(400)-(200);
        var z = random(Object.environment.fl*2)-Object.environment.fl;
        // create an instance of the keyWord object
        nombre = "word"+String(depth++);
        initialization = {txtword: word, x: x, y: y, z: z};
        space.attachMovie("keyWord", nombre, depth, initialization);
        trace(nombre);
    this.createEmptyMovieClip("loopMC",this.getNextHighestDepth);
    loopMC.onEnterFrame = function() {
        this.cam.dz += 5;
        // move the camera to its destination
        this.cam.x += (this.cam.dx-this.cam.x)/10;
        this.cam.y += (this.cam.dy-this.cam.y)/10;
        this.cam.z += (this.cam.dz-this.cam.z)/30;

  • Preview doesn't work anymore after update to Lion

    Preview doesn't work anymore after update to Lion. I cannot start it from dock nor from the programm folder. I always get a (very) long error message. Anyone else with this problem?
    Process:         Preview [207]
    Path:            /Applications/Preview.app/Contents/MacOS/Preview
    Identifier:      com.apple.Preview
    Version:         5.5 (719)
    Build Info:      Preview-719000000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [118]
    Date/Time:       2011-07-21 19:56:38.134 +0200
    OS Version:      Mac OS X 10.7 (11A511)
    Report Version:  9
    Interval Since Last Report:          25 sec
    Crashes Since Last Report:           -5
    Per-App Crashes Since Last Report:   4
    Anonymous UUID:                      847A68C1-A32A-4A6B-B8BA-0F5FE31414BF
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_INSTRUCTION (SIGILL)
    Exception Codes: 0x0000000000000001, 0x0000000000000000
    Application Specific Information:
    dyld: launch, running initializers
    /usr/lib/libSystem.B.dylib
    xpchelper reply message validation: sandbox creation failed: 1002
    Container object initialization failed: NSCocoaErrorDomain:513 You don’t have permission to save the file “Containers” in the folder “Library”.
    Dest: ~/Library/Containers/com.apple.Preview/Data/Library/Preferences
    Destination permissions info:
      0 stat: 2
    -1 stat: 2
    -2 stat: 2
    -3 stat: 2
    -4 stat: 2
    -5 m:040770 R acl:(null) LIBRARY
        fs: hfs, fsid: e000006, mf: 04809000
    -6 m:040770 R acl:(null) HOME
        fs: hfs, fsid: e000006, mf: 04809000
    -7 m:040777 R acl:(null)
        fs: hfs, fsid: e000006, mf: 04809000
    -8 m:041777 R acl:(null)
        fs: hfs, fsid: e000003, mf: 0480d000
    Application Specific Signatures:
    sandbox creation failed: 1002
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libxpc.dylib                      0x00007fff8c1f8343 runtime_init + 823
    1   libdispatch.dylib                 0x00007fff87b8a274 dispatch_once_f + 53
    2   libxpc.dylib                      0x00007fff8c1f8bd1 _xpc_runtime_set_domain + 285
    3   libxpc.dylib                      0x00007fff8c1f6006 _libxpc_initializer + 452
    4   libSystem.B.dylib                 0x00007fff87a8de7e libSystem_initializer + 222
    5   dyld                              0x00007fff6039cd1a ImageLoaderMachO::doModInitFunctions(ImageLoader::LinkContext const&) + 218
    6   dyld                              0x00007fff6039ca66 ImageLoaderMachO::doInitialization(ImageLoader::LinkContext const&) + 46
    7   dyld                              0x00007fff6039a258 ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int, ImageLoader::InitializerTimingList&) + 260
    8   dyld                              0x00007fff6039a1f1 ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int, ImageLoader::InitializerTimingList&) + 157
    9   dyld                              0x00007fff6039a1f1 ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int, ImageLoader::InitializerTimingList&) + 157
    10  dyld                              0x00007fff6039b02b ImageLoader::runInitializers(ImageLoader::LinkContext const&, ImageLoader::InitializerTimingList&) + 59
    11  dyld                              0x00007fff603904ad dyld::initializeMainExecutable() + 206
    12  dyld                              0x00007fff60394580 dyld::_main(macho_header const*, unsigned long, int, char const**, char const**, char const**) + 1852
    13  dyld                              0x00007fff6038e059 _dyld_start + 49
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000295  rbx: 0x00007fff6038a010  rcx: 0x00007fff6038a2a5  rdx: 0x0000000000000000
      rdi: 0x0000000000000000  rsi: 0x00007fff603892a8  rbp: 0x00007fff6038b060  rsp: 0x00007fff60389770
       r8: 0x00007fff60389730   r9: 0x000000000000008a  r10: 0x0000000000000000  r11: 0x00007fff6038a034
      r12: 0x00007fccd0c091e0  r13: 0x00007fccd0c08e90  r14: 0x00007fccd0c08c30  r15: 0x000000000000000f
      rip: 0x00007fff8c1f8343  rfl: 0x0000000000010206  cr2: 0x00007fff60388ff8
    Logical CPU: 2
    Binary Images:
           0x10078d000 -        0x100974fef  com.apple.Preview (5.5 - 719) <8F8450F1-AC7D-3468-AB39-323A5D1B1612> /Applications/Preview.app/Contents/MacOS/Preview
           0x100a08000 -        0x100a27fff  com.apple.MediaUI (1.0 - 1) <79541FEC-6ABC-3D34-92F0-AA469F48A878> /System/Library/PrivateFrameworks/MediaUI.framework/Versions/A/MediaUI
        0x7fff6038d000 -     0x7fff603c1ac7  dyld (195.5 - ???) <4A6E2B28-C7A2-3528-ADB7-4076B9836041> /usr/lib/dyld
        0x7fff832b2000 -     0x7fff83344fff  com.apple.CorePDF (3.0 - 3.0) <6056B710-155A-3543-9373-B9F3E5FC99CE> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff83345000 -     0x7fff833b3fff  com.apple.CoreSymbolication (2.1 - 66) <E1582596-4157-3535-BF1F-3BAE92A0B09F> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff833bf000 -     0x7fff834b4fff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
        0x7fff834b5000 -     0x7fff834f4ff7  libGLImage.dylib (??? - ???) <29F82AD9-45F0-3AC5-A4A4-B767EC555D82> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff83887000 -     0x7fff838dbff7  com.apple.ImageCaptureCore (3.0 - 3.0) <C829E6A3-3EB6-3E1C-B9B8-759F56E34D3A> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff838dc000 -     0x7fff83902ff7  com.apple.framework.familycontrols (3.0 - 300) <72FEA71A-5865-3875-97E9-3C8C96B7F7FA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff83903000 -     0x7fff839a7fef  com.apple.ink.framework (1.3.2 - 110) <F69DBD44-FEC8-3C14-8131-CC0245DBBD42> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff839f5000 -     0x7fff83af3ff7  com.apple.QuickLookUIFramework (3.0 - 489.1) <A8A82434-D43D-3F12-9321-B2E8EC9B4B8E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff83af6000 -     0x7fff83afcfff  libGFXShared.dylib (??? - ???) <DE6987C5-81AC-3AE6-84F0-138C9636D412> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff83afd000 -     0x7fff83b3efff  com.apple.QD (3.12 - ???) <4F3C5629-97C7-3E55-AF3C-ACC524929DA2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff83b3f000 -     0x7fff83fe6ff7  FaceCoreLight (1.4.2 - compatibility 1.0.0) <6F89E9A9-DEB6-32B5-8B50-3B97F5DB597D> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff8403b000 -     0x7fff8461ffaf  libBLAS.dylib (??? - ???) <D62D6A48-5C7A-3ED6-875D-AA3C2C5BF791> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff84620000 -     0x7fff84627ff7  com.apple.CommerceCore (1.0 - 17) <AA783B87-48D4-3CA6-8FF6-0316396022F4> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff84628000 -     0x7fff84642fff  com.apple.CoreMediaAuthoring (2.0 - 889) <99D8E4C6-DDD3-3B0C-BBFB-A513877F10F6> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff8470b000 -     0x7fff8470cfff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff84729000 -     0x7fff847c3ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <B7573888-BAF6-333D-AB00-C0D2BF88DF0F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8480a000 -     0x7fff84812fff  libsystem_dnssd.dylib (??? - ???) <7749128E-D0C5-3832-861C-BC9913F774FA> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff84813000 -     0x7fff84818fff  libGIF.dylib (??? - ???) <21851808-BFD2-3141-8354-A419479726BF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff84827000 -     0x7fff8541ffff  com.apple.AppKit (6.7 - 1138) <C8D2FDDA-B9D5-3948-A376-6B9B6F0596C6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff85440000 -     0x7fff854f2fff  com.apple.CoreText (4.0.0 - ???) <D7BD85FD-277A-3A97-B1AD-5EE14215237E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff85537000 -     0x7fff8561bdef  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <C5F2392D-B481-3A9D-91BE-3D039FFF4DEC> /usr/lib/libobjc.A.dylib
        0x7fff8561c000 -     0x7fff8593ffff  com.apple.HIToolbox (1.7 - ???) <10FA3432-6638-39D9-8681-9E95298D239E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8667d000 -     0x7fff8677fff7  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <D46F371D-6422-31B7-BCE0-D80713069E0E> /usr/lib/libxml2.2.dylib
        0x7fff8678a000 -     0x7fff867e1fff  libTIFF.dylib (??? - ???) <9E32B490-4C5B-3D96-AF27-9C085C606403> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff867e2000 -     0x7fff86878ff7  libvMisc.dylib (325.3.0 - compatibility 1.0.0) <AC5A384A-FA5A-3307-9CED-BD69E6F12A09> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff86879000 -     0x7fff86882fff  libnotify.dylib (80.0.0 - compatibility 1.0.0) <BD08553D-8088-38A8-8007-CF5C0B8F0404> /usr/lib/system/libnotify.dylib
        0x7fff86883000 -     0x7fff86885fff  com.apple.TrustEvaluationAgent (2.0 - 1) <80AFB5D8-5CC4-3A38-83B9-A7DF5820031A> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff869f2000 -     0x7fff86ad0ff7  com.apple.ImageIO.framework (3.1.0 - 3.1.0) <70228E69-063C-32FF-BBE7-FCCD9C5C0864> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff86ad1000 -     0x7fff86ad4ff7  com.apple.securityhi (4.0 - 1) <B37B8946-BBD4-36C1-ABC6-18EDBC573F03> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff86b05000 -     0x7fff86b08fff  com.apple.help (1.3.2 - 42) <AB67588E-7227-3993-927F-C9E6DAC507FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff86b09000 -     0x7fff86b8bfff  com.apple.Metadata (10.7.0 - 627.9) <F293A9A7-9790-3629-BE81-D19C158C5EA4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff86c34000 -     0x7fff86c98fff  com.apple.Symbolication (1.2 - 83.1) <0C6F8907-6829-3409-99AC-ACC62923DE98> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff874cc000 -     0x7fff874d0fff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
        0x7fff874d1000 -     0x7fff874d1fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
        0x7fff874d2000 -     0x7fff87526ff7  com.apple.ScalableUserInterface (1.0 - 1) <1873D7BE-2272-31A1-8F85-F70C4D706B3B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff87527000 -     0x7fff87572fff  com.apple.SystemConfiguration (1.11 - 1.11) <0B02FEC4-C36E-32CB-8004-2214B6793AE8> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff87573000 -     0x7fff87576fff  com.apple.AppleSystemInfo (1.0 - 1) <598ADC13-C994-3579-A885-0D6658DDD564> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff87577000 -     0x7fff875d9ff7  com.apple.coreui (0.3 - 162) <A752F9D0-1CAE-340F-B2D2-95EEF242B301> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff875da000 -     0x7fff87655ff7  com.apple.print.framework.PrintCore (7.0 - 366) <E663DF78-6729-332D-B763-ABB63A6BBB55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8767e000 -     0x7fff8769bff7  com.apple.openscripting (1.3.3 - ???) <A64205E6-D3C5-3E12-B1A0-72243151AF7D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8769c000 -     0x7fff87763ff7  com.apple.ColorSync (4.7.0 - 4.7.0) <A29897D7-4B63-3BBB-B66C-710BE9CC01D8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff87764000 -     0x7fff8778fff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <8051A3FC-7385-3EA9-9634-78FC616C3E94> /usr/lib/libxslt.1.dylib
        0x7fff87790000 -     0x7fff877b9fff  libJPEG.dylib (??? - ???) <3DBFEB41-4BF2-3502-872A-BB3738EE61B0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff877ba000 -     0x7fff877e1fff  com.apple.PerformanceAnalysis (1.10 - 10) <2A058167-292E-3C3A-B1F8-49813336E068> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff877e2000 -     0x7fff877e2fff  com.apple.quartzframework (1.5 - 1.5) <21FCC91F-C7B9-304F-8C9C-04F3924F4AE3> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff878f3000 -     0x7fff87907ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8797c000 -     0x7fff87992fff  libGL.dylib (??? - ???) <22064411-0A62-373C-828B-0AA2BA2A8D34> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff879ac000 -     0x7fff87a8cfff  com.apple.CoreServices.OSServices (478.25 - 478.25) <CA11FC11-2F93-3C8A-8077-A67F381A3EBE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff87a8d000 -     0x7fff87abafe7  libSystem.B.dylib (159.0.0 - compatibility 1.0.0) <7B4D685D-939C-3ABE-8780-77A1889E0DE9> /usr/lib/libSystem.B.dylib
        0x7fff87b05000 -     0x7fff87b1bff7  com.apple.ImageCapture (7.0 - 7.0) <69E6E2E1-777E-332E-8BCF-4F0611517DD0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff87b76000 -     0x7fff87b78fff  libquarantine.dylib (36.0.0 - compatibility 1.0.0) <4C3BFBC7-E592-3939-B376-1C2E2D7C5389> /usr/lib/system/libquarantine.dylib
        0x7fff87b79000 -     0x7fff87b84ff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
        0x7fff87b85000 -     0x7fff87b93fff  libdispatch.dylib (187.5.0 - compatibility 1.0.0) <698F8EFB-7075-3111-94E3-891156C88172> /usr/lib/system/libdispatch.dylib
        0x7fff87b94000 -     0x7fff87b95fff  com.apple.MonitorPanelFramework (1.4.0 - 1.4.0) <0F55CD76-DB24-309B-BD12-62B00C1AAB9F> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
        0x7fff87d6d000 -     0x7fff87d74fff  com.apple.NetFS (4.0 - 4.0) <B9F41443-679A-31AD-B0EB-36557DAF782B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff87d75000 -     0x7fff87f77fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <82DCB94B-3819-3CC3-BC16-2AACA7F64F8A> /usr/lib/libicucore.A.dylib
        0x7fff87fbf000 -     0x7fff87fc0ff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8804a000 -     0x7fff8804dfff  libRadiance.dylib (??? - ???) <DCDA308D-4856-3631-B6D7-7A8B94169BC0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff8804e000 -     0x7fff88059fff  com.apple.DisplayServicesFW (2.5.0 - 302.1.2) <36377733-C737-3F36-A601-85D6188A2AAA> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8805a000 -     0x7fff8805bff7  libremovefile.dylib (21.0.0 - compatibility 1.0.0) <C6C49FB7-1892-32E4-86B5-25AD165131AA> /usr/lib/system/libremovefile.dylib
        0x7fff8805c000 -     0x7fff887f0fff  com.apple.CoreAUC (6.11.03 - 6.11.03) <5A56B2DC-A0A6-357B-ADF2-5714AFEBD926> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff88862000 -     0x7fff88886ff7  com.apple.Kerberos (1.0 - 1) <2FF2569B-F59A-371E-AF33-66297F512CB3> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff88887000 -     0x7fff888c6ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <DE681910-3F7F-3502-9937-AB8008CD281A> /usr/lib/libcups.2.dylib
        0x7fff888c7000 -     0x7fff88959fff  com.apple.PDFKit (2.6 - 2.6) <F838E95F-DEE9-354A-A34A-F5335D0AF1E1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8895a000 -     0x7fff88985fff  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <7D3CDB0A-840F-3856-8F84-B4A50E66431B> /usr/lib/libpcre.0.dylib
        0x7fff88986000 -     0x7fff8898afff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <F1903B7A-D3FF-3390-909A-B24E09BAD1A5> /usr/lib/system/libdyld.dylib
        0x7fff8898b000 -     0x7fff8898bfff  com.apple.audio.units.AudioUnit (1.7 - 1.7) <D75971EE-0D74-365A-8E52-46558EA49E87> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8898c000 -     0x7fff88bfaff7  com.apple.QuartzComposer (5.0 - 232) <CE01B3AC-C19F-3148-9301-615E8FD6F356> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff88bfb000 -     0x7fff88cf7ff7  com.apple.avfoundation (2.0 - 180.23) <C4383696-561D-33F3-AD7C-51E672F580B2> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff88cf8000 -     0x7fff88cf9fff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
        0x7fff88cfa000 -     0x7fff8912cfe7  com.apple.VideoToolbox (1.0 - 705.35) <B1B9F159-EEE2-38BB-A55E-CDB335A7A226> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff89155000 -     0x7fff8928efef  com.apple.vImage (5.0 - 5.0) <C45D2CBE-FA15-3D13-9E9D-A3BF57B84BBE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8928f000 -     0x7fff89291ff7  com.apple.print.framework.Print (7.0 - 247) <579D7E49-A7F4-3C41-9434-3114B8A9B96C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff89292000 -     0x7fff89298fff  com.apple.DiskArbitration (2.4 - 2.4) <5185FEA6-92CA-3CAA-8442-BD71DBC64AFD> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff89299000 -     0x7fff892ecfff  com.apple.AppleVAFramework (5.0.14 - 5.0.14) <5FA4AED9-8E55-389C-9F5B-02FFE5BCBB75> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff899a1000 -     0x7fff899a1fff  com.apple.Cocoa (6.6 - ???) <021D4214-9C23-3CD8-AFB2-F331697A4508> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff89a5e000 -     0x7fff89d35fff  com.apple.security (7.0 - 55010) <2418B583-D3BD-3BC5-8B07-8289C8A5B43B> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff89ece000 -     0x7fff89ed2ff7  com.apple.CommonPanels (1.2.5 - 94) <0BB2C436-C9D5-380B-86B5-E355A7711259> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff89eda000 -     0x7fff89f36ff7  com.apple.QuickLookFramework (3.0 - 489.1) <26470DFE-B3D7-3E05-A4D7-98B64FCB230B> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff89f37000 -     0x7fff8a1b1ff7  com.apple.imageKit (2.1 - 1.0) <03200568-184B-36E8-AFE9-04D1FACDC926> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff8a1b2000 -     0x7fff8a1b3fff  libsystem_sandbox.dylib (??? - ???) <8D14139B-B671-35F4-9E5A-023B4C523C38> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8a1bc000 -     0x7fff8a2c9fff  libJP2.dylib (??? - ???) <D8257CEE-A1C3-394A-8193-6DB7C29A15A8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8a327000 -     0x7fff8a335ff7  libkxld.dylib (??? - ???) <65BE345D-6618-3D1A-9E2B-255E629646AA> /usr/lib/system/libkxld.dylib
        0x7fff8a336000 -     0x7fff8a336fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <3E4582EB-CFEF-34EA-9DA8-8421F1C3C77D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8a33d000 -     0x7fff8a3dcfff  com.apple.LaunchServices (480.19 - 480.19) <41ED4C8B-C74B-34EA-A9BF-34DBA5F52307> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8a49f000 -     0x7fff8a63efff  com.apple.QuartzCore (1.7 - 269.0) <E0AFC745-4AC5-36E3-9827-E5344721071D> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8a66b000 -     0x7fff8a6bdff7  libGLU.dylib (??? - ???) <C3CE8BA0-470F-3BCE-B17C-A31E70E035F2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8a6cc000 -     0x7fff8a6e1fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8a6e7000 -     0x7fff8a6edfff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <D86F63EC-D2BD-32E0-8955-08B5EAFAD2CC> /usr/lib/system/libmacho.dylib
        0x7fff8a6ee000 -     0x7fff8a735ff7  com.apple.CoreMedia (1.0 - 705.35) <6BEC7E0A-BC2E-30DA-8E18-7AF6E8A7821F> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8a736000 -     0x7fff8a842fef  libcrypto.0.9.8.dylib (0.9.8 - compatibility 0.9.8) <3AD29F8D-E3BC-3F49-A438-2C8AAB71DC99> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8a929000 -     0x7fff8a929fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <4CC14F7C-BCA7-3CAC-BEC9-B06576E5A15B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8aa01000 -     0x7fff8ab5aff7  com.apple.audio.toolbox.AudioToolbox (1.7 - 1.7) <296F10D0-A871-39C1-B8B2-9200AB12B5AF> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8ab5b000 -     0x7fff8ac5efff  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <ED5E84C6-646D-3B70-81D6-7AF957BEB217> /usr/lib/libsqlite3.dylib
        0x7fff8ac66000 -     0x7fff8ac6bff7  libsystem_network.dylib (??? - ???) <4ABCEEF3-A3F9-3E06-9682-CE00F17138B7> /usr/lib/system/libsystem_network.dylib
        0x7fff8ac6c000 -     0x7fff8ac99fff  com.apple.quartzfilters (1.7.0 - 1.7.0) <ED846829-EBF1-3E2F-9EA6-D8743E5A4784> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8ac9a000 -     0x7fff8acfafff  libvDSP.dylib (325.3.0 - compatibility 1.0.0) <74B62E70-4189-3022-8FC9-1182EA7C6E34> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8acfb000 -     0x7fff8ad80ff7  com.apple.Heimdal (2.1 - 2.0) <E4CD970F-8DE8-31E4-9FC0-BDC97EB924D5> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8adbc000 -     0x7fff8add3fff  com.apple.CFOpenDirectory (10.7 - 144) <9709423E-8484-3B26-AAE8-EF58D1B8FB3F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8add4000 -     0x7fff8addfff7  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <7ADAAF5B-1D78-32F2-9FFF-D2E3FBB41C2B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8ae21000 -     0x7fff8ae5bfff  com.apple.DebugSymbols (2.1 - 85) <AEF473A5-25BF-3FB7-9A07-320D9CB85959> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8ae94000 -     0x7fff8af09ff7  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <C0EFFF1B-0FEB-3F99-BE54-506B35B555A9> /usr/lib/libc++.1.dylib
        0x7fff8af0a000 -     0x7fff8af2afff  libsystem_kernel.dylib (1699.22.73 - compatibility 1.0.0) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8af67000 -     0x7fff8b009ff7  com.apple.securityfoundation (5.0 - 55005) <0D59908C-A61B-389E-AF37-741ACBBA6A94> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8b00a000 -     0x7fff8b08eff7  com.apple.ApplicationServices.ATS (5.0 - ???) <F10B1918-A06E-3ECF-85EF-05F0CF27187E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8b2b0000 -     0x7fff8b2d3ff7  com.apple.RemoteViewServices (1.0 - 1) <EB549657-8EDC-312A-B8BE-DEC3E160AC3D> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8b2d4000 -     0x7fff8b3b1fef  libsystem_c.dylib (763.11.0 - compatibility 1.0.0) <1D61CA57-3C6D-30F7-89CB-CC6F0787B1DC> /usr/lib/system/libsystem_c.dylib
        0x7fff8b3b2000 -     0x7fff8b3b7fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
        0x7fff8b561000 -     0x7fff8b574ff7  libCRFSuite.dylib (??? - ???) <034D4DAA-63F0-35E4-BCEF-338DD7A453DD> /usr/lib/libCRFSuite.dylib
        0x7fff8b575000 -     0x7fff8b6ffff7  com.apple.QTKit (7.7.1 - 2246) <C8A57DE8-A86A-34B6-B6BA-565EE3B6D140> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8b700000 -     0x7fff8b70efff  com.apple.NetAuth (1.0 - 3.0) <F384FFFD-70F6-3B1C-A886-F5B446E456E7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8b70f000 -     0x7fff8b762fff  libFontRegistry.dylib (??? - ???) <8FE14D77-1286-3619-A02E-0AC1A622596E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8b763000 -     0x7fff8b772fff  com.apple.opengl (1.7.4 - 1.7.4) <38AF4430-7E81-3C98-9330-21DCDA90507E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8b773000 -     0x7fff8be419df  com.apple.CoreGraphics (1.600.0 - ???) <B3C42497-53F5-31BB-987E-D1E76746B0E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8be42000 -     0x7fff8be5eff7  com.apple.GenerationalStorage (1.0 - 124) <C0290CA0-A2A0-3280-9442-9D783883D638> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8bf83000 -     0x7fff8c088ff7  libFontParser.dylib (??? - ???) <22AADE96-E54D-3918-9DFA-1967F8B21E54> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8c13b000 -     0x7fff8c140fff  com.apple.OpenDirectory (10.7 - 144) <E8AACF47-C423-3DCE-98F6-A811612B1B46> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8c141000 -     0x7fff8c15efff  libPng.dylib (??? - ???) <75DA9F95-C2A1-3534-9F8B-14CFFDE2A290> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8c196000 -     0x7fff8c1a8ff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
        0x7fff8c1e4000 -     0x7fff8c1e9fff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8c1ea000 -     0x7fff8c207ff7  libxpc.dylib (77.16.0 - compatibility 1.0.0) <0A4B4775-29A9-30D6-956B-3BE1DBF98090> /usr/lib/system/libxpc.dylib
        0x7fff8c208000 -     0x7fff8c20eff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
        0x7fff8c881000 -     0x7fff8c883fff  libCVMSPluginSupport.dylib (??? - ???) <2D21E6BE-CB20-3F76-8DCC-1CB0660A8A5B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8c8ab000 -     0x7fff8cbc4fff  com.apple.CoreServices.CarbonCore (960.13 - 960.13) <398ABDD7-BB95-3C05-96D2-B54243FC4745> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8cc04000 -     0x7fff8cc04fff  com.apple.vecLib (3.7 - vecLib 3.7) <29927F20-262F-379C-9108-68A6C69A03D0> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff8cc8a000 -     0x7fff8ccfdfff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
        0x7fff8cd1e000 -     0x7fff8cd1ffff  libdnsinfo.dylib (395.6.0 - compatibility 1.0.0) <718A135F-6349-354A-85D5-430B128EFD57> /usr/lib/system/libdnsinfo.dylib
        0x7fff8cd22000 -     0x7fff8cd5efff  libsystem_info.dylib (??? - ???) <BC49C624-1DAB-3A37-890F-6EFD46538424> /usr/lib/system/libsystem_info.dylib
        0x7fff8cd5f000 -     0x7fff8cd8cff7  com.apple.opencl (1.50.62 - 1.50.62) <616ADE61-11D1-3816-A255-3F0F80F2EAC8> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8cf75000 -     0x7fff8d1e6fff  com.apple.CoreImage (7.77 - 1.0.1) <AB6ECCF3-4B04-3363-9158-08F305BF15FA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8d1e7000 -     0x7fff8d1e8fff  libunc.dylib (24.0.0 - compatibility 1.0.0) <C67B3B14-866C-314F-87FF-8025BEC2CAAC> /usr/lib/system/libunc.dylib
        0x7fff8d1e9000 -     0x7fff8d243fff  com.apple.HIServices (1.9 - ???) <8791E8AA-C034-330D-B2BA-5141154C21CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8d244000 -     0x7fff8d671fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8d672000 -     0x7fff8d6a5fff  com.apple.GSS (2.1 - 2.0) <A150154E-40D3-345B-A92D-3A023A55AC52> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8d6a6000 -     0x7fff8d716fff  com.apple.datadetectorscore (3.0 - 179.3) <AFFBD606-91DE-3F91-8E38-C037D9FBFA8B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8d717000 -     0x7fff8d8eaff7  com.apple.CoreFoundation (6.7 - 635) <57446B22-0778-3E07-9690-96AC705D57E8> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8d8eb000 -     0x7fff8d8ebfff  com.apple.Carbon (153 - 153) <895C2BF2-1666-3A59-A669-311B1F4F368B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8d8ec000 -     0x7fff8d8f7fff  com.apple.CommonAuth (2.1 - 2.0) <49949286-61FB-3A7F-BF49-0EBA45E2664E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8d91a000 -     0x7fff8dc2cfff  com.apple.Foundation (6.7 - 833.1) <618D7923-3519-3C53-9CBD-CF3C7130CB32> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8dc2d000 -     0x7fff8dc7dfff  com.apple.CoreMediaIO (201.0 - 3148) <66287EB0-61F1-3175-90DC-24BB29473C67> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff8dc7e000 -     0x7fff8dc88ff7  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <39EF04F2-7F0C-3435-B785-BF283727FFBD> /usr/lib/system/liblaunch.dylib
        0x7fff8dcd2000 -     0x7fff8dcf1fff  libresolv.9.dylib (46.0.0 - compatibility 1.0.0) <33263568-E6F3-359C-A4FA-66AD1300F7D4> /usr/lib/libresolv.9.dylib
        0x7fff8e1a8000 -     0x7fff8e30bfff  com.apple.CFNetwork (520.0.13 - 520.0.13) <67E3BB43-2A22-3F5A-964E-391375B24CE0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff8e30c000 -     0x7fff8e323fff  com.apple.MultitouchSupport.framework (220.62 - 220.62) <7EF58A7E-CB97-335F-A025-4A0F00AEF896> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8e339000 -     0x7fff8e368fff  com.apple.DictionaryServices (1.2 - 158) <2CE51CD1-EE3D-3618-9507-E39A09C9BB8D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8e369000 -     0x7fff8e576fff  com.apple.JavaScriptCore (7534 - 7534.48) <99B60407-592A-3DDC-A3D0-86578B92B3F8> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8e577000 -     0x7fff8e738fe7  com.apple.CoreData (103 - 358.4) <8D8ABA2E-0161-334D-A7C9-79E5297E188B> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8e739000 -     0x7fff8e73efff  libcache.dylib (47.0.0 - compatibility 1.0.0) <B7757E2E-5A7D-362E-AB71-785FE79E1527> /usr/lib/system/libcache.dylib
        0x7fff8e73f000 -     0x7fff8e781ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <A5B9778E-11C3-3F61-B740-1F2114E967FB> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8e797000 -     0x7fff8e797fff  com.apple.CoreServices (53 - 53) <5946A0A6-393D-3087-86A0-4FFF6A305CC0> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8e798000 -     0x7fff8e798fff  com.apple.ApplicationServices (41 - 41) <03F3FA8F-8D2A-3AB6-A8E3-40B001116339> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8e799000 -     0x7fff8e7c1ff7  com.apple.CoreVideo (1.7 - 70.0) <59D5B407-CCB6-3406-8C55-C1B0168D7DC2> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8e7d4000 -     0x7fff8e7e6ff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
        0x7fff8ec72000 -     0x7fff8ec79fff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <172B1985-F24A-34E9-8D8B-A2403C9A0399> /usr/lib/system/libcopyfile.dylib
        0x7fff8ec7a000 -     0x7fff8ece1ff7  com.apple.audio.CoreAudio (4.0.0 - 4.0.0) <0B715012-C8E8-386D-9C6C-90F72AE62A2F> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8ef05000 -     0x7fff8f2cbfff  com.apple.MediaToolbox (1.0 - 705.35) <EC6755D1-58BC-36F5-AB66-143D03A0AF8C> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff8f2cc000 -     0x7fff8f2d2fff  IOSurface (??? - ???) <06FA3FDD-E6D5-391F-B60D-E98B169DAB1B> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8f2d7000 -     0x7fff8f3ecfff  com.apple.DesktopServices (1.6.0 - 1.6.0) <208D40FC-8BBE-330F-B999-18771BEA6895> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8f3ed000 -     0x7fff8f43bff7  libauto.dylib (??? - ???) <F0004B88-CA01-37D0-A77F-6651C4EC7D8E> /usr/lib/libauto.dylib
        0x7fff8f440000 -     0x7fff8f443fff  libCoreVMClient.dylib (??? - ???) <9E9F7B24-567C-3102-909C-219CF2B191FD> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8f4d4000 -     0x7fff8f53efff  com.apple.framework.IOKit (2.0 - ???) <F79E7690-EF97-3D04-BA22-177E256803AF> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8f53f000 -     0x7fff8f57efff  com.apple.AE (527.6 - 527.6) <6F8DF9EF-3250-3B7F-8841-FCAD8E323954> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8f57f000 -     0x7fff8f99afff  com.apple.SceneKit (2.0 - 124) <9E331DDE-BDF4-34C5-A8F9-E7F12ADBB785> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 1
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 209
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=171.9M resident=87.9M(51%) swapped_out_or_unallocated=84.0M(49%)
    Writable regions: Total=17.9M written=508K(3%) resident=664K(4%) swapped_out=0K(0%) unallocated=17.2M(96%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    MALLOC                             9396K
    MALLOC guard page                    16K
    STACK GUARD                        56.0M
    Stack                              8192K
    __CI_BITMAP                          80K
    __DATA                             16.3M
    __IMAGE                            1256K
    __LINKEDIT                         47.3M
    __TEXT                            124.6M
    __UNICODE                           544K
    shared memory                        12K
    ===========                      =======
    TOTAL                             263.2M
    Model: iMac12,2, BootROM IM121.0047.B0A, 4 processors, Intel Core i5, 2.7 GHz, 16 GB, SMC 1.72f2
    Graphics: AMD Radeon HD 6770M, AMD Radeon HD 6770M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1333 MHz, 0x8394, 0x393731363437410000000000000000000000
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1333 MHz, 0x8394, 0x393731363437410000000000000000000000
    Memory Module: BANK 0/DIMM1, 4 GB, DDR3, 1333 MHz, 0x8394, 0x393731363437410000000000000000000000
    Memory Module: BANK 1/DIMM1, 4 GB, DDR3, 1333 MHz, 0x8394, 0x393731363437410000000000000000000000
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x9A), Atheros 9380: 4.0.55.4-P2P
    Bluetooth: Version 2.5.0f17, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: WDC WD1001FALS-403AA0, 1 TB
    Serial ATA Device: APPLE SSD TS256C, 251 GB
    Serial ATA Device: OPTIARC DVD RW AD-5690H
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x850b, 0xfa200000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: Keyboard Hub, apple_vendor_id, 0x1006, 0xfa130000 / 5
    USB Device: Apple Keyboard, apple_vendor_id, 0x0221, 0xfa132000 / 7
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0xfa111000 / 6
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 4
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfd110000 / 3

    Hello. Is this still reproducing to you? Can you try again? If it still doesn't work fine please let em know what is loaded for you. I tried with Galaxy Tab and for me it loads the login page.

  • When I installed jms (j2ee1.3) my lookups doesn't work anymore...

    Hi. I was using j2se 1.3 and performed some lookups on objects from an Oracle 8.1.7.
    Then, in order to use jms, I installed j2ee 1.3 and j2se 1.3.1. Now my lookups doesn't work anymore, but my lookups on jms objects (por example Queue or QueueConnectionFactory) does work fine. This is the code that produces the error, and the error:
    ****** CODE *************
    String serviceURL = "sess_iiop://desarrollo:2482:SCANALES";
    String objectName = "/test/sInformacionSalida";
    ServicioInformacionSalida sis = null;
    Hashtable env = new Hashtable ();
    env.put (Context.URL_PKG_PREFIXES, "oracle.aurora.jndi:com.sun.enterprise.naming");
    env.put (Context.SECURITY_PRINCIPAL, "USER");
    env.put (Context.SECURITY_CREDENTIALS, "USER");
    env.put (Context.SECURITY_AUTHENTICATION, ServiceCtx.NON_SSL_LOGIN);
    InitialContext ic = null;
    try {
    ic = new InitialContext(env);
    } catch (NamingException nE) {}
    System.out.println("ASIF: Lookup de servicio de salida de informacion de formateo...");
    try {
               sis = (ServicioInformacionSalida)ic.lookup(serviceURL + objectName);
    } catch(NamingException nE) {
      System.out.println("ASIF: Error en el lookup: " + nE.getExplanation());
      System.out.println("ASIF: " + nE.toString());
      nE.printStackTrace();
      System.exit(-1);
    **************** ERROR ******************
    ASIF: Error en el lookup: Unknown service: 200.12.145.40:2482:SCANALES
    ASIF: javax.naming.CommunicationException: Unknown service: 200.12.145.40:2482:SCANALES
    javax.naming.CommunicationException: Unknown service: 200.12.145.40:2482:SCANALES
    at oracle.aurora.jndi.sess_iiop.SessionCtx.initialContext(SessionCtx.java:647)
    at oracle.aurora.jndi.sess_iiop.SessionCtx.<init>(SessionCtx.java:67)
    at oracle.aurora.jndi.sess_iiop.ServiceCtx.createSession(ServiceCtx.java:161)
    at oracle.aurora.jndi.sess_iiop.ServiceCtx.login(ServiceCtx.java:349)
    at oracle.aurora.jndi.sess_iiop.ServiceCtx.defaultSession(ServiceCtx.java:219)
    at oracle.aurora.jndi.sess_iiop.ServiceCtx.lookup(ServiceCtx.java:373)
    at oracle.aurora.jndi.sess_iiop.sess_iiopURLContext.lookup(sess_iiopURLContext.java:256)
    at oracle.aurora.jndi.sess_iiop.sess_iiopURLContext.lookup(sess_iiopURLContext.java:242)
    at javax.naming.InitialContext.lookup(InitialContext.java:350)
    at SimpleQueueSender.main(SimpleQueueSender.java:152)**********************************************
    Last, from the %J2EE_HOME%\lib\classes\jndi.properties:
    java.naming.factory.initial=com.sun.enterprise.naming.SerialInitContextFactory
    java.naming.factory.url.pkgs=com.sun.enterprise.naming
    The weird thing is that when I remove %J2EE_HOME%\lib\j2ee.jar from the classpath, the lookup works fine again but, of course, I can't use the jms classes.
    From the "Unknown service" message, I presume that the problem is related to the service provider and/or something with the environment properties.
    PLEASE ANY HELP!!
    Thanks.

    This seems weird enough for bringing to the attention of the JNDI technical team.
    If you have not already done so, you might want to send this message directly to them at [email protected]
    There seems to be some incompatibility between Oracle classes and J2EE 1.3 classes. As you have pointed out, in some service provider classe(s).

  • Updating to ios5 recorder doesn't work anymore

    i have an app always working till i have installed ios5 on device.
    this is the code.
    [code]
    UInt32 sessionCategory = kAudioSessionCategory_MediaPlayback;
            AudioSessionSetProperty(kAudioSessionProperty_AudioCategory, sizeof(sessionCategory), &sessionCategory);   
            UInt32 audioRouteOverride = kAudioSessionOverrideAudioRoute_Speaker;
            AudioSessionSetProperty (kAudioSessionProperty_OverrideAudioRoute,sizeof (audioRouteOverride),&audioRouteOverride);
            //NSLog(@"url");
            NSURL *url = [NSURL fileURLWithPath:@"/dev/null"];
            //NSLog(@"dizionario");
            NSDictionary *audioSettings = [NSDictionary dictionaryWithObjectsAndKeys:
                                           [NSNumber numberWithFloat: 44100.0],                 AVSampleRateKey,
                                           [NSNumber numberWithInt: kAudioFormatAppleLossless], AVFormatIDKey,
                                           [NSNumber numberWithInt: 1],                         AVNumberOfChannelsKey,
                                           [NSNumber numberWithInt: AVAudioQualityMax],         AVEncoderAudioQualityKey,
                                           nil];
            NSError *error;   
            bool b;
            //NSLog(@"audio");
            recorder = [[AVAudioRecorder alloc] initWithURL:url settings:audioSettings error:&error];
            //NSLog(@"audio");
            if (recorder) {
                //NSLog(@"prepara");
                b=[recorder prepareToRecord];
                //NSLog(@"%@",(b ? @"OK" : @"NO"));
                //NSLog(@"meter");
                recorder.meteringEnabled = YES;
                //NSLog(@"recorder");
                b=[recorder record];
                //NSLog(@"%@", (b ? @"OK" : @"NO"));           
                //        NSLog(@"leveltimer");
                //        levelTimer = [NSTimer scheduledTimerWithTimeInterval: 0.03 target: self selector: @selector(levelTimerCallback:) userInfo: nil repeats: YES];
            } else {
                NSLog(@"************** ERRORE: ****************");
                NSLog([error description]);   
    [/code]
    the result is that recorder record silence, no peak power, no avarage power.
    i use xcode4 (ios inxcode4 is till 4.3, i have not downloaded the latest xcode)
    why in ios5 doesn't work anymore?
    is not compatible?
    thanks

    i have downloaded the latest xcode, tryed
    Documents or Cache instead of /dev/null but no luck
    i have solved but don't know why it stopped working.
    the code above was putted in a singleton class loaded and initialized once at start of the app.
    seems that records only one voice power then stops (even if i have controlled that recording=true, metering enabled=true ecc...in logs)
    now i have putted the same code in a method of the singleton class and called that method from the file of the screen "ingame" and works...
    mmm.......any ideas why it happens?

  • 5.0.2 Lollipop equalizer & clear audio+ doesn't work anymore (except in walkman)

    In 5.0.2 Lollipop update equalizer & clear audio+ doesn't work anymore (except in walkman). In 4.4.4 equalizer works without problem! Sony please fix, because I can't listen other content without adjusted equalizer.
    xperia tablet Z2 wifi

    Solution by Rickard
    "I have got some more information about this and it's up to the app if the equalizer is used or not. It's not on by default for all apps, the developer of an app must state that they want to use it in their code."
    Android team turn this features off in default. Pffff why?? ))
    And now we have to wait that all application developers have added this feature, Facepalm.

  • Snow Leopard as PXE server doesn't work anymore with Debian Lenny

    Hello
    I was using a box with Mac OS X 10.6.2 as a PXE boot server, providing a Debian Etch installer as boot image.
    I wanted to upgrade to the Debian Lenny PXE image, but it doesn't work anymore.
    I m not sure how I can debug that. I m a sure of one thing, switching for the Debian Etch image to the Debian Lenny one triggers those kernel log messages during the PXE boot, and the host who tried to boot hanged ( a Virtualbox VM).
    +Feb 23 20:34:33 macbookpro kernel[0]: indelayed_cksumoffset: ip_len 50688 (198) doesn't match actual length 212+
    +Feb 23 20:34:58: --- last message repeated 6 times ---+
    Here is my /etc/bootpd.plist file :
    +<?xml version="1.0" encoding="UTF-8"?>+
    +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">+
    +<plist version="1.0">+
    <dict>
    <key>dhcp_enabled</key>
    <true/>
    <key>bootp_enabled</key>
    <true/>
    <key>netboot_enable</key>
    <false/>
    <key>Subnets</key>
    <array>
    <dict>
    <key>name</key>
    +<string>My subnet</string>+
    <key>net_mask</key>
    <string>255.255.255.0</string>
    <key>net_address</key>
    <string>192.168.0.0</string>
    <key>net_range</key>
    <array>
    <string>192.168.0.3</string>
    <string>192.168.0.6</string>
    </array>
    <key>allocate</key>
    <true/>
    <key>dhcpoption128</key>
    <string>192.168.0.10</string>
    <key>dhcpoption66</key>
    <string>192.168.0.10</string>
    <key>dhcpoption67</key>
    <string>/etch/pxelinux.0</string>
    </dict>
    </array>
    </dict>
    </plist>
    My /private/tftpboot/ tree is created from the http://http.us.debian.org/debian/dists/etch/main/installer-i386/current/images/n etboot/netboot.tar.gz archive. I used http://http.us.debian.org/debian/dists/lenny/main/installer-i386/current/images/ netboot/netboot.tar.gz for the Debian Lenny tree.
    So, can someone help me ?

    I disabled bootp. In verbose and debug, everything seems to go well. The option 128 isn't accepted by the daemon, i disabled it too, the TFTP server is the same server than the DHCP, so it still works.
    Here s the log when using the Debian Lenny image, almost the same than with Debian Etch image.
    +bootpd[4754]: server starting+
    +bootpd[4754]: can't open /etc/bootptab+
    +bootpd[4754]: server name macbookpro.local+
    +bootpd[4754]: interface en0: ip 192.168.0.10 mask 255.255.255.0+
    +bootpd[4754]: interface vnic0: ip 10.211.55.2 mask 255.255.255.0+
    +bootpd[4754]: interface vnic1: ip 10.37.129.2 mask 255.255.255.0+
    +0.0.0.0 ==> 192.168.0.1+
    +10.37.129 ==> link 8+
    +10.211.55 ==> link 7+
    +127 ==> 127.0.0.1+
    +169.254 ==> link 4+
    +192.168.0 ==> link 4+
    +There are 1 entries+
    +1. Subnet 'My subnet'+
    + Network: 192.168.0.0/255.255.255.0+
    + Range: 192.168.0.3..192.168.0.6+
    + Allocate: yes+
    + Lease Min: 3600 Lease Max: 86400+
    + Options:+
    + Code Length Data+
    + 66 4 c0 a8 00 0a+
    + 67 17 2f 6c 65 6e 6e 79 2f 70 78 65 6c 69 6e 75 78 2e 30+
    +DNS servers: 89.2.0.1 89.2.0.2+
    +destination address 255.255.255.255+
    +---------------- Client Request --------------------+
    +op = BOOTREQUEST+
    +htype = 1+
    +flags = 8000+
    +hlen = 6+
    +hops = 0+
    +xid = 678070622+
    +secs = 4+
    +ciaddr = 0.0.0.0+
    +yiaddr = 0.0.0.0+
    +siaddr = 0.0.0.0+
    +giaddr = 0.0.0.0+
    +chaddr = 8:0:27:6a:89:5e+
    +sname =+
    +file =+
    options:
    +Options count is 8+
    +dhcpmessagetype (uint8): DISCOVER 0x1+
    +parameterrequestlist (uint8_mult): {0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0xb, 0xc, 0xd, 0xf, 0x10, 0x11, 0x12, 0x16, 0x17, 0x1c, 0x28, 0x29, 0x2a, 0x2b, 0x32, 0x33, 0x36, 0x3a, 0x3b, 0x3c, 0x42, 0x43, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87}+
    +maxdhcp_messagesize (uint16): 0x4ec+
    +option_97 (opaque):+
    +0000 00 b2 9a 0c 89 ce 8e 46 08 83 90 a7 d2 76 ee 87 .......F.....v..+
    +0010 6e n+
    +option_93 (opaque):+
    +0000 00 00 ..+
    +option_94 (opaque):+
    +0000 01 02 01 ...+
    +vendorclassidentifier (string): PXEClient:Arch:00000:UNDI:002001+
    +end (none):+
    +bootpd[4754]: DHCP DISCOVER [en0]: 1,8:0:27:6a:89:5e+
    state=INIT
    +bootpd[4754]: default route added as router+
    +bootpd[4754]: default dns servers added+
    +Sending: DHCP OFFER (size 303)+
    +bootpd[4754]: replying using broadcast IP address+
    +bootpd[4754]: replying to 255.255.255.255+
    +=================== Server Reply =====================+
    +op = BOOTREPLY+
    +htype = 1+
    +flags = 8000+
    +hlen = 6+
    +hops = 0+
    +xid = 678070622+
    +secs = 0+
    +ciaddr = 0.0.0.0+
    +yiaddr = 192.168.0.3+
    +siaddr = 192.168.0.10+
    +giaddr = 0.0.0.0+
    +chaddr = 8:0:27:6a:89:5e+
    +sname = macbookpro.local+
    +file =+
    options:
    +Options count is 9+
    +dhcpmessagetype (uint8): OFFER 0x2+
    +server_identifier (ip): 192.168.0.10+
    +lease_time (uint32): 0x14dd5+
    +subnet_mask (ip): 255.255.255.0+
    +router (ip_mult): {192.168.0.1}+
    +domainnameserver (ip_mult): {89.2.0.1, 89.2.0.2}+
    +tftpservername (ip_mult): {192.168.0.10}+
    +bootfile_name (string): /lenny/pxelinux.0+
    +end (none):+
    +bootpd[4754]: OFFER sent <no hostname> 192.168.0.3 pktsize 303+
    +bootpd[4754]: service time 0.007299 seconds+
    +destination address 255.255.255.255+
    +---------------- Client Request --------------------+
    +op = BOOTREQUEST+
    +htype = 1+
    +flags = 8000+
    +hlen = 6+
    +hops = 0+
    +xid = 678070622+
    +secs = 4+
    +ciaddr = 0.0.0.0+
    +yiaddr = 0.0.0.0+
    +siaddr = 0.0.0.0+
    +giaddr = 0.0.0.0+
    +chaddr = 8:0:27:6a:89:5e+
    +sname =+
    +file =+
    options:
    +Options count is 10+
    +dhcpmessagetype (uint8): REQUEST 0x3+
    +requestedipaddress (ip): 192.168.0.3+
    +parameterrequestlist (uint8_mult): {0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0xb, 0xc, 0xd, 0xf, 0x10, 0x11, 0x12, 0x16, 0x17, 0x1c, 0x28, 0x29, 0x2a, 0x2b, 0x32, 0x33, 0x36, 0x3a, 0x3b, 0x3c, 0x42, 0x43, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87}+
    +maxdhcp_messagesize (uint16): 0x4ec+
    +server_identifier (ip): 192.168.0.10+
    +option_97 (opaque):+
    +0000 00 b2 9a 0c 89 ce 8e 46 08 83 90 a7 d2 76 ee 87 .......F.....v..+
    +0010 6e n+
    +option_93 (opaque):+
    +0000 00 00 ..+
    +option_94 (opaque):+
    +0000 01 02 01 ...+
    +vendorclassidentifier (string): PXEClient:Arch:00000:UNDI:002001+
    +end (none):+
    +bootpd[4754]: DHCP REQUEST [en0]: 1,8:0:27:6a:89:5e+
    SELECT
    state=SELECT
    +bootpd[4754]: default route added as router+
    +bootpd[4754]: default dns servers added+
    +Sending: DHCP ACK (size 303)+
    +bootpd[4754]: replying using broadcast IP address+
    +bootpd[4754]: replying to 255.255.255.255+
    +=================== Server Reply =====================+
    +op = BOOTREPLY+
    +htype = 1+
    +flags = 8000+
    +hlen = 6+
    +hops = 0+
    +xid = 678070622+
    +secs = 0+
    +ciaddr = 0.0.0.0+
    +yiaddr = 192.168.0.3+
    +siaddr = 192.168.0.10+
    +giaddr = 0.0.0.0+
    +chaddr = 8:0:27:6a:89:5e+
    +sname = macbookpro.local+
    +file =+
    options:
    +Options count is 9+
    +dhcpmessagetype (uint8): ACK 0x5+
    +server_identifier (ip): 192.168.0.10+
    +lease_time (uint32): 0x14dd5+
    +subnet_mask (ip): 255.255.255.0+
    +router (ip_mult): {192.168.0.1}+
    +domainnameserver (ip_mult): {89.2.0.1, 89.2.0.2}+
    +tftpservername (ip_mult): {192.168.0.10}+
    +bootfile_name (string): /lenny/pxelinux.0+
    +end (none):+
    +bootpd[4754]: ACK sent <no hostname> 192.168.0.3 pktsize 303+
    +bootpd[4754]: service time 0.001884 seconds+

  • BBM Barcode scanner . doesn't work anymore !

    BBM barcode scanner doesn't work anymore , and i've downloaded a barcode scanner
    like QR Scanner Pro and Barcode scanner from app world and it doesn't work either,
    it was working fine month ago, i have no idea what happened to it
    Please Help i really need it for some groups i wanna join

    Have you tried contacting the developer of the app, perhaps? Since it's an app, the developer is responsible for support, aren't they?
    Beyond that, the next step would be to ensure that your BB OS is indeed compatible with the app. If so, then further steps could be to seek out an updated BB OS (one that, of course, remains compatible with your apps) as well as performing a clean reload of your BB OS and all of your apps...just in case something has become corrupted in the BB OS itself.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Syntax high lightening doesn`t work anymore

    Hello,
    since yesterday the syntax high lightening function of DW MX
    2004 doesn`t work anymore.
    The whole source code is in black, as well in html as in php
    documents.
    The settings are not changed and show the high lighting as
    usual.
    Any Ideas?

    Stolen from another participants comments and it worked. My solution was to connect AirPort Express via Ethernet.
    Welcome to the discussions!
    If you reset the Extreme back to factory defaults and reconfigured it, you will need to do the same for the Express.
    Plug the Express into power and hold in the tiny reset button until the amber light begins to blink rapidly.
    Open AirPort Utility to reconfigure your Express to "extend" the network created by the Extreme. If Airport Utility can't "find" the Express, temporarily connect an ethernet cable from the Express to your computer.
    You may find it a bit easier to use the Manual Setup option on the Express since you already know how your Extreme is configured and you will use many of the same settings.

  • Last week, I had no problems streaming my MacBook Pro to my sony Bravia with a logix hdmi cable. I came back from holidays and now it doesn't work anymore.  What settings should my computer be on and what settings should my tv be on?

    Last week, I had no problems streaming my MacBook Pro to my sony Bravia with a logix hdmi cable. I came back from holidays and now it doesn't work anymore.  What settings should my computer be on and what settings should my tv be on?

    TarahCurrie Sep 10, 2014 3:48 PM
    Restore From Time Machine Backup
    Reinstall OS X
    Get Help Online
    Disk Utility
    MacBook Pro, Mac OS X (10.5.8)
    You are running 10.5.8
    Did you try booting off your Install disk holding the c key down.  From here you can get to the drop down menu just a few clicks in (you are not going to install) and run  the Disk Utility>Repair Disk.  See if it will let you do this.

  • Efi Express doesn't work anymore so I can't print

    I Use Efi Express as RIP and colormanagement software to print to my Epson Pro 4900 printer. Now I need prints and this doesn't work anymore.
    I installed Maverick so that is most likely to be the problem, because just before I did this the pritner and software worked fine. I installed Efi Express again but I keep getting a message aboutr a system extension that isn't properly installed.
    I looked in the system folder for this .kext file, but it doesn't exist at all.
    Please help.

    We use the Fiery Express driver with our Canon copiers that use the optional EFI print controller and have no issue with this driver on 10.9. In fact, at this point in time, it is the only EFI driver we have for 10.9.
    The Express driver plugins should be located in /Library/Printers/efi and the PPD will be in /Library/Printers/PPDs/Contents/Resources/en.lproj and is called Fiery Express. So trash these files and check the EFI web site for the latest version of the driver.

  • I can't seem to get my iMac (late 2009 model) into automatic sleep mode.  If I manually put it into sleep I don't have any issues.  I used to solve the issue by running "PleaseSleep" application but that doesn't work anymore since Lion.

    I can't seem to get my iMac (late 2009 model) into automatic sleep mode.  If I manually put it into sleep I don't have any issues.
    I used to solve the issue by running "PleaseSleep" application but that doesn't work anymore since Lion. I now want to fix the underlying problem.
    I'm not running any weird background processes and in my energy saver settings I've tagged "put the hard disk to sleep when possible:, "allow power button to put computer to sleep" and "automatically reduce brigthness". All pretty standard.
    Is there anyone who can give me some pointers ?

    Today I solved the same problem for my iMac running Snow Leopard. See https://discussions.apple.com/thread/3008791#15947706. The method may help you, too.
    For me it was the DynDNS Updater preventing my iMac from automatically entering sleep mode.
    To my knowledge the cause of this sleep problem can only be a peripheral device or a process. So I suggest to first unplug all peripherals and test whether that's the cause. If not, I suggest to terminate one process after another and to test automatic entering of sleep mode after each. Start with user processes; continue with system process if necessary.
    At least that's the way I found the offending process. Fortunately, I was able to change the configuration of that process to allow again automatic entering of sleep mode.
    Good luck!

  • Su doesn't work anymore but sudo works

    Hi all,
    I normally use my standard user account but when I'm installing with macports I routinely "su" into root to do things.
    Today I went on my machine and noticed that "su" wouldn't work. Before anyone decides to tell me that I don't need to use "su", I realize that but I use it for my own purposes.
    From the system log I am seeing this each time "su" fails:
    su[1376]: pam_authenticate: Permission denied
    What is interesting is that doing a "sudo su" works, and I'm able to do all of my admin duties that way.
    I have a feeling something messed up my bash profile but not totally sure. Has anyone else run into this issue?

    Hi all,
    Thanks for the help on this issue.
    I'll clarify: I'm using this install as a server and this is why I have 2 admin accounts on it. The original account is my own; the one I created when I first installed OS X. I then enabled System Admin (root) so that is the other admin account. After installing MacPorts I have been running the system as a multi-user webserver. I occasionally log in as root to do maintenance and upgrades. I have found that it's easier to use the SysAdmin account in certain situations because of permissions issues and ease of installing upgrades.
    I'll often log in under my username and then su to root. Recently (yesterday) I noticed that "su" didn't work anymore when I used my normal username.
    There are sometimes that I will log onto the machine as System Admin and usually via the terminal (console) I can log in as any of the other accounts by doing
    su <username>
    this also doesn't work anymore. I get the error:
    shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
    I have two servers set up this way. One works the way it should, the other one has this problem. The only difference I can see is in roots bash profile but I'm not sure why they are different on each machine.
    Also when logged in as System Admin, I should be able to turn off "allow user to administer computer" on my regular account but it's grayed out. On the other similarly configured machine, under the same conditions, I can. I'm not sure why I can do it on one and not the other.
    I've tried turning off enable root via Directory Utility but that didn't fix the issue.

  • Time Machine Just Doesn't Work Anymore

    I was a happy Time Machine (with Time Capsule) user for months. But it just doesn't work anymore. It takes longer than an hour to do every hourly backup so it is backing up 24 hours a day. It finds hundreds of thousands of files changed every hour and tries to back them up. Finders says only tens of files have been modified all of today. I have tried rebuilding my spotlight indexes, repairing my Time Capsule with Disk Utility and starting over with a brand new backup. But it just backs up hundreds of thousands of files every hour. So I am turning off Time capsule since it is clearly broken. If anyone has any suggestions at all I would welcome them.

    Marcia,
    Consider the following, it might give you some ideas:
    Time Machine performs backups at the file level. If a single bit in a large file is changed, the WHOLE file is backed up again. This is a problem for programs that save data to monolithic virtual disk files that are modified frequently. These include Parallels, VMware Fusion, Aperture vaults, or the databases that Entourage and Thunderbird create. These should be excluded from backup using the Time Machine Preference Exclusion list. You will, however, need to backup these files manually to another external disk.
    One poster observed regarding Photoshop: “If you find yourself working with large files, you may discover that TM is suddenly backing up your scratch disk's temp files. This is useless, find out how to exclude these (I'm not actually sure here). Alternatively, turn off TM whilst you work in Photoshop.” (http://discussions.apple.com/thread.jspa?threadID=1209412)
    If you do a lot of movie editing, unless these files are excluded, expect Time Machine to treat revised versions of a single movie as entirely new files.
    If you frequently download software or video files that you only expect to keep for a short time, consider excluding the folder these are stored in from Time Machine backups.
    If you have recently created a new disk image or burned a DVD, Time Machine will target these files for backup unless they are deleted or excluded from backup.
    Installing new software, upgrading existing software, or updating Mac OS X system software can created major changes in the structure of your directories. Time Machine will backup every file that has changed since the installation.
    Files or folders that are simply moved or renamed are counted as NEW files or folders. If you rename any file or folder, Time Machine will back up the ENTIRE file or folder again no matter how big or small it is.
    George Schreyer describes this behavior: “If you should want to do some massive rearrangement of your disk, Time Machine will interpret the rearranged files as new files and back them up again in their new locations. Just renaming a folder will cause this to happen. This is OK if you've got lots of room on your backup disk. Eventually, Time Machine will thin those backups and the space consumed will be recovered. However, if you really want recover the space in the backup volume immediately, you can. To do this, bring a Finder window to the front and then click the Time Machine icon on the dock. This will activate the Time Machine user interface. Navigate back in time to where the old stuff exists and select it. Then pull down the "action" menu (the gear thing) and select "delete all backups" and the older stuff vanishes.” (http://www.girr.org/mac_stuff/backups.html)
    *TechTool Pro Directory Protection*
    This disk utility feature creates backup copies of your system directories. Obviously these directories are changing all the time. So, depending on how it is configured, these backup files will be changing as well which is interpreted by Time Machine as new data to backup. Excluding the folder these backups are stored in will eliminate this effect.
    *Backups WAY Too Large*
    If an initial full backup or subsequent incremental backup is tens or hundreds of Gigs larger than expected, check to see that all unwanted external hard disks are still excluded from Time Machine backups.
    This includes the Time Machine backup drive ITSELF. Normally, Time Machine is set to exclude itself by default. But on rare occasions it can forget. When your backup begins, Time Machine mounts the backup on your desktop. (For Time Capsule users it appears as a white drive icon labeled something like “Backup of (your computer)”.) If, while it is mounted, it does not show up in the Time Machine Prefs “Do not back up” list, then Time Machine will attempt to back ITSELF up. If it is not listed while the drive is mounted, then you need to add it to the list.
    *FileVault / Boot Camp / iDisk Syncing*
    Note: Leopard has changed the way it deals with FileVault disk images, so it is not necessary to exclude your Home folder if you have FileVault activated. Additionally, Time Machine ignores Boot Camp partitions as the manner in which they are formatted is incompatible. Finally, if you have your iDisk Synced to your desktop, it is not necessary to exclude the disk image file it creates as that has been changed to a sparsebundle as well in Leopard.
    Let us know if any of this helps.
    Cheers!

Maybe you are looking for

  • DVD Player gets stuck on some discs

    I'm not sure how to solve this, right now I'm just watching the DVDs on the TV (no problems on the TV) Some discs in a few Star Trek series I bought do not work on the computer. When I put them in, they start in the middle of the disc and play. The r

  • How to handle Integrated Configuration performance impact on AAE/Java AS

    Hi there, Recently I have moved  a configuration scenario from standard flow involving both ABAP and Java stacks, to Integrated Configuration usage. Undoubtedly, this will increase the load on AAE/Java stack. However, do you have link to some clear (

  • Variable - Current Year

    Is there anyway the report will display current fiscal year's data considering Fiscalyear is a user entry optional variable ....the user neednot enter the input for optional variable as it is its purpose but what settings need to be made so as the re

  • P67A-G43 (B3) shutting down

    Per subject, I have been having problems with my system randomly shutting down. I purchased everything but the GTX 470 new a couple weeks ago. It will run from hours to several days, but the problem is always the same, it simply shuts down. No BSOD i

  • How can I turn on "speak" on highlighted text on iPhone 3GS?

    How can I add "speak" option to highlighted text on iPhone 3GS?