Z Index, layering images, need help (going crazy!)

Need some help on layering images. As you can see, the "polaroid" has tape on it - I want that tape to overlap the menu bar.
The menu bar is a grapic (there is a slight gradient to it) and on top of it are the actual menu graphics.  If I remove the menu graphics, the photo overlaps fine.  But if I insert the menu graphics, they lie on top of the polaroid.  Thanks in advance for any help you can provide.
Gary
Here is the code for the page:
<h1>SanDiegoHomegrown.com</h1>
<img src="images/menuBar.gif" />
<ul id="menuBar">
   <li id="listen"><a href="songs.html">Listen</a></li>
  <li id="submit"><a href="submit.html">Submit Songs</a></li>
  <li id="seals"><a href="seals.html">Help the Seals</a></li>
  <li id="about"><a href="about.html">Our Story?</a></li>
  <li id="sponsors"><a href="sponsors.html">Sponsors</a></li>
</ul>
<div id="polaroid">
<img src="images/band2_polaroid.png" width="280" height="354" />
</div><!--polaroid-->
Here is the CSS:
#polaroid {
    height: 354px;
    width: 280px;
    padding-left: 50px;
    margin-top: -40px;
#menuBar {
    height: 30px;
    width: 960px;
    padding: 0px;
    font-family: "Courier New", Courier, monospace;
    list-style-type: none;
    position: absolute;
    display: block;
    background-repeat: no-repeat;
    margin-top: -30px;
#menuBar a {
    width: 175px;
    display: inline-block;
    color: #2F3032;
    text-align: left;
    vertical-align: 0%;
    margin: 0px;
    list-style-type: none;
    float: left;
    height: 35px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 10px;
    text-indent: -9999px;
#menuBar #listen {
    background-repeat: no-repeat;
    position: absolute;
    background-image: url(images/titles/listen_bar_orig.gif);
#menuBar #submit {
    background-image: url(images/titles/submit_bar_orig.gif);
    background-repeat: no-repeat;
    position: absolute;
    margin-left: 150px;
    width: 200px;
    z-index: 1;
#menuBar #seals {
    background-image: url(images/titles/seals_bar_orig.gif);
    background-repeat: no-repeat;
    position: absolute;
    margin-left: 375px;
    width: 225px;
#menuBar #about {
    background-image: url(images/titles/about_bar_orig.gif);
    background-repeat: no-repeat;
    position: absolute;
    margin-left: 625px;
#menuBar #sponsors {
    background-image: url(images/titles/sponsor_bar_orig.gif);
    background-repeat: no-repeat;
    position: absolute;
    margin-left: 800px;

Auggh, just figured it out.  The Polaroid needed to be relative positioning!

Similar Messages

  • Need help, going crazy trying to make decision

    If anyone could help with the basics I would be most grateful. Looking for 40"-42" LCD HDTV 1080p.
    First I have noticed the refresh rate of 60Hz and 120Hz on a lot of TV's but I ran across one today that read 600Hz.  Is that a misprint or something that is specific to a certain type of TV? 
    Also, how important is a brand name?  Lets say Sanyo, Visio, Samsung, Sharp ect.  I have read and heard that Sony and Panasonic are good brands.
    Anyway, any help or advice would be greatly appreciated.  I hate spending this much money on something and not know any more about it that I do. 
    Thanks,
    Torch

    Torch wrote:
    If anyone could help with the basics I would be most grateful. Looking for 40"-42" LCD HDTV 1080p.
    First I have noticed the refresh rate of 60Hz and 120Hz on a lot of TV's but I ran across one today that read 600Hz.  Is that a misprint or something that is specific to a certain type of TV? 
    If you saw a LCD with a 600hz refresh rate it was a misprint. Did you see this one LG 55"?Only TV's with a 600hz refresh rates are Plasmas. Common refresh rates for LCD's are 60, 120 and 240. What you get is personal preference but the higher refresh is mostly marketing gimmicks.
    Also, how important is a brand name?  Lets say Sanyo, Visio, Samsung, Sharp ect.  I have read and heard that Sony and Panasonic are good brands.
    Brand names are very important if you want a quality display and one that will last. Your best manufactures for both LCD and Plasmas are Panasonic, LG, Samsung and Sharp. Sony is NOT a good brand. Their quality has seriously went into the toilet in the past several years.
    Anyway, any help or advice would be greatly appreciated.  I hate spending this much money on something and not know any more about it that I do. 
    Thanks,
    Torch
    Responses in red

  • Header with 3 backgroud images, need help

    Hi! I'm learning Dreamweaver CC atm, and i am confused in building my header, i need help, if you got time for a beginner.
    First, i made a Wrapper Div, added an header div inside that include 3 more div. Each of those 3 div inside my header have a backgroud image: left side, middle side and right side. They are both relative, left and right have a fixed size. The right one float right of the screen. I have trouble with the middle div: it's a 1px width backgroup that reapeat on x. I cant find the way to make it reapeat up to the right div. How can i do it?
    I want my page width to adjust to the user screen.
    (sorry for my bad english, second language )
    Thx for your time and help!

    Copy & paste this code into a new, blank document.  SaveAs test.html and preview in browsers.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5, Responsive Header</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
    <style>
        /**put this into your CSS Reset**/
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
    #wrapper {width: 98%; margin:0 auto}
    header {
        width: 100%;
        margin: 0 auto;
        min-height: 50px;
        color: #FFF;
        text-align: center;
    #col-1 {
        width: 10%;
        float: left;
        background: #333;
        min-height: 50px;
    #col-2 {
        float: left;
        width: 80%;
        background: #A200A2;
        min-height: 50px;
    #col-3 {
        width: 10%;
        float: left;
        background: #333;
        min-height: 50px;
    .gradient {
    background: #000333;
    background: -moz-linear-gradient(left,  #000333 0%, #a200a2 16%, #a200a2 84%, #000333 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,#000333), color-stop(16%,#a200a2), color-stop(84%,#a200a2), color-stop(100%,#000333));
    background: -webkit-linear-gradient(left,  #000333 0%,#a200a2 16%,#a200a2 84%,#000333 100%);
    background: -o-linear-gradient(left,  #000333 0%,#a200a2 16%,#a200a2 84%,#000333 100%);
    background: -ms-linear-gradient(left,  #000333 0%,#a200a2 16%,#a200a2 84%,#000333 100%);
    background: linear-gradient(to right,  #000333 0%,#a200a2 16%,#a200a2 84%,#000333 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000333', endColorstr='#000333',GradientType=1 );
    </style>
    </head>
    <body>
    <div id="wrapper">
    <h3>WITH FLOATED DIVS</h3>
    <header>
    <div id="col-1">10%</div>
    <div id="col-2">80%</div>
    <div id="col-3">10%</div>
    </header>
    <h3>WITH CSS BACKGROUND GRADIENT</h3>
    <header class="gradient">
    <h3>Heading 3</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis.  Vestibulum luctus mauris sed sem dapibus luctus.</p>
    </header>
    </div>
    </body>
    </html>
    Nancy O.

  • Spotlight not indexing iPhoto Keywords - need help

    Spotlight appears to be working for everything else but will not index iPhoto (version 7.0.1) keywords. When I run in Terminal:
    mdimport -d1 Pictures/
    I get the following results. The second line would seem to indicate something not going as it should, but then I don't know how it should behave:
    *2007-11-11 21:11:52.978 mdimport[1285:10b] Imported '/Users/akulberg/Pictures' of type 'public.folder' with no plugIn.**
    *2007-11-11 21:11:53.097 mdimport[1285:10b] Imported '/Users/akulberg/Pictures/iPhoto Library' of type 'dyn.ah62d4qmuhk3d44nurvva' with no plugIn.**
    2007-11-11 21:11:53.114 mdimport[1285:10b] Imported '/Users/akulberg/Pictures/palmOne Photos' of type 'public.folder' with no plugIn.
    2007-11-11 21:11:53.117 mdimport[1285:10b] Imported '/Users/akulberg/Pictures/palmOne Photos/Alexeis Treo' of type 'public.folder' with no plugIn.
    2007-11-11 21:11:53.120 mdimport[1285:10b] Imported '/Users/akulberg/Pictures/palmOne Photos/Alexeis Treo/Expansion Card 4DE5' of type 'public.folder' with no plugIn.
    2007-11-11 21:11:53.135 mdimport[1285:10b] Imported '/Users/akulberg/Pictures/palmOne Photos/Alexeis Treo/Internal' of type 'public.folder' with no plugIn.
    2007-11-11 21:11:53.253 mdimport[1285:10b] Imported '/Users/akulberg/Pictures/palmOne Photos/Alexeis Treo/Internal/Photo011707001.jpg' of type 'public.jpeg' with plugIn /System/Library/Spotlight/Image.mdimporter.
    2007-11-11 21:11:53.256 mdimport[1285:10b] Imported '/Users/akulberg/Pictures/palmOne Photos/Alexeis Treo/Internal/Photo011707002.jpg' of type 'public.jpeg' with plugIn /System/Library/Spotlight/Image.mdimporter.
    2007-11-11 21:11:53.261 mdimport[1285:10b] Imported '/Users/akulberg/Pictures/palmOne Photos/Alexeis Treo/Internal/Photo020407001.jpg' of type 'public.jpeg' with plugIn /System/Library/Spotlight/Image.mdimporter.
    2007-11-11 21:11:53.265 mdimport[1285:10b] Imported '/Users/akulberg/Pictures/palmOne Photos/Alexeis Treo/Internal/Photo020407002.jpg' of type 'public.jpeg' with plugIn /System/Library/Spotlight/Image.mdimporter.
    2007-11-11 21:11:53.269 mdimport[1285:10b] Imported '/Users/akulberg/Pictures/palmOne Photos/Alexeis Treo/Internal/Photo020407003.jpg' of type 'public.jpeg' with plugIn /System/Library/Spotlight/Image.mdimporter.
    2007-11-11 21:11:53.342 mdimport[1285:10b] Imported '/Users/akulberg/Pictures/palmOne Photos/Alexeis Treo/Internal/Photo032507001.jpg' of type 'public.jpeg' with plugIn /System/Library/Spotlight/Image.mdimporter.
    2007-11-11 21:11:53.504 mdimport[1285:10b] Imported '/Users/akulberg/Pictures/palmOne Photos/Alexeis Treo/Internal/Photo061106001.jpg' of type 'public.jpeg' with plugIn /System/Library/Spotlight/Image.mdimporter.
    2007-11-11 21:11:53.531 mdimport[1285:10b] Imported '/Users/akulberg/Pictures/palmOne Photos/Alexeis Treo/Internal/Photo061106002.jpg' of type 'public.jpeg' with plugIn /System/Library/Spotlight/Image.mdimporter.
    2007-11-11 21:11:53.541 mdimport[1285:10b] Imported '/Users/akulberg/Pictures/palmOne Photos/Alexeis Treo/Internal/Photo061507001.jpg' of type 'public.jpeg' with plugIn /System/Library/Spotlight/Image.mdimporter.
    2007-11-11 21:11:53.568 mdimport[1285:10b] Imported '/Users/akulberg/Pictures/palmOne Photos/Alexeis Treo/Internal/Photo071306001.jpg' of type 'public.jpeg' with plugIn /System/Library/Spotlight/Image.mdimporter.
    2007-11-11 21:11:53.572 mdimport[1285:10b] Imported '/Users/akulberg/Pictures/palmOne Photos/Alexeis Treo/Internal/Photo071306002.jpg' of type 'public.jpeg' with plugIn /System/Library/Spotlight/Image.mdimporter.
    2007-11-11 21:11:53.658 mdimport[1285:10b] Imported '/Users/akulberg/Pictures/palmOne Photos/Alexeis Treo/Internal/Photo090406001.jpg' of type 'public.jpeg' with plugIn /System/Library/Spotlight/Image.mdimporter.
    2007-11-11 21:11:53.665 mdimport[1285:10b] Imported '/Users/akulberg/Pictures/Photo Booth' of type 'public.folder' with no plugIn.
    2007-11-11 21:11:53.685 mdimport[1285:10b] Imported '/Users/akulberg/Pictures/Photo Booth/Photo 1.jpg' of type 'public.jpeg' with plugIn /System/Library/Spotlight/Image.mdimporter.
    2007-11-11 21:11:53.712 mdimport[1285:10b] Imported '/Users/akulberg/Pictures/Photo Booth/Photo 2.jpg' of type 'public.jpeg' with plugIn /System/Library/Spotlight/Image.mdimporter.
    2007-11-11 21:11:53.719 mdimport[1285:10b] Imported '/Users/akulberg/Pictures/Photo Booth/Photo 3.jpg' of type 'public.jpeg' with plugIn /System/Library/Spotlight/Image.mdimporter.
    2007-11-11 21:11:53.726 mdimport[1285:10b] Imported '/Users/akulberg/Pictures/Photo Booth/Photo 4.jpg' of type 'public.jpeg' with plugIn /System/Library/Spotlight/Image.mdimporter.
    2007-11-11 21:11:53.734 mdimport[1285:10b] Imported '/Users/akulberg/Pictures/Photo Booth/Photo 5.jpg' of type 'public.jpeg' with plugIn /System/Library/Spotlight/Image.mdimporter.
    2007-11-11 21:11:53.739 mdimport[1285:10b] Imported '/Users/akulberg/Pictures/Photo Booth/Photo 6.jpg' of type 'public.jpeg' with plugIn /System/Library/Spotlight/Image.mdimporter.
    2007-11-11 21:11:53.770 mdimport[1285:10b] Imported '/Users/akulberg/Pictures/Photo Booth/Photo 7.jpg' of type 'public.jpeg' with plugIn /System/Library/Spotlight/Image.mdimporter.
    2007-11-11 21:11:53.778 mdimport[1285:10b] Imported '/Users/akulberg/Pictures/Photo Booth/Photo 8.jpg' of type 'public.jpeg' with plugIn /System/Library/Spotlight/Image.mdimporter.
    2007-11-11 21:11:53.801 mdimport[1285:10b] Imported '/Users/akulberg/Pictures/Photo Booth/Photo 9.jpg' of type 'public.jpeg' with plugIn /System/Library/Spotlight/Image.mdimporter.
    2007-11-11 21:11:53.809 mdimport[1285:10b] Imported '/Users/akulberg/Pictures/Photo Booth/Recents.plist' of type 'com.apple.property-list' with no plugIn.
    Also, running mdimport -r "/System/Library/Spotlight/iPhoto.mdimporter" in Terminal does not return any results (or any errors).
    I have checked my library for any comments/descriptions with any line breaks in them and can not find any. I have deleted and rebuilt the spotlight indexes. I have added Pictures to the privacy section of spotlight then put it back. I have insured that iPhoto.mdimporter is the version off the the Leopard installation disc. I have checked that iPhoto.ipspot contains the correct path to AlbumData.xml.
    Any help or ideas on how to troubleshoot would be greatly appreciated. Thanks,

    #######:~ Nicolas$ mdimport -d1 Pictures/
    2007-12-19 22:54:23.098 mdimport[705:10b] Imported '/Users/Nicolas/Pictures' of type 'public.folder' with no plugIn.
    2007-12-19 22:54:23.108 mdimport[705:10b] Imported '/Users/Nicolas/Pictures/iPhoto Library' of type 'dyn.ah62d4qmuhk3d44nurvva' with no plugIn.
    #######:~ Nicolas$ mdimport -d1 Pictures/iPhoto\ Library/AlbumData.xml
    2007-12-19 22:54:34.190 mdimport[706:10b] Imported '/Users/Nicolas/Pictures/iPhoto Library/AlbumData.xml' of type 'public.xml' with plugIn /System/Library/Spotlight/RichText.mdimporter.
    #######:~ Nicolas$ mdimport -d1 Pictures/
    2007-12-19 23:02:11.798 mdimport[710:10b] Imported '/Users/Nicolas/Pictures' of type 'public.folder' with no plugIn.
    2007-12-19 23:02:11.807 mdimport[710:10b] Imported '/Users/Nicolas/Pictures/iPhoto Library' of type 'dyn.ah62d4qmuhk3d44nurvva' with no plugIn.
    #######:~ Nicolas$ mdimport -d4 Pictures/
    (Info) ImportPluginLoading: loading sniffer '/Library/Spotlight/AppleWorks.mdimporter/' for type com.apple.appleworks.cwk
    (Info) ImportPluginLoading: loading sniffer '/Library/Spotlight/AppleWorks.mdimporter/' for type com.apple.appleworks.cws
    (Info) ImportPluginLoading: loading sniffer '/Library/Spotlight/GBSpotlightImporter.mdimporter/' for type com.apple.garageband.project
    (Info) ImportPluginLoading: loading sniffer '/Library/Spotlight/GBSpotlightImporter.mdimporter/' for type com.apple.garageband.template.magic
    (Info) ImportPluginLoading: loading sniffer '/Library/Spotlight/iWeb.mdimporter/' for type com.apple.iweb.sites
    (Info) ImportPluginLoading: loading sniffer '/Library/Spotlight/iWeb.mdimporter/' for type com.apple.iweb.webtemplate
    (Info) ImportPluginLoading: loading sniffer '/Library/Spotlight/Keynote.mdimporter/' for type com.apple.iwork.keynote.key
    (Info) ImportPluginLoading: loading sniffer '/Library/Spotlight/Keynote.mdimporter/' for type com.apple.keynote.key
    (Info) ImportPluginLoading: loading sniffer '/Library/Spotlight/Keynote.mdimporter/' for type com.apple.iwork.keynote.kth
    (Info) ImportPluginLoading: loading sniffer '/Library/Spotlight/Microsoft Entourage.mdimporter/' for type com.microsoft.entourage.virtual.event
    (Info) ImportPluginLoading: loading sniffer '/Library/Spotlight/Microsoft Entourage.mdimporter/' for type com.microsoft.entourage.virtual.contact
    (Info) ImportPluginLoading: loading sniffer '/Library/Spotlight/Microsoft Entourage.mdimporter/' for type com.microsoft.entourage.virtual.group
    (Info) ImportPluginLoading: loading sniffer '/Library/Spotlight/Microsoft Entourage.mdimporter/' for type com.microsoft.entourage.virtual.message
    (Info) ImportPluginLoading: loading sniffer '/Library/Spotlight/Microsoft Entourage.mdimporter/' for type com.microsoft.entourage.virtual.note
    (Info) ImportPluginLoading: loading sniffer '/Library/Spotlight/Microsoft Entourage.mdimporter/' for type com.microsoft.entourage.virtual.task
    (Info) ImportPluginLoading: loading sniffer '/Library/Spotlight/Microsoft Office.mdimporter/' for type com.microsoft.word.doc
    (Info) ImportPluginLoading: loading sniffer '/Library/Spotlight/Microsoft Office.mdimporter/' for type com.microsoft.excel.xls
    (Info) ImportPluginLoading: loading sniffer '/Library/Spotlight/Microsoft Office.mdimporter/' for type com.microsoft.powerpoint.ppt
    (Info) ImportPluginLoading: loading sniffer '/Library/Spotlight/Numbers.mdimporter/' for type com.apple.iwork.numbers.numbers
    (Info) ImportPluginLoading: loading sniffer '/Library/Spotlight/Numbers.mdimporter/' for type com.apple.iwork.numbers.template
    (Info) ImportPluginLoading: loading sniffer '/Library/Spotlight/Pages.mdimporter/' for type com.apple.iwork.pages.pages
    (Info) ImportPluginLoading: loading sniffer '/Library/Spotlight/Pages.mdimporter/' for type com.apple.iwork.pages.template
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Application.mdimporter/' for type com.apple.application-bundle
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Application.mdimporter/' for type com.apple.application-file
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Archives.mdimporter/' for type public.zip-archive
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Archives.mdimporter/' for type public.cpio-archive
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Archives.mdimporter/' for type com.apple.bom-compressed-cpio
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Archives.mdimporter/' for type com.pkware.zip-archive
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Archives.mdimporter/' for type org.gnu.gnu-zip-tar-archive
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Archives.mdimporter/' for type public.tar-archive
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Audio.mdimporter/' for type public.mp3
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Audio.mdimporter/' for type public.aifc-audio
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Audio.mdimporter/' for type public.aiff-audio
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Audio.mdimporter/' for type com.digidesign.sd2-audio
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Audio.mdimporter/' for type com.microsoft.waveform-audio
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Audio.mdimporter/' for type public.ulaw-audio
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Audio.mdimporter/' for type public.au-audio
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Audio.mdimporter/' for type com.apple.coreaudio-format
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Automator.mdimporter/' for type com.apple.automator-workflow
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Bookmarks.mdimporter/' for type com.apple.safari.bookmark
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Bookmarks.mdimporter/' for type com.apple.safari.history
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Chat.mdimporter/' for type com.apple.ichat.ichat
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Chat.mdimporter/' for type com.apple.ichat.transcript
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Font.mdimporter/' for type public.font
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Font.mdimporter/' for type public.truetype-font
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Font.mdimporter/' for type com.adobe.postscript-font
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Font.mdimporter/' for type com.apple.truetype-datafork-suitcase-font
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Font.mdimporter/' for type public.opentype-font
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Font.mdimporter/' for type public.truetype-ttf-font
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Font.mdimporter/' for type public.truetype-collection-font
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Font.mdimporter/' for type com.apple.font-suitcase
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Font.mdimporter/' for type com.adobe.postscript-lwfn-font
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Font.mdimporter/' for type com.adobe.postscript-pfb-font
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Font.mdimporter/' for type com.adobe.postscript-pfa-font
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/iCal.mdimporter/' for type com.apple.ical.ics
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Image.mdimporter/' for type com.leica.raw-image
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Image.mdimporter/' for type com.panasonic.raw-image
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Image.mdimporter/' for type com.kodak.raw-image
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Image.mdimporter/' for type com.adobe.photoshop-image
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Image.mdimporter/' for type com.adobe.raw-image
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Image.mdimporter/' for type com.apple.icns
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Image.mdimporter/' for type com.apple.macpaint-image
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Image.mdimporter/' for type com.apple.pict
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Image.mdimporter/' for type com.apple.quicktime-image
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Image.mdimporter/' for type com.canon.cr2-raw-image
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Image.mdimporter/' for type com.canon.crw-raw-image
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Image.mdimporter/' for type com.compuserve.gif
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Image.mdimporter/' for type com.fuji.raw-image
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Image.mdimporter/' for type com.ilm.openexr-image
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Image.mdimporter/' for type com.kodak.flashpix-image
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Image.mdimporter/' for type com.konicaminolta.raw-image
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Image.mdimporter/' for type com.microsoft.bmp
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Image.mdimporter/' for type com.microsoft.ico
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Image.mdimporter/' for type com.nikon.raw-image
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Image.mdimporter/' for type com.olympus.raw-image
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Image.mdimporter/' for type com.sgi.sgi-image
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Image.mdimporter/' for type com.sony.raw-image
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Image.mdimporter/' for type com.truevision.tga-image
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Image.mdimporter/' for type public.jpeg
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Image.mdimporter/' for type public.jpeg-2000
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Image.mdimporter/' for type public.png
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Image.mdimporter/' for type public.radiance
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Image.mdimporter/' for type public.tiff
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Image.mdimporter/' for type public.xbitmap-image
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/iPhoto.mdimporter/' for type com.apple.iphoto.ipspot
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Mail.mdimporter/' for type com.apple.mail.emlx
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/Mail.mdimporter/' for type com.apple.mail.emlx.part
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/MIDI.mdimporter/' for type public.midi-audio
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/PDF.mdimporter/' for type com.adobe.pdf
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/PS.mdimporter/' for type com.adobe.postscript
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/PS.mdimporter/' for type com.adobe.encapsulated-postscript
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/QuartzComposer.mdimporter/' for type com.apple.quartz-composer-composition
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/QuickTime.mdimporter/' for type com.apple.quicktime-movie
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/QuickTime.mdimporter/' for type public.mpeg-4
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/QuickTime.mdimporter/' for type com.apple.protected-mpeg-4-audio
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/QuickTime.mdimporter/' for type com.apple.protected-mpeg-4-video
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/QuickTime.mdimporter/' for type public.mpeg-4-audio
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/QuickTime.mdimporter/' for type public.3gpp
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/QuickTime.mdimporter/' for type public.3gpp2
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/QuickTime.mdimporter/' for type public.mpeg
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/RichText.mdimporter/' for type public.rtf
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/RichText.mdimporter/' for type public.html
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/RichText.mdimporter/' for type public.xml
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/RichText.mdimporter/' for type public.plain-text
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/RichText.mdimporter/' for type com.apple.traditional-mac-plain-text
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/RichText.mdimporter/' for type com.apple.rtfd
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/RichText.mdimporter/' for type com.apple.webarchive
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/RichText.mdimporter/' for type org.oasis-open.opendocument.text
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/RichText.mdimporter/' for type org.openxmlformats.wordprocessingml.document
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/SystemPrefs.mdimporter/' for type com.apple.systempreference.prefpane
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/vCard.mdimporter/' for type public.vcard
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/vCard.mdimporter/' for type com.apple.addressbook.group
    (Info) ImportPluginLoading: loading sniffer '/System/Library/Spotlight/vCard.mdimporter/' for type com.apple.addressbook.person
    (Info) ImportPluginLoading: loading sniffer 'Spotlight/AdiumSpotlightImporter.mdimporter/ -- /Applications/Adium.app/Contents/Library/' for type com.adiumx.htmllog
    (Info) ImportPluginLoading: loading sniffer 'Spotlight/AdiumSpotlightImporter.mdimporter/ -- /Applications/Adium.app/Contents/Library/' for type com.adiumx.xmllog
    2007-12-19 23:02:17.511 mdimport[711:10b] Imported '/Users/Nicolas/Pictures' of type 'public.folder' with no plugIn.
    2007-12-19 23:02:17.529 mdimport[711:10b] Attributes: {
    "_kMDItemFinderLabel" = <null>;
    "comapple_metadatamodtime" = 218820564;
    kMDItemAlternateNames = (
    Pictures
    kMDItemContentCreationDate = 2007-11-15 15:56:44 +0100;
    kMDItemContentModificationDate = 2007-12-08 16:29:24 +0100;
    kMDItemContentType = "public.folder";
    kMDItemContentTypeTree = (
    "public.folder",
    "public.directory",
    "public.item"
    kMDItemDisplayName = {
    "" = Pictures;
    da = Billeder;
    de = Bilder;
    es = "Im\U00e1genes";
    fi = Kuvat;
    fr = Images;
    it = Immagini;
    ja = "\U30d4\U30af\U30c1\U30e3";
    ko = "\Uadf8\Ub9bc";
    nb = Bilder;
    nl = Afbeeldingen;
    pl = Obrazki;
    pt = Imagens;
    "pt-PT" = Imagens;
    ru = "\U0418\U0437\U043e\U0431\U0440\U0430\U0436\U0435\U043d\U0438\U044f";
    sv = Bilder;
    "zh-Hans" = "\U56fe\U7247";
    "zh-Hant" = "\U5716\U7247";
    kMDItemKind = {
    "" = Folder;
    da = Mappe;
    de = Ordner;
    es = Carpeta;
    fi = Kansio;
    fr = Dossier;
    it = Cartella;
    ja = "\U30d5\U30a9\U30eb\U30c0";
    ko = "\Ud3f4\Ub354";
    nb = Mappe;
    nl = Map;
    pl = katalog;
    pt = Pasta;
    "pt-PT" = Pasta;
    ru = "\U041f\U0430\U043f\U043a\U0430";
    sv = Mapp;
    "zh-Hans" = "\U6587\U4ef6\U5939";
    "zh-Hant" = "\U6a94\U6848\U593e";
    2007-12-19 23:02:17.551 mdimport[711:10b] Imported '/Users/Nicolas/Pictures/iPhoto Library' of type 'dyn.ah62d4qmuhk3d44nurvva' with no plugIn.
    2007-12-19 23:02:17.552 mdimport[711:10b] Attributes: {
    "_kMDItemFinderLabel" = <null>;
    "comapple_metadatamodtime" = 219793150;
    kMDItemContentCreationDate = 2007-12-07 21:47:40 +0100;
    kMDItemContentModificationDate = 2007-12-19 22:39:10 +0100;
    kMDItemContentType = "dyn.ah62d4qmuhk3d44nurvva";
    kMDItemContentTypeTree = (
    "com.apple.package",
    "public.directory",
    "public.item"
    kMDItemDisplayName = {
    "" = "iPhoto Library";
    kMDItemKind = {
    "" = "iPhoto Library";
    }

  • Text index search issue -- need help

    Hi,
    We have created a text index using the below script. This is working fine and we are able to retrieve data when we do a search on this with 'contains' clause.
    CREATE INDEX ITEM_TXT_IDX ON ITEM
    (ITEM_NAME)
    INDEXTYPE IS CTXSYS.CONTEXT;However now the problem is we are not able to search with special characters.
    when we perform search with below query it doesnt retrieve any record. i guess when we search with special character using text index, it ignores the special characters and performs search
    SELECT * FROM item
    WHERE contains(item_name, 'AGREE NATURE BALANCED NRML LIQ 300 ML (#', 1) > 0 the below query retrieves record fine as it doesnt have any special character search.
    SELECT * FROM item
    WHERE contains(item_name, 'AGREE NATURE BALANCED NRML LIQ 300 ML', 1) > 0can anyone pls help?

    You need to escape the special characters by either putting \ in front of each special character or putting {} around each token containing special characters. That will cause the contains query to view them as ordinary characters instead of attributing special meaning to them. However, since, by default, they are not tokenized and indexed, they will be ignored and your search will find a string with those characters and a string without those characters. If you want to be able to search for the actual characters, then you need to set them as printjoins in a lexer and use that lexer as a parameter in your index creation. You can see what has been tokenized and indexed by selecting from the token_text column of the dr$your_index_name$i domain index table after index creation. Please see the demonstration below.
    SCOTT@orcl_11gR2> -- test environment:
    SCOTT@orcl_11gR2> CREATE TABLE item
      2    (item_name  VARCHAR2 (60))
      3  /
    Table created.
    SCOTT@orcl_11gR2> INSERT ALL
      2  INTO item (item_name) VALUES ('AGREE NATURE BALANCED NRML LIQ 300 ML (#')
      3  INTO item (item_name) VALUES ('AGREE NATURE BALANCED NRML LIQ 300 ML')
      4  INTO item (item_name) VALUES ('OTHER DATA')
      5  SELECT * FROM DUAL
      6  /
    3 rows created.
    SCOTT@orcl_11gR2> -- without printjoins:
    SCOTT@orcl_11gR2> CREATE INDEX ITEM_TXT_IDX
      2  ON ITEM (ITEM_NAME)
      3  INDEXTYPE IS CTXSYS.CONTEXT
      4  /
    Index created.
    SCOTT@orcl_11gR2> SELECT token_text FROM dr$item_txt_idx$i
      2  /
    TOKEN_TEXT
    300
    AGREE
    BALANCED
    DATA
    LIQ
    ML
    NATURE
    NRML
    OTHER
    9 rows selected.
    SCOTT@orcl_11gR2> SELECT * FROM item
      2  WHERE  contains
      3             (item_name,
      4              'AGREE NATURE BALANCED NRML LIQ 300 ML \(\#',
      5              1) > 0
      6  /
    ITEM_NAME
    AGREE NATURE BALANCED NRML LIQ 300 ML (#
    AGREE NATURE BALANCED NRML LIQ 300 ML
    2 rows selected.
    SCOTT@orcl_11gR2> SELECT * FROM item
      2  WHERE  contains
      3             (item_name,
      4              'AGREE NATURE BALANCED NRML LIQ 300 ML {(#}',
      5              1) > 0
      6  /
    ITEM_NAME
    AGREE NATURE BALANCED NRML LIQ 300 ML (#
    AGREE NATURE BALANCED NRML LIQ 300 ML
    2 rows selected.
    SCOTT@orcl_11gR2> -- with printjoins:
    SCOTT@orcl_11gR2> BEGIN
      2    CTX_DDL.CREATE_PREFERENCE ('item_lexer', 'BASIC_LEXER');
      3    CTX_DDL.SET_ATTRIBUTE ('item_lexer', 'PRINTJOINS', '(#');
      4  END;
      5  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> DROP INDEX item_txt_idx
      2  /
    Index dropped.
    SCOTT@orcl_11gR2> CREATE INDEX ITEM_TXT_IDX
      2  ON ITEM (ITEM_NAME)
      3  INDEXTYPE IS CTXSYS.CONTEXT
      4  PARAMETERS ('LEXER  item_lexer')
      5  /
    Index created.
    SCOTT@orcl_11gR2> SELECT token_text FROM dr$item_txt_idx$i
      2  /
    TOKEN_TEXT
    300
    AGREE
    BALANCED
    DATA
    LIQ
    ML
    NATURE
    NRML
    OTHER
    10 rows selected.
    SCOTT@orcl_11gR2> SELECT * FROM item
      2  WHERE  contains
      3             (item_name,
      4              'AGREE NATURE BALANCED NRML LIQ 300 ML \(\#',
      5              1) > 0
      6  /
    ITEM_NAME
    AGREE NATURE BALANCED NRML LIQ 300 ML (#
    1 row selected.
    SCOTT@orcl_11gR2> SELECT * FROM item
      2  WHERE  contains
      3             (item_name,
      4              'AGREE NATURE BALANCED NRML LIQ 300 ML {(#}',
      5              1) > 0
      6  /
    ITEM_NAME
    AGREE NATURE BALANCED NRML LIQ 300 ML (#
    1 row selected.
    SCOTT@orcl_11gR2>

  • Need HELP with crazy rendering /  saving problem

    I am finishing up a project that I need to deliver on DVD in the next couple of days.
    Suddenly, something strange is happening.
    There are several audio clips that have some filters applied to them. When I play them in the timeline, they sound fine, until I render them.
    Then, the audio in those clips gets muddy and way quiet.
    When I click off the filter, the volume comes back.
    Then, if I click on the filter again, the filtered settings are applied and it sounds fine.
    However, as soon as I render, it all goes wacky again.
    This is making me nervous, as the deadline is looming.
    THanks for any help.

    What are your timeline settings for audio? What are the filters for? If you export a small section as a test, does the audio sound bad when you play back the quicktime?
    I just remembered - when I experienced this before, it was the result of audio that was inverted in one channel, so as long as they came out of separate speakers, there was no problem, but when they were mixed, they canceled each other out resulting in severely decreased volume.
    As my problem was just with Voice Over, I simply deleted one of the audio channels, then doubled the remaining one and panned it properly.
    Dunno if that's your issue, but you might investigate that...
    Patrick

  • Need help with crazy custom calculations code in Acrobat XI pro

    Im trying to calculate some text feilds together and just cant figure it out.  I have two text feild boxes that I would input certain numbers to calculate in, Textfeild D5 and D6,  once the user supplies the numbers in the D5 and D6   I need a text feild (D9) to calculate and produce a number thats used in another calculation. Any help would be greatly appriciated. Im good at HTML and CSS but only begining with javascript. Im using acrobat XI pro and I put this code in the custom javascript area within the text feld "D9" properties.
    var Dsix = +getField("D6").value;
    var Dfive = +getFeild("D5").value;
    var B2 = 0.37;
    var B3 = 0.45;
    var B4 = 0.53;
    if (Dsix = 15){
    D9.value = B2*Dfive;
    if (Dsix = 30){
    D9.value = B3*Dfive;
    if (Dsix = 45){
    D9.value = B4*Dfive;

    Well thats makes since but unfortunitly it didnt work. The green text feild D9 is where im placing code at. they will be hiiden feilds. the red outlined text feilds are all input feilds. seconds is D6 and nozzels is D5.

  • Problem importing a vbox gold image, need help

    Hi ppl, I finally got VDI3 up and running, following the installation instructions
    on the wiki page, the servers seems to be up:
    venezuela - Sun xVM VirtualBox Desktop Provider Summary
    Status: Desktop Provider Status Image OK
    Pools: TestPool
    Hosts:
    CPU Usage:0%
    Total Memory:3.87 GB
    Memory Usage:95%
    Storage:
    Number of Storages: 1
    Total Capacity:75.32 GB
    Usage:12%
    General Information
    Connections:Enabled
    Desktop Assignments: Flexible
    Provider: venezuela
    Cloning Enabled
    Template: -     
    Clone Jobs Running: 0
    but when I try to import the image, copied from the xVM server to the vdi core
    secondary via nfs, it fails without any error that I can see:
    Importing Desktop      TestPool      12:21:41      12:21:41      Job Failed
    what should I start looking for to correct this?

    Hi Velithion ,
    After you import the desktop to VDI,you need to convert this desktop to a template.You can either use Admin UI
    or ./vda desktop-template <desktop-id> .This will convert the desktop to template.
    Now when you do pool settings,I mean defining the pool size,recycling,etc. there you can specify what template(in the drop down list) you want to use.
    (Note : Only the desktops which are converted to a template will be shown under this drop-down list)
    Also refer to
    http://wikis.sun.com/display/VDI3/How+to+Enable+Cloning+for+an+xVM+VirtualBox+Platform
    --Chirag                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Mavericks *****! Need help going back to 10.8

    Well I cant seem to get past the relentless imail, app store, preview issues of the lovely 10.9. The imail app since installing mavericks freezes up, will not show your message on the side of the pane, and wont open up messages to view. This is not all the time, but quite frequently. If you double click on a message to open up, it will make a febile attempt to, then shut off, and produce an error message. I already called support and they told me to reinstall, which I did. Worked for two days then back to having the same issues.
    This is both on my iMac and Air
    This is also affecting the other mac os apps. I cant even get preview to open up! I just tried to open up the app store and it wont even open. Ugh....this is terrible to say the least. I've tried about every **** thing I can think of and nothing is working. Our IT guy says I'm not the only one with severe issues relating to Mavericks. I feel like I'm back at the old windows days again.
    How can I look at my time machine backups and see which one has 10.8 on it so I can reinstall to replace of mavericks? I'm of course open to keeping this POS if I can resolve these new glitches.
    ANY help would be greatly appreciated!

    This is the error message imail is giving to me. Sorry its pretty long but I didnt want to miss any details
    Process:         Mail [1650]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         7.0 (1816)
    Build Info:      Mail-1816000000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [226]
    Responsible:     Mail [1650]
    User ID:         501
    Date/Time:       2013-12-03 11:52:52.223 -0700
    OS Version:      Mac OS X 10.9 (13A603)
    Report Version:  11
    Anonymous UUID:  928F59D9-65BF-876E-5427-43DB13EF319F
    Sleep/Wake UUID: 01D394E0-B185-4BF6-8876-38F4C232FD10
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '-[NSViewController loadView] could not load the "MessageView" nib.'
    abort() called
    terminating with uncaught exception of type NSException
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x00007fff8687141c __exceptionPreprocess + 172
    1   libobjc.A.dylib                     0x00007fff8528ce75 objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff868712cc +[NSException raise:format:] + 204
    3   AppKit                              0x00007fff81804507 -[NSViewController loadView] + 361
    4   AppKit                              0x00007fff81732748 -[NSViewController view] + 41
    5   Mail                                0x0000000109cb564f Mail + 370255
    6   Mail                                0x0000000109cb5512 Mail + 369938
    7   Mail                                0x0000000109cb514e Mail + 368974
    8   Mail                                0x0000000109cb4e27 Mail + 368167
    9   Mail                                0x0000000109cb482d Mail + 366637
    10  AppKit                              0x00007fff817f226b -[NSView _updateSuggestedContentRect] + 774
    11  AppKit                              0x00007fff81800df1 -[NSView _updateSuggestedContentRectForVisibleRectChange] + 219
    12  AppKit                              0x00007fff81800c87 -[NSScrollView(NSRulerSupport) _handleBoundsChangeForSubview:] + 331
    13  AppKit                              0x00007fff81800af4 -[NSView _postBoundsChangeNotification] + 136
    14  AppKit                              0x00007fff81800938 -[NSView translateOriginToPoint:] + 294
    15  AppKit                              0x00007fff816a7c7f -[NSClipView _immediateScrollToPoint:] + 2659
    16  AppKit                              0x00007fff816a71da -[NSClipView scrollToPoint:] + 237
    17  AppKit                              0x00007fff817ffd8e -[NSScrollView scrollClipView:toPoint:] + 203
    18  AppKit                              0x00007fff816abe39 -[NSClipView _scrollTo:animateScroll:flashScrollerKnobs:] + 1688
    19  AppKit                              0x00007fff816ab5bf -[NSClipView _reflectDocumentViewFrameChange] + 128
    20  AppKit                              0x00007fff8166ff3c -[NSView _postFrameChangeNotification] + 203
    21  AppKit                              0x00007fff81679712 -[NSView setFrameSize:] + 1586
    22  Mail                                0x0000000109c7bac4 Mail + 133828
    23  AppKit                              0x00007fff81679099 -[NSView setFrame:] + 294
    24  Mail                                0x0000000109caec6a Mail + 343146
    25  Mail                                0x0000000109cb4007 Mail + 364551
    26  Mail                                0x0000000109cb3e36 Mail + 364086
    27  Mail                                0x0000000109cb2cfd Mail + 359677
    28  Mail                                0x0000000109c7adb0 Mail + 130480
    29  Foundation                          0x00007fff885eec18 NSKeyValueNotifyObserver + 387
    30  Foundation                          0x00007fff8862be71 -[NSObject(NSKeyValueObservingPrivate) _notifyObserversForKeyPath:change:] + 1115
    31  AppKit                              0x00007fff816cac48 -[NSController _notifyObserversForKeyPath:change:] + 209
    32  AppKit                              0x00007fff817fc6a7 -[NSArrayController didChangeValuesForArrangedKeys:objectKeys:indexKeys:] + 53
    33  AppKit                              0x00007fff816caa88 -[NSArrayController setContent:] + 826
    34  Mail                                0x0000000109c789a3 Mail + 121251
    35  Foundation                          0x00007fff8862c6ce -[NSObject(NSKeyValueCoding) setValue:forKey:] + 389
    36  AppKit                              0x00007fff816d3f5d -[NSObjectParameterBinder _updateObject:observedController:observedKeyPath:context:] + 1298
    37  AppKit                              0x00007fff816caf68 -[NSObject(NSKeyValueBindingCreation) bind:toObject:withKeyPath:options:] + 652
    38  Mail                                0x0000000109ccbd6e Mail + 462190
    39  CoreFoundation                      0x00007fff8683ffcc __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
    40  CoreFoundation                      0x00007fff86733c5d _CFXNotificationPost + 2893
    41  Foundation                          0x00007fff885e84aa -[NSNotificationCenter postNotificationName:object:userInfo:] + 68
    42  Foundation                          0x00007fff8860e055 -[NSBlockOperation main] + 75
    43  Foundation                          0x00007fff885ed591 -[__NSOperationInternal _start:] + 631
    44  Foundation                          0x00007fff885ed23b __NSOQSchedule_f + 64
    45  libdispatch.dylib                   0x00007fff86ef52ad _dispatch_client_callout + 8
    46  libdispatch.dylib                   0x00007fff86efcf03 _dispatch_main_queue_callback_4CF + 333
    47  CoreFoundation                      0x00007fff867d8839 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
    48  CoreFoundation                      0x00007fff86793b14 __CFRunLoopRun + 1636
    49  CoreFoundation                      0x00007fff86793275 CFRunLoopRunSpecific + 309
    50  HIToolbox                           0x00007fff87016f0d RunCurrentEventLoopInMode + 226
    51  HIToolbox                           0x00007fff87016cb7 ReceiveNextEventCommon + 479
    52  HIToolbox                           0x00007fff87016abc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    53  AppKit                              0x00007fff8164228e _DPSNextEvent + 1434
    54  AppKit                              0x00007fff816418db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    55  AppKit                              0x00007fff816359cc -[NSApplication run] + 553
    56  AppKit                              0x00007fff81620803 NSApplicationMain + 940
    57  libdyld.dylib                       0x00007fff8a02a5fd start + 1
    58  ???                                 0x0000000000000001 0x0 + 1
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff8235f866 __pthread_kill + 10
    1   libsystem_pthread.dylib                 0x00007fff811ba35c pthread_kill + 92
    2   libsystem_c.dylib                       0x00007fff8cc0abba abort + 125
    3   libc++abi.dylib                         0x00007fff8641e141 abort_message + 257
    4   libc++abi.dylib                         0x00007fff86443abc default_terminate_handler() + 264
    5   libobjc.A.dylib                         0x00007fff8528d30d _objc_terminate() + 103
    6   libc++abi.dylib                         0x00007fff864413e1 std::__terminate(void (*)()) + 8
    7   libc++abi.dylib                         0x00007fff86441456 std::terminate() + 54
    8   libobjc.A.dylib                         0x00007fff8528d0b0 objc_terminate + 9
    9   libdispatch.dylib                       0x00007fff86ef52c1 _dispatch_client_callout + 28
    10  libdispatch.dylib                       0x00007fff86efcf03 _dispatch_main_queue_callback_4CF + 333
    11  com.apple.CoreFoundation                0x00007fff867d8839 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
    12  com.apple.CoreFoundation                0x00007fff86793b14 __CFRunLoopRun + 1636
    13  com.apple.CoreFoundation                0x00007fff86793275 CFRunLoopRunSpecific + 309
    14  com.apple.HIToolbox                     0x00007fff87016f0d RunCurrentEventLoopInMode + 226
    15  com.apple.HIToolbox                     0x00007fff87016cb7 ReceiveNextEventCommon + 479
    16  com.apple.HIToolbox                     0x00007fff87016abc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    17  com.apple.AppKit                        0x00007fff8164228e _DPSNextEvent + 1434
    18  com.apple.AppKit                        0x00007fff816418db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    19  com.apple.AppKit                        0x00007fff816359cc -[NSApplication run] + 553
    20  com.apple.AppKit                        0x00007fff81620803 NSApplicationMain + 940
    21  libdyld.dylib                           0x00007fff8a02a5fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff82360662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff86ef743d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff86ef7152 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff8235ba1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8235ad18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff86794315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff86793939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff86793275 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00007fff817e21ce _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00007fff811b9899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff811b972a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff811bdfc9 thread_start + 13
    Thread 3:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff8235ba1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8235ad18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff86794315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff86793939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff86793275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff8864c907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation                    0x00007fff8864c70b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x00007fff811b9899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff811b972a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff811bdfc9 thread_start + 13
    Thread 4:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff8235f9aa __select + 10
    1   com.apple.CoreFoundation                0x00007fff867dfd43 __CFSocketManager + 867
    2   libsystem_pthread.dylib                 0x00007fff811b9899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff811b972a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff811bdfc9 thread_start + 13
    Thread 5:: +[MFLibrary synchronouslyUpdateMessageFiles]  Dispatch queue: NSOperationQueue 0x608000021720
    0   libsystem_kernel.dylib                  0x00007fff8235f5da __open + 10
    1   com.apple.Foundation                    0x00007fff88656a50 _NSOpenFileDescriptor + 21
    2   com.apple.Foundation                    0x00007fff88656915 -[NSConcreteFileHandle initWithURL:flags:createMode:error:] + 113
    3   com.apple.Foundation                    0x00007fff88656868 -[NSConcreteFileHandle initWithPath:flags:createMode:error:] + 107
    4   com.apple.Foundation                    0x00007fff8865675f +[NSFileHandle fileHandleForUpdatingAtPath:] + 51
    5   com.apple.Mail.framework                0x00007fff88cecbad +[MFLibrary updateFileForMessage:] + 74
    6   com.apple.CoreFoundation                0x00007fff867b9d06 __53-[__NSArrayI enumerateObjectsWithOptions:usingBlock:]_block_invoke + 70
    7   com.apple.CoreFoundation                0x00007fff867b9c50 -[__NSArrayI enumerateObjectsWithOptions:usingBlock:] + 320
    8   com.apple.Mail.framework                0x00007fff88ccf914 +[MFLibrary synchronouslyUpdateMessageFiles] + 503
    9   com.apple.CoreFoundation                0x00007fff8675cdec __invoking___ + 140
    10  com.apple.CoreFoundation                0x00007fff8675cc54 -[NSInvocation invoke] + 308
    11  com.apple.MailCore                      0x00007fff8548bb74 -[MCMonitoredInvocation invoke] + 211
    12  com.apple.MailCore                      0x00007fff854ae808 -[MCThrowingInvocationOperation main] + 40
    13  com.apple.MailCore                      0x00007fff85452f08 -[_MCInvocationOperation main] + 332
    14  com.apple.Foundation                    0x00007fff885ed591 -[__NSOperationInternal _start:] + 631
    15  com.apple.Foundation                    0x00007fff885ed23b __NSOQSchedule_f + 64
    16  libdispatch.dylib                       0x00007fff86ef52ad _dispatch_client_callout + 8
    17  libdispatch.dylib                       0x00007fff86ef97ff _dispatch_async_redirect_invoke + 154
    18  libdispatch.dylib                       0x00007fff86ef52ad _dispatch_client_callout + 8
    19  libdispatch.dylib                       0x00007fff86ef709e _dispatch_root_queue_drain + 326
    20  libdispatch.dylib                       0x00007fff86ef8193 _dispatch_worker_thread2 + 40
    21  libsystem_pthread.dylib                 0x00007fff811baef8 _pthread_wqthread + 314
    22  libsystem_pthread.dylib                 0x00007fff811bdfb9 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff8235fe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff811baf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff811bdfb9 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff8235fe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff811baf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff811bdfb9 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff8235fe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff811baf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff811bdfb9 start_wqthread + 13
    Thread 9:: Dispatch queue: [MFLibrary writeQueue]
    0   libsystem_kernel.dylib                  0x00007fff82360392 fsync + 10
    1   libsqlite3.dylib                        0x00007fff883b2868 unixSync + 56
    2   libsqlite3.dylib                        0x00007fff88407064 pagerWalFrames + 1844
    3   libsqlite3.dylib                        0x00007fff883b2379 sqlite3PagerCommitPhaseOne + 793
    4   libsqlite3.dylib                        0x00007fff883a237e sqlite3BtreeCommitPhaseOne + 814
    5   libsqlite3.dylib                        0x00007fff8836b4b2 sqlite3VdbeHalt + 2690
    6   libsqlite3.dylib                        0x00007fff8839bd9b sqlite3VdbeExec + 72011
    7   libsqlite3.dylib                        0x00007fff8838940a sqlite3_step + 666
    8   libsqlite3.dylib                        0x00007fff8834cf38 sqlite3_exec + 440
    9   com.apple.Mail.framework                0x00007fff88cfcaaf +[MFLibrary executeBlock:isWriter:useTransaction:isPrivileged:] + 1530
    10  com.apple.Mail.framework                0x00007fff88ccff16 +[MFLibrary commitSynchronouslyPostingMessages:postFlags:postingOldFlagsByMessage:] + 644
    11  com.apple.Mail.framework                0x00007fff88d15303 __59-[MFLibraryStore async_setFlagsFromDictionary:forMessages:]_block_invoke + 435
    12  com.apple.Foundation                    0x00007fff8860e055 -[NSBlockOperation main] + 75
    13  com.apple.MailCore                      0x00007fff854ae564 -[MCTaskOperation main] + 642
    14  com.apple.Foundation                    0x00007fff885ed591 -[__NSOperationInternal _start:] + 631
    15  com.apple.Foundation                    0x00007fff885ed23b __NSOQSchedule_f + 64
    16  libdispatch.dylib                       0x00007fff86ef52ad _dispatch_client_callout + 8
    17  libdispatch.dylib                       0x00007fff86ef97ff _dispatch_async_redirect_invoke + 154
    18  libdispatch.dylib                       0x00007fff86ef52ad _dispatch_client_callout + 8
    19  libdispatch.dylib                       0x00007fff86ef709e _dispatch_root_queue_drain + 326
    20  libdispatch.dylib                       0x00007fff86ef8193 _dispatch_worker_thread2 + 40
    21  libsystem_pthread.dylib                 0x00007fff811baef8 _pthread_wqthread + 314
    22  libsystem_pthread.dylib                 0x00007fff811bdfb9 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff71309310  rcx: 0x00007fff55fa2e78  rdx: 0x0000000000000000
      rdi: 0x0000000000000707  rsi: 0x0000000000000006  rbp: 0x00007fff55fa2ea0  rsp: 0x00007fff55fa2e78
       r8: 0x00007fff86444ab4   r9: 0x00007fff8cc32900  r10: 0x0000000008000000  r11: 0x0000000000000206
      r12: 0x00007fff55fa3000  r13: 0x0000610000e64a80  r14: 0x0000000000000006  r15: 0x00007fff55fa2ee0
      rip: 0x00007fff8235f866  rfl: 0x0000000000000206  cr2: 0x000000010a188000
    Logical CPU:     0
    Error Code:      0x02000148
    Trap Number:     133
    Binary Images:
           0x109c5b000 -        0x109f4afff  com.apple.mail (7.0 - 1816) <E8B5953C-FD5C-3D3B-B481-34F23E45730A> /Applications/Mail.app/Contents/MacOS/Mail
           0x10a173000 -        0x10a177ffd  com.apple.audio.AppleHDAHALPlugIn (2.5.2 - 2.5.2fc2) <DEB558B7-BACF-3871-A021-B3A904F4FB44> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x10b9e8000 -        0x10b9eafff  libanonymous.2.so (170) <D1297C21-A57B-311E-9006-C3FB8689849A> /usr/lib/sasl2/libanonymous.2.so
           0x10b9f0000 -        0x10b9f2fff  libcrammd5.2.so (170) <940A42FC-C634-354E-AD74-691CD90A1427> /usr/lib/sasl2/libcrammd5.2.so
           0x10b9f8000 -        0x10b9fafff  apop.so (170) <79E840B4-6D30-3CBB-99D3-345D6C77D5DF> /usr/lib/sasl2/apop.so
           0x10b9ff000 -        0x10ba0ffff  dhx.so (170) <A9EBA1D4-8ED8-37BB-BA1E-263091EAF96E> /usr/lib/sasl2/dhx.so
           0x10ba1c000 -        0x10ba24fff  digestmd5WebDAV.so (170) <9DBE65CE-9B5C-37A3-8112-40F39BE3B5F8> /usr/lib/sasl2/digestmd5WebDAV.so
           0x10ba29000 -        0x10ba31ff7  libdigestmd5.2.so (170) <122C0383-F9B2-34D1-89AF-D317BC4D5164> /usr/lib/sasl2/libdigestmd5.2.so
           0x10ba36000 -        0x10ba3afff  libgssapiv2.2.so (170) <AA58D85E-916C-3B0B-959A-DCC58497D0F2> /usr/lib/sasl2/libgssapiv2.2.so
           0x10ba3f000 -        0x10ba41fff  login.so (170) <7D801D4E-A1A4-32FC-BF2E-9F25DB902523> /usr/lib/sasl2/login.so
           0x10ba45000 -        0x10ba4afff  libntlm.so (170) <18693B29-154F-339C-A329-4C42A43F6428> /usr/lib/sasl2/libntlm.so
           0x10ba4f000 -        0x10ba56fff  libotp.2.so (170) <D1C70F92-1C75-340B-AD53-0C2CD79144FF> /usr/lib/sasl2/libotp.2.so
           0x10ba5f000 -        0x10ba61fff  libplain.2.so (170) <E9C3B22A-5958-3869-B778-55948D1EC2B7> /usr/lib/sasl2/libplain.2.so
           0x10bb46000 -        0x10bb4afff  libpps.so (170) <9BAB4F91-A2DF-3F11-A2E4-8E353562ECC8> /usr/lib/sasl2/libpps.so
           0x10bb52000 -        0x10bb55ff7  mschapv2.so (170) <7B006E8A-BEB7-3004-9C16-134D37C077A5> /usr/lib/sasl2/mschapv2.so
           0x10bb5a000 -        0x10bb82ff6  com.apple.DirectoryService.PasswordServerFramework (10.9 - 36) <C36B818F-C1FE-3F3F-A01C-F4613F570D4D> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
           0x10bb98000 -        0x10bb9afff  pwauxprop.so (400) <924056F9-D203-3DAD-B78D-61439A2E6BE8> /usr/lib/sasl2/pwauxprop.so
           0x10bbc7000 -        0x10bbc9fff  shadow_auxprop.so (170) <2E0153C3-9D36-3496-8885-DE8B91838036> /usr/lib/sasl2/shadow_auxprop.so
           0x10bbce000 -        0x10bbd0fff  smb_nt.so (170) <903A6BA5-5B1F-305A-98EA-27BE757A7CFF> /usr/lib/sasl2/smb_nt.so
           0x10bbd5000 -        0x10bbd7fff  smb_ntlmv2.so (170) <15A0B3C1-DA72-3B4C-8234-EF24132FEB0B> /usr/lib/sasl2/smb_ntlmv2.so
           0x10bc09000 -        0x10bc10ff7  com.apple.SyncedDefaults (1.3 - 91.30) <FC5A4423-3D91-3A34-853A-C49971EEAE4E> /System/Library/PrivateFrameworks/SyncedDefaults.framework/SyncedDefaults
           0x10de1d000 -        0x10dfeefff  com.apple.audio.units.Components (1.9 - 1.9) <80991B19-4B07-3DBF-A4B3-597DA1AA65B2> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
           0x10e3be000 -        0x10e3c1fff  libspindump.dylib (161) <588EDDE0-B20A-3649-92B7-C2226EB237E8> /usr/lib/libspindump.dylib
           0x10e3c7000 -        0x10e3c8fff  com.apple.AddressBook.LocalSourceBundle (8.0 - 1365) <260EDDAA-A812-3097-BE14-A63EA4BEDD31> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x10e3da000 -        0x10e3deff7  com.apple.DirectoryServicesSource (8.0 - 1365) <2F2D5BAA-F006-3701-922C-37EF076DE3D1> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
           0x10e3e6000 -        0x10e432ff6  com.apple.AddressBook.CardDAVPlugin (10.9 - 424) <C5AC5902-39C2-3A08-9967-5EAA000228EE> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
           0x110073000 -        0x110074ffa +cl_kernels (???) <B0E68D48-B571-47F6-AD60-C9BE6FD5B5CD> cl_kernels
           0x110082000 -        0x110083ff9 +cl_kernels (???) <4CD9A8C4-2BE0-4E2F-9E9D-F9C4F96CAAD5> cl_kernels
           0x1101ec000 -        0x1101f0fff  com.apple.google.iaplugin (2.1 - 210) <43DBDADF-DE0F-3438-B67A-6C9F3AB3FD26> /System/Library/InternetAccounts/Google.iaplugin/Contents/MacOS/Google
           0x1101fc000 -        0x1102e2fef  unorm8_bgra.dylib (2.3.58) <9FF943D1-4EF7-36CA-852D-B61C2E554713> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x11033a000 -        0x11033affd +cl_kernels (???) <DABC631E-2FBE-4CD7-B615-E0DA592CB728> cl_kernels
           0x11033e000 -        0x11033efff +cl_kernels (???) <493FCD27-0960-4843-9186-028428CFAF12> cl_kernels
           0x110354000 -        0x110434ff7  unorm8_rgba.dylib (2.3.58) <DDD1AFEB-FD30-34D2-958A-823C3EFD649A> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib
           0x1105b8000 -        0x1105b8feb +cl_kernels (???) <A2589ECE-B718-4771-BB72-146713CFF090> cl_kernels
           0x1105d8000 -        0x1105d8fe7 +cl_kernels (???) <29391DA5-11F1-4813-9ED2-3A7AABECB971> cl_kernels
           0x11062e000 -        0x11062ffe6 +cl_kernels (???) <A845C45B-78A6-4B88-B944-D0C9B36B9AB4> cl_kernels
           0x110639000 -        0x11063afee +cl_kernels (???) <33AB0C84-55CE-4156-B734-3C9789084208> cl_kernels
           0x1107be000 -        0x1107befe7 +cl_kernels (???) <0B3D4D0C-1A73-41C6-911B-D32B472EA11C> cl_kernels
           0x110d30000 -        0x110d31fe4 +cl_kernels (???) <CB6B415F-0B85-43AC-82F8-190020394C44> cl_kernels
        0x7fff6afa2000 -     0x7fff6afd5817  dyld (239.3) <D1DFCF3F-0B0C-332A-BCC0-87A851B570FF> /usr/lib/dyld
        0x7fff808b3000 -     0x7fff808b4fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
        0x7fff80b57000 -     0x7fff80db8ff7  com.apple.imageKit (2.5 - 770) <33BCF627-EB1A-3CC1-98AB-2324B6DFB329> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff80db9000 -     0x7fff80dbafff  com.apple.AddressBook.ContactsData (8.0 - 1365) <61090508-4CC3-3F57-9B0C-D8527947D35D> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
        0x7fff80dbb000 -     0x7fff80de9ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff80dea000 -     0x7fff80fa2ff3  libicucore.A.dylib (511.25) <3ED7B656-416E-3071-AEC8-E85C90232F78> /usr/lib/libicucore.A.dylib
        0x7fff80fa3000 -     0x7fff80fbbff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff80fbc000 -     0x7fff80fc1ff7  com.apple.EmailAddressing (7.0 - 1816) <811B7A0A-5B01-364F-B916-E5B11BBB1DE1> /System/Library/PrivateFrameworks/EmailAddressing.framework/Versions/A/EmailAdd ressing
        0x7fff80fc2000 -     0x7fff80fe7ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff80fe8000 -     0x7fff81029fff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8102a000 -     0x7fff810b9ff7  com.apple.Metadata (10.7.0 - 800.12) <04486C95-3E49-36C4-89B6-925E925BB417> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff810ba000 -     0x7fff810e4ff7  libsandbox.1.dylib (278.10) <B4183FA8-F7E2-3301-8BF9-0EEFB793A5D5> /usr/lib/libsandbox.1.dylib
        0x7fff810e5000 -     0x7fff810e5fff  com.apple.AOSMigrate (1.0 - 1) <ABA8F3F2-BC96-3F89-AAF4-1AA459A0BCBD> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
        0x7fff810e6000 -     0x7fff81101fff  com.apple.CalendarStore (7.0 - 1363) <3B8C272C-D888-359B-B0E1-B842113F6603> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
        0x7fff81104000 -     0x7fff81162ff7  com.apple.corelocation (1486.17 - 1486.24) <9FBB29F0-E000-3190-A96C-9EAA5CCCA2A0> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff81163000 -     0x7fff811aaff7  libcups.2.dylib (372) <348EED62-6C20-35D6-8EFB-E80943965100> /usr/lib/libcups.2.dylib
        0x7fff811b8000 -     0x7fff811bfff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
        0x7fff811c0000 -     0x7fff8121bffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8121c000 -     0x7fff81300fff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff81388000 -     0x7fff81391ff7  libcldcpuengine.dylib (2.3.58) <A2E1ED7B-FC7E-31F6-830A-FF917689766B> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
        0x7fff81392000 -     0x7fff8139afff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
        0x7fff8139b000 -     0x7fff813acff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
        0x7fff813ad000 -     0x7fff8145dff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8145e000 -     0x7fff814b7fff  libTIFF.dylib (1038) <5CBFE0C2-9DD8-340B-BA63-A94CE2E476F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff814b8000 -     0x7fff814c2ff7  com.apple.ProtocolBuffer (1 - 182.1.3) <82E68598-A8AA-3AF1-843E-2A64F19472D4> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff814c3000 -     0x7fff814c3fff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff814c4000 -     0x7fff814cbff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
        0x7fff814cc000 -     0x7fff814dcfff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
        0x7fff814dd000 -     0x7fff8161dfff  com.apple.QTKit (7.7.3 - 2826) <7A110F61-D4DD-3C84-950D-E5F486DE5765> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8161e000 -     0x7fff82192ff7  com.apple.AppKit (6.9 - 1265) <0E9FC8BF-DA3C-34C5-91CC-12BC922B5F01> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff82193000 -     0x7fff8219aff7  liblaunch.dylib (842.1.4) <FCBF0A02-0B06-3F97-9248-5062A9DEB32C> /usr/lib/system/liblaunch.dylib
        0x7fff8219b000 -     0x7fff821a6fff  libkxld.dylib (2422.1.72) <C88EF3E6-B31F-3E12-BE9B-562D912BA733> /usr/lib/system/libkxld.dylib
        0x7fff82335000 -     0x7fff82349fff  com.apple.aps.framework (4.0 - 4.0) <F529A05B-FB03-397E-B06A-3A60B808FA11> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff8234a000 -     0x7fff82366ff7  libsystem_kernel.dylib (2422.1.72) <D14913DB-47F1-3591-8DAF-D4B4EF5F8818> /usr/lib/system/libsystem_kernel.dylib
        0x7fff823f1000 -     0x7fff8270bff7  com.apple.MediaToolbox (1.0 - 1273.29) <6260E68B-7E50-3D49-8C0A-7145614C13D8> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8270c000 -     0x7fff82718ff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff82719000 -     0x7fff8271fff7  libsystem_platform.dylib (24.1.4) <331BA4A5-55CE-3B95-99EB-44E0C89D7FB8> /usr/lib/system/libsystem_platform.dylib
        0x7fff82720000 -     0x7fff827e3ff7  com.apple.backup.framework (1.5 - 1.5) <92C8038F-CC00-3202-90D8-3C3AEC90986F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff827e4000 -     0x7fff82814fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff82b71000 -     0x7fff82b97fff  com.apple.iCalendar (7.0 - 162) <2B270453-6FFD-3AD3-B40B-51715BE66B33> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
        0x7fff82b98000 -     0x7fff82ba4ff7  com.apple.OpenDirectory (10.9 - 173.1.1) <6B78BD7B-5622-38E6-8FC6-86A117E3ACCA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff82ba5000 -     0x7fff82ba8fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff82ba9000 -     0x7fff839f5ff5  com.apple.WebCore (9537 - 9537.70) <7A90E9D3-4F26-3049-9C96-C6B8CB1395C8> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff839f6000 -     0x7fff83a3bff6  com.apple.HIServices (1.22 - 466) <21807AF8-3BC7-32BB-AB96-7C35CB59D7F6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff83a3c000 -     0x7fff83aa0ff3  com.apple.datadetectorscore (5.0 - 354.0) <9ACF24B8-3268-3134-A5BC-D72C9371A195> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff83aa1000 -     0x7fff83aa3ff7  com.apple.SecCodeWrapper (3.0 - 1) <F5107AD0-20CD-328C-8B2E-74CB6F3169F6> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff83aa4000 -     0x7fff83ab6fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff83aba000 -     0x7fff83ac1fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
        0x7fff83ac2000 -     0x7fff83c30ff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff83c31000 -     0x7fff83c60ff5  com.apple.GSS (4.0 - 2.0) <ED98D992-CC14-39F3-9ABC-8D7F986487CC> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff83c61000 -     0x7fff83ceafff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff83ceb000 -     0x7fff83cfdff7  com.apple.addressbook.ContactsAutocomplete (8.0 - 1365) <9EF30F4C-2C3F-321C-8C32-1445395FD9C7> /System/Library/PrivateFrameworks/ContactsAutocomplete.framework/Versions/A/Con tactsAutocomplete
        0x7fff83cfe000 -     0x7fff83d99ff7  com.apple.PDFKit (2.9 - 2.9) <AD968A31-6567-30A7-A699-154C88DB56D0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff83f51000 -     0x7fff8486d05f  com.apple.CoreGraphics (1.600.0 - 599.7) <7D0FD5A7-A061-39BA-8E00-723825D2C4DD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8486e000 -     0x7fff84870fff  libCVMSPluginSupport.dylib (9.0.83) <E2AED858-6EEB-36C6-8C06-C3CF649A3CD5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff848f2000 -     0x7fff848faffc  libGFXShared.dylib (9.0.83) <11A621C3-37A0-39CE-A69B-8739021BD79D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff848fb000 -     0x7fff8490eff7  com.apple.AppContainer (3.0 - 1) <A90C058D-46E8-3BAB-AF17-AF9C7C273069> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
        0x7fff8490f000 -     0x7fff8490fff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
        0x7fff84910000 -     0x7fff84911ff7  libodfde.dylib (20) <C00A4EBA-44BC-3C53-BFD0-819B03FFD462> /usr/lib/libodfde.dylib
        0x7fff8491f000 -     0x7fff84e8ffff  com.apple.CoreAUC (6.22.08 - 6.22.08) <F306D552-2220-3160-88EA-C916193C5EFD> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff84e90000 -     0x7fff84ee8ff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff84ee9000 -     0x7fff84f02ff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff84f03000 -     0x7fff84f03fff  com.apple.quartzframework (1.5 - 1.5) <3B2A72DB-39FC-3C5B-98BE-605F37777F37> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff84f04000 -     0x7fff84f08fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
        0x7fff84f09000 -     0x7fff84f89fff  com.apple.CoreSymbolication (3.0 - 141) <B018335C-698B-3F87-AF1C-6115C4FA8954> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff84f8a000 -     0x7fff84fb6fff  com.apple.CoreServicesInternal (184.8 - 184.8) <707E05AE-DDA8-36FD-B0FF-7F15A061B46A> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff84fb7000 -     0x7fff851a6ffc  com.apple.WebKit2 (9537 - 9537.71) <B8FFCE39-9DC6-304E-953A-0BAFDCD19D2F> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff851a7000 -     0x7fff851afff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff851b0000 -     0x7fff851effff  libGLU.dylib (9.0.83) <8B457205-513B-3477-AE9C-3AD979D5FE11> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff851f0000 -     0x7fff851f3ffa  libCGXType.A.dylib (599.7) <2FC9C2BC-B5C5-3C27-93F9-51C6C4512E9D> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
        0x7fff851f4000 -     0x7fff8522cff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8522d000 -     0x7fff8527efff  com.apple.QuickLookFramework (5.0 - 622.3) <AB6CCD09-ECDF-3F01-9C42-34B37DDCF12D> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8527f000 -     0x7fff8542cf27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
        0x7fff8542d000 -     0x7fff854d6ff7  com.apple.MailCore (7.0 - 1816) <5E8A558E-B776-3582-AE62-FA80655751E7> /System/Library/PrivateFrameworks/MailCore.framework/Versions/A/MailCore
        0x7fff854d7000 -     0x7fff854d7fff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff85570000 -     0x7fff855adfff  com.apple.MailUI (7.0 - 1816) <0DF3A4A8-B97D-3B10-A682-D7911838BABA> /System/Library/PrivateFrameworks/MailUI.framework/Versions/A/MailUI
        0x7fff855ae000 -     0x7fff855b6ff3  libCGCMS.A.dylib (599.7) <92AA4E85-7633-36E2-BAD0-7B1A2E48E75C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff855b7000 -     0x7fff855d0ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff855d1000 -     0x7fff85724ff7  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <A0B7B007-9BD8-30E2-B644-47856DA29FEE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff85725000 -     0x7fff85731ff7  com.apple.CalendarAgentLink (7.0 - 138) <B8B63D14-D853-3478-B001-BC67B7E9F993> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink
        0x7fff85732000 -     0x7fff8577dfff  com.apple.ImageCaptureCore (5.0 - 5.0) <F529EDDC-E2F5-30CA-9938-AF23296B5C5B> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8577e000 -     0x7fff85788fff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
        0x7fff85789000 -     0x7fff8578bfff  libRadiance.dylib (1038) <55F99274-5074-3C73-BAC5-AF234E71CF38> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff85818000 -     0x7fff85822fff  com.apple.AppSandbox (3.0 - 1) <55717299-8164-3D79-918F-BD64706735CF> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff85862000 -     0x7fff85933ff7  com.apple.QuickLookUIFramework (5.0 - 622.3) <9741E66B-3978-35F6-8846-B6C528945611> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff85934000 -     0x7fff85e58fff  com.apple.QuartzComposer (5.1 - 316) <B20E93C3-8517-3E5C-83B6-C312C839C5D0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff85e68000 -     0x7fff85eb9ff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff85eba000 -     0x7fff85f1eff9  com.apple.Heimdal (4.0 - 2.0) <E7D20A4D-4674-37E1-A949-635FFF7C439A> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff85f7d000 -     0x7fff85fbdff7  com.apple.CalDAV (7.0 - 155.1) <6912C282-D362-3473-90E3-655A36C0CC21> /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV
        0x7fff85fbe000 -     0x7fff86031ffb  com.apple.securityfoundation (6.0 - 55122) <119D1C53-B292-3378-AEE1-A3B1FB02F43F> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8603b000 -     0x7fff8641cffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8641d000 -     0x7fff86446ff7  libc++abi.dylib (48) <8C16158F-CBF8-3BD7-BEF4-022704B2A326> /usr/lib/libc++abi.dylib
        0x7fff86447000 -     0x7fff86448ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
        0x7fff86449000 -     0x7fff86466fff  com.apple.facetimeservices (10.0 - 1000) <9B4815BA-4305-381D-A178-F79E10B2C6E9> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
        0x7fff86467000 -     0x7fff8646bfff  libsystem_stats.dylib (93.1.26) <B9E26A9E-FBBC-3938-B8B7-6CF7CA8C99AD> /usr/lib/system/libsystem_stats.dylib
        0x7fff8646c000 -     0x7fff86471ff7  com.apple.MediaAccessibility (1.0 - 43) <D309D83D-5FAE-37A4-85ED-FFBDA8B66B82> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff86472000 -     0x7fff86560fff  libJP2.dylib (1038) <6C8179F5-8063-3ED6-A7C2-D5603DECDF28> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff865bf000 -     0x7fff865c9ff7  com.apple.CrashReporterSupport (10.9 - 538) <B487466B-3AA1-3854-A808-A61F049FA794> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff86633000 -     0x7fff86722fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff86723000 -     0x7fff86908ff7  com.apple.CoreFoundation (6.9 - 855.11) <E22C6A1F-8996-349C-905E-96C3BBE07C2F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff86909000 -     0x7fff86aa5ff7  com.apple.QuartzCore (1.8 - 332.0) <994D1E0A-64B6-398C-B9A2-C362F02DE943> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff86ef4000 -     0x7fff86f0efff  libdispatch.dylib (339.1.9) <46878A5B-4248-3057-962C-6D4A235EEF31> /usr/lib/system/libdispatch.dylib
        0x7fff86f0f000 -     0x7fff86f5cff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff86f5d000 -     0x7fff86f8cfff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff86fda000 -     0x7fff86fe7ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
        0x7fff86fe8000 -     0x7fff87292ffd  com.apple.HIToolbox (2.1 - 695) <C4DE35FF-D0AC-35C3-A7E6-F54CD153825C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff87293000 -     0x7fff872a5ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff872a6000 -     0x7fff872edfff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff872ee000 -     0x7fff872efff7  libSystem.B.dylib (1197.1.1) <BFC0DC97-46C6-3BE0-9983-54A98734897A> /usr/lib/libSystem.B.dylib
        0x7fff872f0000 -     0x7fff872f2ff3  libsystem_configuration.dylib (596.12) <C4F633D9-94C8-35D9-BB2D-84C5122533C7> /usr/lib/system/libsystem_configuration.dylib
        0x7fff872f3000 -     0x7fff8733fffe  com.apple.CoreMediaIO (401.0 - 4544) <44EBC0FE-DAD5-3711-96CB-05250F350A16> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff87340000 -     0x7fff8734aff7  com.apple.corerecents (1.0 - 1) <6C3ACB55-6FA5-3266-80D3-592B7258F5E7> /System/Library/PrivateFrameworks/CoreRecents.framework/Versions/A/CoreRecents
        0x7fff8734b000 -     0x7fff87350fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
        0x7fff87351000 -     0x7fff87362ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
        0x7fff87363000 -     0x7fff87392ff7  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <404369C0-ED9F-3010-8D2F-BC55285F7808> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff87393000 -     0x7fff87396ffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff87397000 -     0x7fff87397ff7  com.apple.frameworks.SleepServices (1.1 - 1.1) <4D9C44FF-5403-3372-A90E-CBF2A34D7CE7> /System/Library/PrivateFrameworks/SleepServices.framework/Versions/A/SleepServi ces
        0x7fff87398000 -     0x7fff873b3ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
        0x7fff873b4000 -     0x7fff8741afff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff8741b000 -     0x7fff8741dfff  com.apple.marco (10.0 - 1000) <FC7EF8C7-5EDF-3720-BAEC-281F12A7A3F8> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
        0x7fff8741e000 -     0x7fff8754eff7  com.apple.desktopservices (1.8 - 1.8) <09DC9BB8-432F-3C7A-BB08-956A2DDFC2DE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8754f000 -     0x7fff87839fff  com.apple.CoreServices.CarbonCore (1077.13 - 1077.13) <21324540-8B84-3333-ADB8-D3D5181D4639> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff87ac3000 -     0x7fff87ac8ff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
        0x7fff87ac9000 -     0x7fff87b92fff  com.apple.LaunchServices (572.23 - 572.23) <8D955BDE-2C4C-3DD4-B4D7-2D916174FE1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff87c2a000 -     0x7fff87c7cfff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
        0x7fff87c7d000 -     0x7fff87ca5ffb  libRIP.A.dylib (599.7) <6F528EE3-99F8-3871-BD60-1306495C27D5> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
        0x7fff87ca6000 -     0x7fff87d15ff1  com.apple.ApplicationServices.ATS (360 - 363.1) <88976B22-A9B8-3E7B-9AE6-0B8E09A968FC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff87d61000 -     0x7fff87d78ffa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff87d79000 -     0x7fff87dc8ff7  com.apple.framework.internetaccounts (2.1 - 210) <C77069C7-928C-315C-AA61-D90543901F20> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff87de3000 -     0x7fff87debff7  com.apple.AppleSRP (5.0 - 1) <ABC7F088-1FD5-3768-B9F3-847F355E90B3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff87e26000 -     0x7fff87e4dff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
        0x7fff87e4e000 -     0x7fff87e75ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
        0x7fff87e76000 -     0x7fff87e7aff7  libheimdal-asn1.dylib (323.12) <063A01C2-E547-39D9-BB42-4CC8E64ADE70> /usr/lib/libheimdal-asn1.dylib
        0x7fff87e7b000 -     0x7fff87ee5ff7  com.apple.framework.IOKit (2.0.1 - 907.1.13) <C1E95F5C-B79B-31BE-9F2A-1B25163C1F16> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff87ee6000 -     0x7fff87f34fff  com.apple.opencl (2.3.57 - 2.3.57) <FC03A80D-543A-3448-83FF-D399C3A240D9> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff87f35000 -     0x7fff87f39fff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff87f3a000 -     0x7fff87f40fff  com.apple.AddressBook.ContactsFoundation (8.0 - 1365) <CFB1A744-8096-3FAB-B55E-2E6C410A0376> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
        0x7fff88343000 -     0x7fff8842dfff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
        0x7fff88441000 -     0x7fff8844afff  com.apple.DisplayServicesFW (2.8 - 360.8.14) <816A9CED-1BC0-3C76-8103-1B9BE0F723BB> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8844b000 -     0x7fff8853cff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
        0x7fff8853d000 -     0x7fff885a0ff7  com.apple.SystemConfiguration (1.13 - 1.13) <F05F4149-981B-380B-8F50-51CE804BBB89> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff885a1000 -     0x7fff885c5fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <39C08086-9866-372F-9420-81F5689149DF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff885e5000 -     0x7fff888e4fff  com.apple.Foundation (6.9 - 1056) <D608EDFD-9634-3573-9B7E-081C7D085F7A> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff888e5000 -     0x7fff889eafff  com.apple.ImageIO.framework (3.3.0 - 1038) <2C058216-C6D8-3380-A7EA-92A3F04520C1> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff889eb000 -     0x7fff88a06ff7  libsystem_malloc.dylib (23.1.10) <FFE5C472-B23A-318A-85BF-77CDE61900D1> /usr/lib/system/libsystem_malloc.dylib
        0x7fff88a07000 -     0x7fff88a43fff  com.apple.ids (10.0 - 1000) <22502AAF-CC59-33EC-9ACF-106315206701> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
        0x7fff88a44000 -     0x7fff88a44fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff88a45000 -     0x7fff88b67ff1  com.apple.avfoundation (2.0 - 651.12) <03E595B7-A559-3D4D-90E9-BCA603E3A39E> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff88b6e000 -     0x7fff88b6effd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <6E89F3CB-CC41-3728-9F9A-FDFC151E8261> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff88b6f000 -     0x7fff88b7dfff  com.apple.opengl (9.0.83 - 9.0.83) <AF467644-7B1D-327A-AC47-CECFCAF61990> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff88bfc000 -     0x7fff88c02fff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
        0x7fff88c03000 -     0x7fff88c19fff  com.apple.CoreMediaAuthoring (2.2 - 947) <B01FBACC-DDD5-30A8-BCCF-57CE24ABA329> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff88c1a000 -     0x7fff88c3cfff  com.apple.speech.LatentSemanticMappingFramework (2.11.6 - 2.11.6) <C2687C2C-239A-3EB4-857C-BA107F34A5E8> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
        0x7fff88c3d000 -     0x7fff88e4eff7  com.apple.Mail.framework (7.0 - 1816) <748EB39A-3BB4-3911-B1D1-05F002923E65> /System/Library/PrivateFrameworks/Mail.framework/Versions/A/Mail
        0x7fff88e4f000 -     0x7fff88e51ffb  libutil.dylib (34) <DAC4A6CF-A1BB-3874-9569-A919316D30E8> /usr/lib/libutil.dylib
        0x7fff89353000 -     0x7fff8935efff  libGL.dylib (9.0.83) <984A960A-C159-3AE5-8B40-E2B451F6C712> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff893a5000 -     0x7fff893caff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff893cb000 -     0x7fff893d1ff7  libCGXCoreImage.A.dylib (599.7) <AC38090E-BA96-33C0-92F3-8EF6231582C4> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCo reImage.A.dylib
        0x7fff893fc000 -     0x7fff89445fff  com.apple.CoreMedia (1.0 - 1273.29) <4ACD30BA-E9FE-3842-A8B7-E3BD63747867> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff89446000 -     0x7fff8968efff  com.apple.CoreData (107 - 481) <E5AFBA07-F73E-3B3F-9099-F51224EE8EAD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff897f6000 -     0x7fff897f9fff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff897fa000 -     0x7fff89826ff7  com.apple.fram

  • Need help going to error page from jsf component value change event

    Afternoon all,
    I have a jsp page which uses jsf components and when one of the jsf combo boxes components handles an value change event, the method 'handleTestComboValueChange' is fired.
    Within this method if an error is caught I would like to display an error page instead of the currently displayed page.
    Can some one tell me how to do this. I tried to use getFacesContext().getExternalContext().redirect("errorpage.jsp"); but I just got an illegalStackException error.
    Any help would be great.
    Thanks in advance,
    Lex

    log output listed below...
    [14/04/06 14:52:48:781 BST] 6b0ec4d8 ProcessValida E com.sun.faces.lifecycle.ProcessValidationsPhase com.sp.exceptions.ServicePackagesException: My custom error message
    [14/04/06 14:52:48:812 BST] 6b0ec4d8 ProcessValida E com.sun.faces.lifecycle.ProcessValidationsPhase TRAS0014I: The following exception was logged javax.faces.el.EvaluationException: com.sp.exceptions.ServicePackagesException: My custom error message
         at com.sun.faces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:130)
         at javax.faces.component.UIInput.broadcast(UIInput.java:492)
         at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:252)
         at javax.faces.component.UIViewRoot.processValidators(UIViewRoot.java:346)
         at com.sun.faces.lifecycle.ProcessValidationsPhase.execute(ProcessValidationsPhase.java:78)
         at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
         at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
         at com.ibm.faces.webapp.FacesGenericPortlet.execute(FacesGenericPortlet.java:637)
         at com.ibm.faces.webapp.FacesGenericPortlet.processAction(FacesGenericPortlet.java:142)
         at com.scottishpower.portlet.GoldenAccountPortlet.processAction(GoldenAccountPortlet.java:143)
         at com.ibm.wps.pe.pc.std.cmpf.impl.PortletFilterChainImpl.processAction(PortletFilterChainImpl.java:104)
         at com.ibm.wps.propertybroker.standard.filter.PropertyBrokerActionFilter.processAction(PropertyBrokerActionFilter.java:260)
         at com.ibm.wps.pe.pc.std.cmpf.impl.PortletFilterChainImpl.processAction(PortletFilterChainImpl.java:95)
         at com.ibm.wps.pe.pc.std.invoker.impl.PortletServlet.dispatch(PortletServlet.java:148)
         at com.ibm.wps.pe.pc.std.invoker.impl.PortletServlet.doPost(PortletServlet.java:76)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at com.ibm.wps.pe.pc.std.cache.CacheablePortlet.service(CacheablePortlet.java:257)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
         at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
         at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)
         at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
         at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
         at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
         at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:1095)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java(Compiled Code))
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.include(WebAppRequestDispatcher.java:254)
         at com.ibm.wps.pe.pc.std.invoker.impl.PortletInvokerImpl.invoke(PortletInvokerImpl.java:204)
         at com.ibm.wps.pe.pc.std.invoker.impl.PortletInvokerImpl.invoke(PortletInvokerImpl.java:168)
         at com.ibm.wps.pe.pc.std.invoker.impl.PortletInvokerImpl.action(PortletInvokerImpl.java:82)
         at com.ibm.wps.pe.pc.std.event.ActionEvent.execute(ActionEvent.java:111)
         at com.ibm.wps.pe.pc.std.event.EventQueueManager.processEventLoop(EventQueueManager.java:86)
         at com.ibm.wps.pe.pc.std.PortletContainerImpl.performEvents(PortletContainerImpl.java:168)
         at com.ibm.wps.pe.pc.PortletContainerImpl.performEvents(PortletContainerImpl.java:229)
         at com.ibm.wps.engine.phases.WPActionPhase.processPortlets(WPActionPhase.java:947)
         at com.ibm.wps.engine.phases.WPActionPhase.execute(WPActionPhase.java:489)
         at com.ibm.wps.state.phases.AbstractActionPhase.next(AbstractActionPhase.java:130)
         at com.ibm.wps.engine.Servlet.callPortal(Servlet.java:710)
         at com.ibm.wps.engine.Servlet.doGet(Servlet.java:562)
         at com.ibm.wps.engine.Servlet.doPost(Servlet.java:736)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
         at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
         at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)
         at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
         at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
         at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
         at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:76)
         at com.ibm.wps.state.filter.StateCleanup.doFilter(StateCleanup.java:86)
         at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:132)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:71)
         at com.ibm.wps.mappingurl.impl.URLAnalyzer.doFilter(URLAnalyzer.java:258)
         at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:132)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:71)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:1086)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java(Compiled Code))
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:201)
         at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:125)
         at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:286)
         at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
         at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:182)
         at com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:334)
         at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)
         at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:652)
         at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:448)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java(Compiled Code))
    Caused by: com.sp.exceptions.ServicePackagesException: My custom error message
         at pagecode.fragments.GSolus.getTariffsByRef(GSolus.java:297)
         at pagecode.fragments.GSolus.handleServicePackageComboValueChange(GSolus.java:214)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java(Compiled Code))
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java(Compiled Code))
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java(Compiled Code))
         at java.lang.reflect.Method.invoke(Method.java(Compiled Code))
         at com.sun.faces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:126)
         ... 68 more
    javax.faces.el.EvaluationException: com.sp.exceptions.ServicePackagesException: My custome error message
         at com.sun.faces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:130)
         at javax.faces.component.UIInput.broadcast(UIInput.java:492)
         at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:252)
         at javax.faces.component.UIViewRoot.processValidators(UIViewRoot.java:346)
         at com.sun.faces.lifecycle.ProcessValidationsPhase.execute(ProcessValidationsPhase.java:78)
         at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
         at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
         at com.ibm.faces.webapp.FacesGenericPortlet.execute(FacesGenericPortlet.java:637)
         at com.ibm.faces.webapp.FacesGenericPortlet.processAction(FacesGenericPortlet.java:142)
         at com.sp.portlet.GoldenAccountPortlet.processAction(GoldenAccountPortlet.java:143)
         at com.ibm.wps.pe.pc.std.cmpf.impl.PortletFilterChainImpl.processAction(PortletFilterChainImpl.java:104)
         at com.ibm.wps.propertybroker.standard.filter.PropertyBrokerActionFilter.processAction(PropertyBrokerActionFilter.java:260)
         at com.ibm.wps.pe.pc.std.cmpf.impl.PortletFilterChainImpl.processAction(PortletFilterChainImpl.java:95)
         at com.ibm.wps.pe.pc.std.invoker.impl.PortletServlet.dispatch(PortletServlet.java:148)
         at com.ibm.wps.pe.pc.std.invoker.impl.PortletServlet.doPost(PortletServlet.java:76)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at com.ibm.wps.pe.pc.std.cache.CacheablePortlet.service(CacheablePortlet.java:257)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
         at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
         at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)
         at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
         at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
         at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
         at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:1095)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java(Compiled Code))
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.include(WebAppRequestDispatcher.java:254)
         at com.ibm.wps.pe.pc.std.invoker.impl.PortletInvokerImpl.invoke(PortletInvokerImpl.java:204)
         at com.ibm.wps.pe.pc.std.invoker.impl.PortletInvokerImpl.invoke(PortletInvokerImpl.java:168)
         at com.ibm.wps.pe.pc.std.invoker.impl.PortletInvokerImpl.action(PortletInvokerImpl.java:82)
         at com.ibm.wps.pe.pc.std.event.ActionEvent.execute(ActionEvent.java:111)
         at com.ibm.wps.pe.pc.std.event.EventQueueManager.processEventLoop(EventQueueManager.java:86)
         at com.ibm.wps.pe.pc.std.PortletContainerImpl.performEvents(PortletContainerImpl.java:168)
         at com.ibm.wps.pe.pc.PortletContainerImpl.performEvents(PortletContainerImpl.java:229)
         at com.ibm.wps.engine.phases.WPActionPhase.processPortlets(WPActionPhase.java:947)
         at com.ibm.wps.engine.phases.WPActionPhase.execute(WPActionPhase.java:489)
         at com.ibm.wps.state.phases.AbstractActionPhase.next(AbstractActionPhase.java:130)
         at com.ibm.wps.engine.Servlet.callPortal(Servlet.java:710)
         at com.ibm.wps.engine.Servlet.doGet(Servlet.java:562)
         at com.ibm.wps.engine.Servlet.doPost(Servlet.java:736)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
         at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
         at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)
         at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
         at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
         at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
         at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:76)
         at com.ibm.wps.state.filter.StateCleanup.doFilter(StateCleanup.java:86)
         at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:132)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:71)
         at com.ibm.wps.mappingurl.impl.URLAnalyzer.doFilter(URLAnalyzer.java:258)
         at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:132)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:71)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:1086)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java(Compiled Code))
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:201)
         at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:125)
         at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:286)
         at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
         at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:182)
         at com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:334)
         at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)
         at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:652)
         at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:448)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java(Compiled Code))
    Caused by: com.sp.exceptions.ServicePackagesException: My custome error message
         at pagecode.fragments.GSolus.getTariffsByRef(GSolus.java:297)
         at pagecode.fragments.GSolus.handleServicePackageComboValueChange(GSolus.java:214)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java(Compiled Code))
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java(Compiled Code))
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java(Compiled Code))
         at java.lang.reflect.Method.invoke(Method.java(Compiled Code))
         at com.sun.faces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:126)
         ... 68 more

  • Need help going from dial-up internet to wireless internet on an eMac.

    I have an eMac that is running 10.5.6 (if that matters) and it has an AirPort card, AirPort Extreme (0x14E4, 0x4E) but all I have is dial-up and would like to upgrade to a wireless connection. My question is, what do I need? Do I need a modem and a router? or just a router or just a modem?

    You need a modem, and at some point, the wireless connection needs to be bridged to a wired device. If the modem itself doesn't have wireless capabilities or you have multiple computers, get a wireless router as well.
    (50859)

  • Unable to chance BG image need help - link attached.

    Using a template, I want to replace the George Washington image that is there with a bird image and have it be just as long, in other words turn my bird image into a mask as of right now when I enlarge, it gets big, and can make it large horizontally.
    Here is the link and I want the bird to be the same size as the George Washing image.
    http://img67.imageshack.us/my.php?image=needhelppagessl2.gif
    Thanks!

    First, for your "constrain" problem, uncheck Constrain Proportions in the metrics inspector. You can then drag a side handle to stretch the image. Like this:
    For masking, insert your image then insert a square/rectangle & resize it to what you want. Now move the rectangle on top of your image, shift-click to select the image (in addition the rectangle) then select Format > Mask with selected shape.
    Now I can move Muffin around in the mask

  • Need help going from as2 to as3 with root

    Hi guys I'm only just getting into AS2, back then I would use _root to access the root of the timeline.
    I am trying ot do the same thing in AS but have been unsuccesful
    I've tried
      MovieClip(root).myinstancename_mc.gotoAndStop(2);
    but get
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at myfile_fla::viewback_mc_5/manageMouseClick()[myfile_fla.viewback_mc_5::frame1:8]
    Any help would be great

    if you had a movieclip with instance name myinstancename_mc on the root timeline when that code executed, you wouldn't see that error message.  ie, there's nothing wrong with your syntax.
    the most common problems would be typos, myinstancename_mc in more than one keyframe and myinstancename_mc not existing when that code executes.

  • Uncaught Exceptions Index 4 = 4 - Need Help

    Hi, My 8900 got this message after reboot/ battery pull, I check the log and came up with this.
    Name: ArrayIndexOutOfBoundsException
    GUID: 9c3cd62e3320b498
    Time: Oct 08, 2010 12:01:23
    No detail message
    net_rim_bb_addressbook_app(4C3558FE)
    AddressCardModelImpl
    getAt
    0x5740
    net_rim_bb_addressbook_app(4C3558FE)
    CompressedAddressCardModel
    getAt
    0x711C
    net_rim_bb_framework_api-3(4C355157)
    SubmemberUtilities
    getFirstSubmember
    0x9381
    net_rim_bb_qm_google-6(4C6B724C)
    IMIDUtil
    containsId
    0x145C
    net_rim_bb_qm_google-6(4C6B724C)
    PackageManager
    registerOnceOnInstall
    0x21B4
    net_rim_bb_qm_google-4(4C6B724C)
    ProxyEntry
    registerOnceOnSystemStart
    0x8C9F
    net_rim_bb_qm_google(4C6B724C)
    GoogleEntry
    registerOnceOnSystemStart
    0x66A3
    net_rim_bb_qm_google-4(4C6B724C)
    ProxyEntry
    registerEntry
    0x9603
    net_rim_bb_qm_google(4C6B724C)
    GoogleEntry
    main
    0x675B
    Is this error came from the installation of Google Talk?

    Hiya!
     Try taking a look at this article here, I havent found a definitive resolution to this issue yet, but hopefully this helps you.
    Kudos to sdgardne for the post
    http://supportforums.blackberry.com/t5/BlackBerry-Bold-BlackBerry-9000/Error-Msg-Uncaught-exception-...
    1). Please thank those who help you by clicking the beside the 'Reply' button.
    2). If your issue has been solved, please resolve it by marking "Accept as Solution" on the correct post!
    3). Remember to have fun! We are all in this together!
    4). Follow me on

  • I need help...im going crazy!!!!

    I have been usings my ipod mini for about 7 months now,an 2 days ago i tried to upload cd's to it.now for some reason it wont connect to my computer.i updated it already too an that didnt work an i also reset it an still nothing.i am going crazy trying to figure this out can someone please help me without having to delete itunes off my computer because then i lose my 800 songs!

    Your Windows PC doesn't recognize iPod
    And fyi, deleting iTunes from the computer does not cause you to lose the songs. The iTunes music folder remains unaffected.

Maybe you are looking for