Capturing filename after browsing for a file

i have created a browse page which enables the user to import in the value in the file that they have selected. the problem the user has selected the file, they will click search button and they it read the file using StringTokenizer and etc.
and then the values will be stored in the database and display in a text area in the second JSP page. how can i capture the filename after the user has selected in the first JSP page to allow java class file to capture the filename to be stored into the database?
I hope that my explanation on my problem doesn't confuse you..
Thanks alot

the file currently in the local pc becoz i am developing using the local pc as client n server together. so i just retrieve it.
but it's only the matter of the pathname becoz i will store it into a variable to retrieve it later as a String. so i think it will then capture the whole pathname as a String to be passed in

Similar Messages

  • Browsing for a file and selecting a Virtual Machine on hyper-v

    Hi everyone, sorry if the title is a bit problematic.
    New to Powershell here, I'm trying to create a script that will let me Browse for a .vhd file, and then let me select a Virtual Machine to attach it to using SCSI attachment.
    So far I managed to attach and detach the VHD files using add-vmharddiskdrive, but using read-host I have to manually enter the address of the .vhd file every time, as well as using read-host to input the VM name.
    Is there any way to browse for the file, select it, and then run the add-vmharddiskdrive command?
    So far the script I have is this:
    $VHDLocation = Read-Host Enter VHD Location
    $VMName = Read-Host Enter VM Name
    Add-VMHardDiskDrive -VMName $VMName -Path $VHDLocation -ControllerType SCSI
    Basically I want to shorten the time it takes to manually type the vhd location and the VM name. Any way to do that?
    Sorry for long post, thanks everyone in advance, have a nice day :)

    I couldn't get the Select-fromgridview to work sadly, but after snooping around on several different forums I managed to copy-paste some codes and after some work and trial and error I got the script to work perfectly, except for one problem. When the box
    pops up to let met select a VM, it pops in the background, as in, behind the ISE itself. So I have to alt tab to see it. Is there any way to make it pop to the front?
    I'd go through the script myself but like I said I'm very new to this and honestly most of this could be Chinese for all I know.
    Again thanks in advance!
    set-executionpolicy unrestricted
    ############## The script for browsing #############
    Function Get-FileName($initialDirectory)
     [System.Reflection.Assembly]::LoadWithPartialName("System.windows.forms") |
     Out-Null
     $OpenFileDialog = New-Object System.Windows.Forms.OpenFileDialog
     $OpenFileDialog.initialDirectory = $initialDirectory
     $OpenFileDialog.filter = "All files (*.*)| *.*"
     $OpenFileDialog.ShowDialog() | Out-Null
     $OpenFileDialog.filename
    } #end function Get-FileName
    ############## Sets the VHD location parameter to the selected file from above, and input VM Name  #############
    $VHDLocation = Get-FileName -initialDirectory "c:\fso"
    ############## Select a VM ######
    [void] [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms")
    [void] [System.Reflection.Assembly]::LoadWithPartialName("System.Drawing") 
    $objForm = New-Object System.Windows.Forms.Form 
    $objForm.Text = "Select a Computer"
    $objForm.Size = New-Object System.Drawing.Size(300,200) 
    $objForm.StartPosition = "CenterScreen"
    # Got rid of the block of code related to KeyPreview and KeyDown events.
    $OKButton = New-Object System.Windows.Forms.Button
    $OKButton.Location = New-Object System.Drawing.Size(75,120)
    $OKButton.Size = New-Object System.Drawing.Size(75,23)
    $OKButton.Text = "OK"
    # Got rid of the Click event for the OK button, and instead just assigned its DialogResult property to OK.
    $OKButton.DialogResult = [System.Windows.Forms.DialogResult]::OK
    $objForm.Controls.Add($OKButton)
    # Setting the form's AcceptButton property causes it to automatically intercept the Enter keystroke and
    # treat it as clicking the OK button (without having to write your own KeyDown events).
    $objForm.AcceptButton = $OKButton
    $CancelButton = New-Object System.Windows.Forms.Button
    $CancelButton.Location = New-Object System.Drawing.Size(150,120)
    $CancelButton.Size = New-Object System.Drawing.Size(75,23)
    $CancelButton.Text = "Cancel"
    # Got rid of the Click event for the Cancel button, and instead just assigned its DialogResult property to Cancel.
    $CancelButton.DialogResult = [System.Windows.Forms.DialogResult]::Cancel
    $objForm.Controls.Add($CancelButton)
    # Setting the form's CancelButton property causes it to automatically intercept the Escape keystroke and
    # treat it as clicking the OK button (without having to write your own KeyDown events).
    $objForm.CancelButton = $CancelButton
    $objLabel = New-Object System.Windows.Forms.Label
    $objLabel.Location = New-Object System.Drawing.Size(10,20) 
    $objLabel.Size = New-Object System.Drawing.Size(280,20) 
    $objLabel.Text = "Please select a computer:"
    $objForm.Controls.Add($objLabel) 
    $objListBox = New-Object System.Windows.Forms.ListBox 
    $objListBox.Location = New-Object System.Drawing.Size(10,40) 
    $objListBox.Size = New-Object System.Drawing.Size(260,20) 
    $objListBox.Height = 80
    Get-VM | Format-List name | Out-File -filepath c:\VMNames.txt
    ${C:\VMNames.txt} = ${C:\VMNames.txt} | select -skip 2
    function Remove-Topline ( [string[]]$path, [int]$skip=2 ) {
      if ( -not (Test-Path $path -PathType Leaf) ) {
        throw "invalid filename"
      ls $path |
        % { iex "`${$($_.fullname)} = `${$($_.fullname)} | select -skip $skip" }
    (Get-Content C:\VMNames.txt) | 
    Foreach-Object {$_ -replace "Name :", ""} | 
    Set-Content C:\VMNames.txt
    Get-Content C:\VMNames.txt | ForEach-Object {[void] $objListBox.Items.Add($_)}
    $objForm.Controls.Add($objListBox) 
    $objForm.Topmost = $True
    # Now, instead of having events in the form assign a value to a variable outside of their scope, the code that calls the dialog
    # instead checks to see if the user pressed OK and selected something from the box, then grabs that value.
    $result = $objForm.ShowDialog()
    if ($result -eq [System.Windows.Forms.DialogResult]::OK -and $objListBox.SelectedIndex -ge 0)
        $selection = $objListBox.SelectedItem
        $selection
        # Do something with $selection
    $VMName = $selection.Trim()
    ############## Dismounts the VHD if it's mounted on host, and then mounts it on VHD #############
    Dismount-VHD $VHDLocation
    Add-VMHardDiskDrive -VMName $VMName -Path $VHDLocation -ControllerType SCSI
    ############## Detaches the VHD from VM and returns it to the host #############
    Add-Type -AssemblyName Microsoft.VisualBasic
    [Microsoft.VisualBasic.Interaction]::MsgBox('Press Ok when you are ready to detach the VHD', 'MsgBoxSetForeground,Information', 'Confirm')
    Remove-VMHardDiskDrive -VMName $VMname -ControllerType SCSI -ControllerNumber 0 -ControllerLocation 0
    Mount-VHD $VHDLocation 

  • ITunes crashes while browsing for .ipsw files?

    Hello,
    I have been trying to update my iOS for my iPod touch 4g and iPhone 4 to 5.0 for quite some time.  My first issue was that the connection would fail or timeout every time no matter what (I'm in a country with slow internet at the moment; no way to change that), so I solved that by downloading the .ipsw files online for the respective products. Now that I have them, when I hold shift and click restore or update (i have windows 7) to browse for the files, iTunes stops working.
    the situation with it was: appcrash  objc.dll
    I've uninstalled everything apple related from my computer and re-installed it, and still no success. Short of sending to back the states, does anyone know what I could do to update my iProducts?
    Thank you.

    mmm, my son wants a video iPod for his birthday and I have been checking the 5th gen iPod forums:
    http://discussions.apple.com/category.jspa?categoryID=157

  • After browser updates .dwt files suddenly no longer viewable in browser - why?

    I am working on a Mac (Leopard OSX Version 10.5.7) and this morning, after various routine software updates this morning (see below) I went to the website I'm working on to start work on another template file - and discovered I couldn't view the file in either of my default browsers (Safari/ Firefox).
    Here are the updates performed this morning - including one for Safari.
    2009-07-28 08:21:10 +0100: Installed "Digital Camera Raw Compatibility Update" (2.6)
    2009-07-28 08:21:27 +0100: Installed "AirPort Utility Software Update 2009-002" (5.4.2)
    2009-07-28 08:21:31 +0100: Installed "iLife Support" (9.0.3)
    2009-07-28 08:21:51 +0100: Installed "iDVD Update" (7.0.4)
    2009-07-28 08:22:40 +0100: Installed "Java for Mac OS X 10.5 Update 4" (1.0)
    2009-07-28 08:23:29 +0100: Installed "Safari" (4.0.2)
    2009-07-28 08:24:19 +0100: Installed "iTunes" (8.2.1)
    2009-07-28 08:24:51 +0100: Installed "QuickTime" (7.6.2)
    I also updated Firefox to the latest version.
    I've checked the connection between template and the html file based on that template, and there doesn't seem to be a problem - i.e. if I change something in the template, the file based on that template is updated, fine.
    When I try to preview a template file in the browser, rather than opening in the browser (which opens a blank "untitled" file) the finder window opens and locates the actual file in my templates folder - so I can't actually view it.
    Weirdly enough, the file DOES open in Opera (which I have not updated) - a browser I rarely use.
    This path opens up in Opera, but not in Firefox / Safari
    file://localhost/Users/mel/Documents/3_mslexia%20work/website%202008/mslexia/Templates/abo ut.dwt
    Why am I "suddenly" not able to view the template file in my default browsers?? I've a worry it's related to document relative paths and am fearful of brain-fry with this issue. Any simple way to diagnose the issue?
    I'm trying to think if I've changed anything. Yesterday I made some minor changes to templates but unfortunately can't recall if I opened the templates in a browser - I don't think I did. Prior to that, about a week ago, I made some site-wide alterations, which may have affected things - unfortunately I'm in the middle of a house renovation and my work patterns are sporadic at the moment - so didn't come back to the website until yesterday.
    Any help would be HUGELY appreciated. My instinct is that it's the browser updates that have changed something - anyone else had this happen to them?

    Just a thought, after re-reading your initial message and the fact that Firefox was updated.
    In the preferences, is Firefox set up as the default browser for viewing pages?  may be it was overwritten by the update or something.
    Sorry, but I can't think of anything else.  If you can view them in Opera then it can't be a coding issue I suppose - but then again......
    have you put the page through the validator?  Do you use the web developers toolbar in Firefox?  If so, validate the file locally, if not, then upload and validate here:
    HTML Validator - http://validator.w3.org
    CSS Validator - http://jigsaw.w3.org/css-validator/
    Just in case there could be an error in the HTML or CSS causing an issue.
    PS:  Not being a Mac user, I have no idea about how the site definition set up in for the Remote..  Is it normal for the setup to use localhost for viewing?  On my windows pc, my preferences for the testing server is set to None if I'm not using a local server.
    Also, the preferences do show that you are using tmp files for viewing right?
    That's it, can't think of anything else  :-)

  • Scripting: browse for data files in a folder and all subfolders below

    Hello,
    i'm looking for a command to search for data files (*.dat) in a folder and all subfolders below.
    I checked out command DirListGet. This command only search in the declared folder and not in the subfolders below.
    Anyone an idea?
    I don't want to use a loop-structure for finding subfolders and browse for the data files.
    Mr. Buddy

    dim result : result = DirListGet("C:\tmp", "*.dat", "filename", "FullFilenamesRecursive")
    dim fl : for each fl in result
    MsgBox fl
    Next
    Works fine for me and even recursive.
    Alternatively but with mucg more effort and the same result.
    Option Explicit 'Forces the explicit declaration of all the variables in a script.
    dim folderPath : folderPath = "C:\tmp"
    dim files : files = GetFileListRecursive(folderPath)
    dim fl : for each fl in files
    MsgBox fl
    Next
    Function GetFileListRecursive(folderPath)
    dim fso : Set fso = CreateObject("Scripting.FileSystemObject")
    dim results : results = Array()
    GetFiles fso, folderPath, results
    GetFileListRecursive = results
    End Function
    Sub GetFiles(fso, folderPath, results)
    dim folderObj : Set folderObj = fso.GetFolder(folderPath)
    dim f : for Each f In folderObj.Files
    if(0 = StrComp(fso.GetExtensionName(f), "dat", 1)) then
    dim index : index = ubound(results) + 1
    redim Preserve results(index)
    results(index) = f.Path
    End If
    next
    dim d : for Each d In folderObj.SubFolders
    GetFiles fso, d.Path, results
    next
    End sub

  • Word 2010 to PDF hyperlink opens browser for local file...

    Recently upgraded to Office 2010.  I used the Save As .pdf option in Word 2010 for a file that contains a hyperlink to a local pdf file. When I open the saved pdf file with Acrobat Reader and click on the link, my default browser starts up to display the local file. I have tried using different versions of Acrobat Reader, different operating systems, and all kinds of options, but can't figure out why this is happening. I think it's a bug in Word 2010, but can't find any information about this on the web.
    Does anyone have any clues?

    OK, replying to my own post, I did just find a Workaround
    that's only a few extra steps.....
    After all edits and changes were completed in the Word file, I printed to PDF from Word,
    creating a Rev A file. Once that was done and a new pdf was created, I opened the
    Original File and selected "Combine" from the "File" pull down menu.
    With both of the files in the same PDF document, I deleted all the pages from the
    Original file. Page one of the Rev A file is now p. 1 of the "combined" file,
    and all the PDF bookmarks (still there from the Original File) line up in the right
    sequence. The bookmarks (produced by "Saving to PDF" with Headings 1 and 2,
    when the original PDF was made) need to be re-linked to the pages in the Rev A
    file, but that's quicker than starting from scratch.
    Not really very elegant, but it worked. I'd be curious to know what's wrong with the
    PDF files saved with bookmarks in WORD, because that happens EVERY time.
    I have Acrobat Pro Extended, iteration 9.5.1

  • 8dot3 filenames not created for Program Files and Program Files (x86)

    Interesting issue we are realizing on Servers deployed from SCCM 2012. 8dot3names are not created for Program Files and Program Files (x86). they are created for other files/folders at the root of C and below Program Files and Program Files (x86). This is
    causing issues when programs are installed and the path is then created with 8dot3 filenames for program files and program files (x86)

    Arg. we just got bitten by this "feature", and it's affecting our security software stack (name starts with M and ends with ee), and some ancient crud too.
    And found this, which suggests a logical reason for 8dot3name to not be present on servers, but, on clients, I think it's a rather gross assumption...
    http://blogs.technet.com/b/josebda/archive/2012/11/13/windows-server-2012-file-server-tip-disable-8-3-naming-and-strip-those-short-names-too.aspx
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Browse for Input file path

    What would be the easiest way to create a task that allows the user to browse for a flat file then loads the path in a variable for the connection string?
    Thanks,
    Jnana
    Jnana Sivananda

    Thanks Visakh16.
    One more missing piece: Can I populate a column in the destination table with the pathname that is in the variable?
    Jnana Sivananda
    Hi Jnana,
    Re the above, the easiest is using the
    Flat File Connection Manager:
    PS: I tried to find out what task you are talking about. But you looks like want a source/destination parametrized. Furthermore, the dev tool should not be given to non-developers.
    Arthur My Blog

  • A browser for QT files ?

    I have been acumulating thousands of QuickTime files due to the necessity I have of transcoding AVCHD clips into QT files that I can work with -I do this with the Voltaic software - as I am a G5 PowerPC/Final Cut Studio user.
    Is there a program that I could use - obviously outside of FCP - that would let me browse through/explore my QT assets without actually having to open each and every file ?
    Thanks !

    If you have Photoshop installed, a little used feature of Bridge will do what you want. If you have your QuickTime clips organized in folders, you can navigate to them, and Bridge will provide a preview player window for any highlighted clip.
    It also lets you rearrange, rename and otherwise reorganize your movie library.

  • Applications crash while browsing for a file or saving a document

    Hopefully I've found the correct thread.
    Here's my problem:
    Several of my applications have crashed while I'm either browsing to choose a file for upload. (ie. trying to upload an image to Facebook, or upload an image to eBay, or attach a file.) This happens with Safari or Mail every time.
    AND
    Microsoft Word will crash if I try to "Save As" and Mail will do the same if I try to "Save As."
    Both of these issues seem to involve the Finder in some way. I tried booting from my Snow Leopard disk and repairing permissions in addition to doing a reinstall of Snow Leopard. The issue seemed to go away for about a day, then it came back.
    Any help would be appreciated. Thanks.

    For those interested in such things, here is the log from my last crash of Pages:
    Process: Pages [97297]
    Path: /Applications/iWork '09/Pages.app/Contents/MacOS/Pages
    Identifier: com.apple.iWork.Pages
    Version: 4.0.3 (766)
    Build Info: Pages-7660000~2
    Code Type: X86 (Native)
    Parent Process: launchd [205]
    Date/Time: 2010-02-12 11:32:23.651 -0500
    OS Version: Mac OS X 10.6.2 (10C540)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000078
    Crashed Thread: 6 Dispatch queue: TFSVolumeInfo::GetSyncGCDQueue
    Thread 0: Dispatch queue: com.apple.main-thread
    0 libSystem.B.dylib 0x97d2a916 semaphorewaittrap + 10
    1 libSystem.B.dylib 0x97d52777 dispatch_semaphore_waitslow + 274
    2 libSystem.B.dylib 0x97d523bc dispatch_barrier_sync_fslow + 139
    3 libSystem.B.dylib 0x97d4e75c dispatch_sync + 31
    4 com.apple.DesktopServices 0x91521022 TFSVolumeInfo::CancelSyncThread(bool) + 146
    5 com.apple.DesktopServices 0x915215d9 TFSVolumeInfo::FinalizeVolume() + 461
    6 com.apple.DesktopServices 0x91523489 void (*std::foreach<std::tr1::__detail::_Hashtableiterator<std::pair<long const, TCountedPtr<TFSVolumeInfo> >, false, false>, void (*)(std::pair<long, TCountedPtr<TFSVolumeInfo> > const&)>(std::tr1::_detail::_Hashtableiterator<std::pair<long const, TCountedPtr<TFSVolumeInfo> >, false, false>, std::tr1::_detail::_Hashtableiterator<std::pair<long const, TCountedPtr<TFSVolumeInfo> >, false, false>, void (*)(std::pair<long, TCountedPtr<TFSVolumeInfo> > const&)))(std::pair<long, TCountedPtr<TFSVolumeInfo> > const&) + 66
    7 com.apple.DesktopServices 0x915213df TFSVolumeInfo::Finalize() + 223
    8 com.apple.DesktopServices 0x9150ccc9 NodeContextClose + 510
    9 com.apple.AppKit 0x92ef1d9f _NSSavePanelContextEnd + 60
    10 com.apple.Foundation 0x97377ad9 __NSFireDelayedPerform + 537
    11 com.apple.CoreFoundation 0x94878edb __CFRunLoopRun + 8059
    12 com.apple.CoreFoundation 0x94876864 CFRunLoopRunSpecific + 452
    13 com.apple.CoreFoundation 0x94876691 CFRunLoopRunInMode + 97
    14 com.apple.HIToolbox 0x9047af0c RunCurrentEventLoopInMode + 392
    15 com.apple.HIToolbox 0x9047acc3 ReceiveNextEventCommon + 354
    16 com.apple.HIToolbox 0x9047ab48 BlockUntilNextEventMatchingListInMode + 81
    17 com.apple.AppKit 0x927adac5 _DPSNextEvent + 847
    18 com.apple.AppKit 0x927ad306 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    19 com.apple.AppKit 0x9276f49f -[NSApplication run] + 821
    20 com.apple.AppKit 0x92767535 NSApplicationMain + 574
    21 com.apple.iWork.Pages 0x0000d0a1 _gnu_cxx::newallocator<std::pair<unsigned char const*, Status ()(_xmlTextReader, SFMDI*)> >::construct(std::pair<unsigned char const*, Status ()(_xmlTextReader, SFMDI)>, std::pair<unsigned char const*, Status ()(_xmlTextReader, SFMDI*)> const&) + 497
    22 com.apple.iWork.Pages 0x0000cfa0 _gnu_cxx::newallocator<std::pair<unsigned char const*, Status ()(_xmlTextReader, SFMDI*)> >::construct(std::pair<unsigned char const*, Status ()(_xmlTextReader, SFMDI)>, std::pair<unsigned char const*, Status ()(_xmlTextReader, SFMDI*)> const&) + 240
    23 com.apple.iWork.Pages 0x0007cb7d _gnu_cxx::newallocator<std::pair<unsigned char const*, Status ()(_xmlTextReader, SFMDI*)> >::construct(std::pair<unsigned char const*, Status ()(_xmlTextReader, SFMDI)>, std::pair<unsigned char const*, Status ()(_xmlTextReader, SFMDI*)> const&) + 457933
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x97d510ea kevent + 10
    1 libSystem.B.dylib 0x97d51804 dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x97d50cc3 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x97d50a68 dispatch_workerthread2 + 234
    4 libSystem.B.dylib 0x97d504f1 pthreadwqthread + 390
    5 libSystem.B.dylib 0x97d50336 start_wqthread + 30
    Thread 2:
    0 libSystem.B.dylib 0x97d58806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x97d584c2 pthread_condwait + 1191
    2 libSystem.B.dylib 0x97d5a158 pthreadcondwait$UNIX2003 + 73
    3 com.apple.vImage 0x9176050c vImageQueue_DequeueJob + 44
    4 com.apple.vImage 0x9176060c vImageWorkerThreadFunc + 124
    5 libSystem.B.dylib 0x97d57fbd pthreadstart + 345
    6 libSystem.B.dylib 0x97d57e42 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x97d58806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x97d584c2 pthread_condwait + 1191
    2 libSystem.B.dylib 0x97d5a158 pthreadcondwait$UNIX2003 + 73
    3 com.apple.vImage 0x9176050c vImageQueue_DequeueJob + 44
    4 com.apple.vImage 0x9176060c vImageWorkerThreadFunc + 124
    5 libSystem.B.dylib 0x97d57fbd pthreadstart + 345
    6 libSystem.B.dylib 0x97d57e42 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x97d58806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x97d584c2 pthread_condwait + 1191
    2 libSystem.B.dylib 0x97d5a158 pthreadcondwait$UNIX2003 + 73
    3 com.apple.vImage 0x9176050c vImageQueue_DequeueJob + 44
    4 com.apple.vImage 0x9176060c vImageWorkerThreadFunc + 124
    5 libSystem.B.dylib 0x97d57fbd pthreadstart + 345
    6 libSystem.B.dylib 0x97d57e42 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x97d2a922 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x97d303e6 pthreadmutexlock + 490
    2 com.apple.Foundation 0x9735745f -[NSLock lock] + 201
    3 SFWordProcessing 0x01fbdbdd -[SFWPSpellThread pRun:] + 289
    4 com.apple.Foundation 0x973618d8 -[NSThread main] + 45
    5 com.apple.Foundation 0x97361888 _NSThread__main_ + 1499
    6 libSystem.B.dylib 0x97d57fbd pthreadstart + 345
    7 libSystem.B.dylib 0x97d57e42 thread_start + 34
    Thread 6 Crashed: Dispatch queue: TFSVolumeInfo::GetSyncGCDQueue
    0 com.apple.DesktopServices 0x914ac445 TFSVolumeInfo::GetVolumeSyncThread() + 83
    1 com.apple.DesktopServices 0x914ac391 TNode::PostNodeTaskRequest(TCountedPtr<TNodeTask> const&) const + 81
    2 com.apple.DesktopServices 0x914ac0fa TNode::RequestInternalTask(unsigned long, TPropertyValue const&) const + 172
    3 com.apple.DesktopServices 0x914b1672 TNode::RequestSynchronize(unsigned long) + 120
    4 com.apple.DesktopServices 0x914fa359 TNode::SynchronizeVolumes(bool, TCountedPtr<TVolumeSyncThread> const&) + 431
    5 com.apple.DesktopServices 0x914fe806 TNode::HandleChange(char*, unsigned long, TCountedPtr<TVolumeSyncThread> const&) + 1746
    6 com.apple.DesktopServices 0x914fa011 TNode::AddVolume(TCountedPtr<TVolumeSyncThread> const&, short, unsigned long, TNodePtr&, bool) + 1175
    7 com.apple.DesktopServices 0x914a60ea TNode::GetVolume(short, unsigned long, bool) + 382
    8 com.apple.DesktopServices 0x914a94b8 TNode::GetNodeFromFSInfo(TCountedPtr<TFSInfo> const&, TNodePtr&, unsigned long, bool) + 416
    9 com.apple.DesktopServices 0x914c8464 TNode::ResolveSharedFileListAliasIfNeeded() + 714
    10 com.apple.DesktopServices 0x914afcc9 TNode::SynchronizeChildren(unsigned long, TNodeEventPtrSet&) + 4409
    11 com.apple.DesktopServices 0x914ae6b0 TNode::HandleSync(unsigned long) + 886
    12 com.apple.DesktopServices 0x914ae306 TNode::HandleSync(TCountedPtr<TNodeTask> const&, TNodePtr const&) + 56
    13 com.apple.DesktopServices 0x915010c4 TNode::HandleNodeRequest(TCountedPtr<TNodeTask> const&, TCountedPtr<TVolumeSyncThread> const&) + 1154
    14 com.apple.DesktopServices 0x914ac78f _PostNodeTaskRequest_block_invoke2 + 94
    15 libSystem.B.dylib 0x97d5e828 dispatch_call_block_andrelease + 16
    16 libSystem.B.dylib 0x97d511f4 dispatch_queuedrain + 249
    17 libSystem.B.dylib 0x97d50c52 dispatch_queueinvoke + 50
    18 libSystem.B.dylib 0x97d50a68 dispatch_workerthread2 + 234
    19 libSystem.B.dylib 0x97d504f1 pthreadwqthread + 390
    20 libSystem.B.dylib 0x97d50336 start_wqthread + 30
    Thread 7:
    0 libSystem.B.dylib 0x97d49856 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x948b6ddd __CFSocketManager + 1085
    2 libSystem.B.dylib 0x97d57fbd pthreadstart + 345
    3 libSystem.B.dylib 0x97d57e42 thread_start + 34
    Thread 6 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x914ac406 ecx: 0xa015be50 edx: 0x1d71394c
    edi: 0x1d7138c0 esi: 0x00000000 ebp: 0xb059cd48 esp: 0xb059cd00
    ss: 0x0000001f efl: 0x00010246 eip: 0x914ac445 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x00000078
    Binary Images:
    0x1000 - 0x30afe0 com.apple.iWork.Pages 4.0.3 (766) <27708BB3-B7D6-CEB5-478A-96325025592E> /Applications/iWork '09/Pages.app/Contents/MacOS/Pages
    0x384000 - 0xe69ffe +SFCompatibility ??? (???) <E81FAD85-7A01-B091-77DD-4FEA6778363C> /Library/Application Support/iWork '09/Frameworks/SFCompatibility.framework/Versions/A/SFCompatibility
    0x158d000 - 0x15a6ffe com.apple.Keynote.sfstyles 1.0 (1.0) <D56EF867-7E9E-522B-A1BD-9751A76E4AA6> /Library/Application Support/iWork '09/Frameworks/SFStyles.framework/Versions/A/SFStyles
    0x15b7000 - 0x1a66ff5 com.apple.SFTabular 1.0 (1.0) <BB7F15F6-5815-CF52-125B-A1467F5CA1E2> /Library/Application Support/iWork '09/Frameworks/SFTabular.framework/Versions/A/SFTabular
    0x1c30000 - 0x1ce1ff7 com.apple.Keynote.sfutility 1.0 (0.0.1d1) <3EE1713F-84E5-553E-B715-F233A8C7FA07> /Library/Application Support/iWork '09/Frameworks/SFUtility.framework/Versions/A/SFUtility
    0x1d4f000 - 0x1edeff2 com.apple.Keynote.sfdrawables 2.0 (2.0) <9AE9A6AE-C7E1-7202-2C16-4BAF48C4875A> /Library/Application Support/iWork '09/Frameworks/SFDrawables.framework/Versions/A/SFDrawables
    0x1f9c000 - 0x2209fef +SFWordProcessing ??? (???) <9987F6AD-6BF8-E0EB-7C65-317CF1EA9602> /Library/Application Support/iWork '09/Frameworks/SFWordProcessing.framework/Versions/A/SFWordProcessing
    0x232d000 - 0x2377ff4 com.apple.Keynote.SFControls 1.0 (20030306_1) <978E2AEB-3643-FA18-1570-D88DA44A8136> /Library/Application Support/iWork '09/Frameworks/SFControls.framework/Versions/A/SFControls
    0x23a4000 - 0x23fafef com.apple.Keynote.sfarchiving 1.0 (0.0.1d1) <43B82C65-8218-E9D4-37B9-4C9D014F3FBE> /Library/Application Support/iWork '09/Frameworks/SFArchiving.framework/Versions/A/SFArchiving
    0x242b000 - 0x2538feb com.apple.Keynote.sfrendering 1.0 (1.0) <462C3895-BFFB-AE84-1460-0D8960F42AB7> /Library/Application Support/iWork '09/Frameworks/SFRendering.framework/Versions/A/SFRendering
    0x259b000 - 0x2623ff9 com.apple.Keynote.proofreader 0 (1) <8E1B3F70-DC06-FC1E-C14E-139CECD7BCF6> /Library/Application Support/iWork '09/Frameworks/SFProofReader.framework/Versions/A/SFProofReader
    0x2631000 - 0x26e7ff2 com.apple.Keynote.sfinspectors 1.0 (1.0) <A15F48EC-0290-045C-F21E-53C1C56B47A0> /Library/Application Support/iWork '09/Frameworks/SFInspectors.framework/Versions/A/SFInspectors
    0x2742000 - 0x2aa3ffa com.apple.Keynote.sfcharts 2.0 (2.0) <F8B8D581-9432-C1DF-3E64-E797BA0AB8B4> /Library/Application Support/iWork '09/Frameworks/SFCharts.framework/Versions/A/SFCharts
    0x2cd5000 - 0x2d0dffb com.apple.Keynote.SFAnimation 1.0 (0.0.1d1) <6A1C89D1-3231-F4E8-E385-878AD93E349C> /Library/Application Support/iWork '09/Frameworks/SFAnimation.framework/Versions/A/SFAnimation
    0x2d37000 - 0x2d61ff3 com.apple.Keynote.sflicense 1.0 (0.0.1d1) <88DE54B0-738C-9D91-88E4-254EFFF96286> /Library/Application Support/iWork '09/Frameworks/SFLicense.framework/Versions/A/SFLicense
    0x2d7d000 - 0x2e25ff8 com.apple.sf.sfapplication 1.0 (1.0) <E1DF5F54-4906-F9E0-FF72-097FB07960D2> /Library/Application Support/iWork '09/Frameworks/SFApplication.framework/Versions/A/SFApplication
    0x2e86000 - 0x2f3bfe7 libcrypto.0.9.7.dylib ??? (???) <39CDB041-9DF5-01B1-4B33-03EC4CCA40B3> /usr/lib/libcrypto.0.9.7.dylib
    0x2f81000 - 0x2fbdff7 com.apple.OSAKit 1.2.1 (76) <6F598EE9-9973-5983-2A71-56FF1AB0081B> /System/Library/Frameworks/OSAKit.framework/Versions/A/OSAKit
    0x2fe1000 - 0x307dffc com.apple.MobileMe 6 (1.0) <1C97CCA6-57E8-D0F5-20DE-32DAD3D17C1C> /Library/Application Support/iWork '09/Frameworks/MobileMe.framework/Versions/A/MobileMe
    0x30dc000 - 0x30e8fe7 libexslt.0.dylib ??? (???) <43856244-CC36-9DE9-3D60-D4F4D6F2825C> /usr/lib/libexslt.0.dylib
    0x3740000 - 0x3741fff +com.cooliris.safariplugin Cooliris Plugin (1.11) <515D9E0A-B1D1-6938-22E3-3FBBD8936FBE> /Library/InputManagers/Cooliris/Cooliris.bundle/Contents/MacOS/Cooliris
    0x5de5000 - 0x5de8fef com.apple.LiveType.component 2.1.3 (2.1.3) /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x16800000 - 0x16865fde com.apple.LiveType.framework 2.1.3 (2.1.3) /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x16885000 - 0x168f7fff +com.DivXInc.DivXDecoder 6.4.0 (6.4.0) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x1ad92000 - 0x1af03ff7 GLEngine ??? (???) <D336658A-F6DB-6D61-9CA6-04299E7D5420> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x1b0d8000 - 0x1b0f4ff7 GLRendererFloat ??? (???) <8FF7B576-512C-C2F8-4C0C-967FB3D9EEA2> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x1d37a000 - 0x1d38cff7 libTraditionalChineseConverter.dylib ??? (???) <C4E0D62B-4D1A-8DAD-D10B-2C055AA0479C> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x1d390000 - 0x1d39efe7 libSimplifiedChineseConverter.dylib ??? (???) <4C9CC2D9-2F13-4465-5447-2516FCD9255B> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x3e000000 - 0x3e046ff7 com.apple.glut 3.4.4 (GLUT-3.4.4) <DF15FD36-E1F5-D745-1BF6-DD3AEA2897E4> /System/Library/Frameworks/GLUT.framework/Versions/A/GLUT
    0x3f000000 - 0x3f41bfee +org.coin3d.Coin.framework 3.0.0a (3.0.0a) /Library/Application Support/iWork '09/Frameworks/Inventor.framework/Versions/C/Inventor
    0x8f706000 - 0x8fa7eff7 com.apple.GeForce7xxxGLDriver 1.6.6 (6.0.6) <B480321A-51C9-F064-F0F0-BB4DE28DD006> /System/Library/Extensions/GeForce7xxxGLDriver.bundle/Contents/MacOS/GeForce7xx xGLDriver
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <211AF0DD-42D9-79C8-BB6A-1F4BEEF4B4AB> /usr/lib/dyld
    0x90003000 - 0x901a0fef com.apple.JavaScriptCore 6531.21 (6531.21.9) <C3642BB4-3D06-B371-B4CD-0DF5DA646673> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x901a1000 - 0x901f7ff7 com.apple.MeshKitRuntime 1.0 (49.0) <BCB920E3-C567-3F37-D404-F518A256859E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x901f8000 - 0x90248ff7 com.apple.framework.familycontrols 2.0 (2.0) <E6CAB425-3E40-65A3-0C23-150C26E9CBBF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x90249000 - 0x90253ffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x90295000 - 0x9029fff7 com.apple.dotMacLegacy 3.2 (266) <6F2588BA-E801-1664-E60C-5BEC2AF924D0> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x902a0000 - 0x902a0ff7 com.apple.Accelerate 1.5 (Accelerate 1.5) <F642E7A0-3720-FA19-0190-E6DBD9EF2D9B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x903b8000 - 0x903b8ff7 com.apple.Carbon 150 (152) <608A04AB-F35D-D2EB-6629-16B88FB32074> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x903b9000 - 0x903f8ff7 com.apple.ImageCaptureCore 1.0 (1.0) <D8767350-A10D-B6B5-3A8D-05888A7758ED> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x90440000 - 0x90440ff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x90441000 - 0x90445ff7 libGFXShared.dylib ??? (???) <79F4F60E-0A6D-CE9C-282E-FA85825449E3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x90446000 - 0x90769fef com.apple.HIToolbox 1.6.2 (???) <E02640B9-7BC3-A4B4-6202-9E4127DDFDD6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9076a000 - 0x9076aff7 com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) <3E039E14-2A15-56CC-0074-EE59F9FBB913> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9076b000 - 0x90f95fe7 com.apple.WebCore 6531.21 (6531.21.8) <60DEC7F3-954D-F4C4-360A-13575EDCC40A> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x90fa7000 - 0x910abfe7 libcrypto.0.9.8.dylib ??? (???) <2E58547A-91CC-4C1A-9FCC-DA7515FDB68A> /usr/lib/libcrypto.0.9.8.dylib
    0x910ac000 - 0x910e4ff7 com.apple.LDAPFramework 2.0 (120.1) <681A0B2E-BCB2-D2BA-3D02-A4989E9C7686> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x910e5000 - 0x910e8fe7 libmathCommon.A.dylib ??? (???) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x910e9000 - 0x9112cff7 com.apple.NavigationServices 3.5.3 (181) <28CDD978-030E-7D4A-5334-874A8EBE6C29> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9112d000 - 0x911cafe3 com.apple.LaunchServices 362 (362) <8BE1C1A1-BF71-CE07-F3FB-6057D47AF461> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x911cb000 - 0x91244ff7 com.apple.PDFKit 2.5 (2.5) <58603BDB-337F-FBE3-EB11-7C31CF261995> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x91245000 - 0x9133bff7 libGLProgrammability.dylib ??? (???) <82D03736-D30C-C013-BBB1-20ED9687D47F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x9133c000 - 0x9137cff3 com.apple.securityinterface 4.0.1 (37214) <BBC88C96-8827-91DC-0CF6-7CB639183395> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x91466000 - 0x914a1fe7 com.apple.DebugSymbols 1.1 (70) <05013716-CFCF-801E-5535-D0643869BDCD> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x914a2000 - 0x9157cff3 com.apple.DesktopServices 1.5.3 (1.5.3) <DA02AC94-7B0C-BD75-2305-C46A307A5FB0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9157d000 - 0x9167ffef com.apple.MeshKitIO 1.0 (49.0) <E4436373-BF5D-9644-F8B7-B72762BEC08B> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x91680000 - 0x91692ff7 com.apple.syncservices.syncservicesui 5.1 (578) <9C72B435-21F3-DD39-A129-DB503258FE94> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
    0x91693000 - 0x91698ff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x91699000 - 0x91776ff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91777000 - 0x917acff7 libcups.2.dylib ??? (???) <AFDC4D3C-0FF4-D459-B26C-4BA1093F9142> /usr/lib/libcups.2.dylib
    0x917ad000 - 0x91805fe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x91806000 - 0x9184cff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
    0x91866000 - 0x91890ff7 com.apple.shortcut 1.1 (1.1) <B0514FA9-7CAE-AD94-93CA-7B2A2C5F7B8A> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x91891000 - 0x91892ff7 com.apple.audio.units.AudioUnit 1.6.2 (1.6.2) <845D5E0D-870D-B7E8-AAC5-8364AC341AA1> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x91893000 - 0x918b3fe7 com.apple.opencl 12 (12) <2DB56F60-577B-6724-5708-7B082F62CC0F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x918e0000 - 0x918f1ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <7A3862F7-3730-8F6E-A5DE-8E2CCEA979EF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x918f2000 - 0x91952fe7 com.apple.CoreText 3.1.0 (???) <79FD1B5C-2F93-4C5D-B07B-4DD9088E67DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x919c2000 - 0x919d6fe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x919d7000 - 0x919e1ff7 com.apple.CrashReporterSupport 10.6.2 (239) <746DBA09-A901-E5FE-8605-F5EC3D9359FF> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x919e2000 - 0x91af8fe3 com.apple.PubSub 1.0.4 (65.11) <7F349A71-C4E6-E645-B28D-03A7DD120AA6> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x91af9000 - 0x91b3dfe7 com.apple.Metadata 10.6.2 (507.4) <DBCBAE7D-7B34-7806-C0B9-1E6E6D45562F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91b3e000 - 0x91b65ff7 com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x91b66000 - 0x91b69ff7 libCoreVMClient.dylib ??? (???) <A89D7A78-8FB0-2BDF-30DB-A35E04A6186B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x91b6a000 - 0x91bc4fe7 com.apple.CorePDF 1.1 (1.1) <8ED0FB5F-D498-D012-DF09-DE5378D40D52> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x91bc5000 - 0x91befff7 com.apple.framework.Admin 4.0 (4.0) <4A434473-A6C1-3F40-2928-16CFF1222FA1> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
    0x91bf0000 - 0x91dacfef com.apple.ImageIO.framework 3.0.1 (3.0.1) <598CF4F9-7542-E1A7-26D2-584933497A2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91e29000 - 0x92190ff7 com.apple.QuartzCore 1.6.1 (227.8) <8B90AB08-46A4-1C5C-4E71-C6AB652477B9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x92191000 - 0x92192ff7 com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x92193000 - 0x921abff7 com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x921ac000 - 0x922d8feb com.apple.audio.toolbox.AudioToolbox 1.6.2 (1.6.2) <9AAFDCBE-C68C-3BB3-8089-83CD2C0B4ED7> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x922d9000 - 0x92333ff7 com.apple.framework.IOKit 2.0 (???) <1BE07087-27D5-0E62-F06B-007C2BED4073> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x92334000 - 0x92336fe7 com.apple.ExceptionHandling 1.5 (10) <21F37A49-E63B-121E-D406-1BBC94BEC762> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x92337000 - 0x9235bff7 libJPEG.dylib ??? (???) <649E1974-A527-AC0B-B3F4-B4DC30484070> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9235c000 - 0x9235cff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x9235d000 - 0x9236aff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x9236b000 - 0x92372ff7 com.apple.KerberosHelper 2.1 (1.0) <2E28DB03-60AF-1C7B-28B0-2768DFBF44EB> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x92373000 - 0x9266cfef com.apple.QuickTime 7.6.3 (1591.3) <803CC5FD-2369-83B5-795D-A8963620EFAC> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9266d000 - 0x9271afe7 libobjc.A.dylib ??? (???) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x9271b000 - 0x9271bff7 com.apple.vecLib 3.5 (vecLib 3.5) <17BEEF92-DF30-CD52-FD65-0B7B43B93617> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9271c000 - 0x92729ff7 com.apple.AppleFSCompression 1.0 (1.0) <DEF0B7B0-993B-F088-8F73-4318C3CA1F64> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x9272d000 - 0x92764fe7 libssl.0.9.8.dylib ??? (???) <95FE66AC-C850-4AB4-DD3F-7F198A5E1EAC> /usr/lib/libssl.0.9.8.dylib
    0x92765000 - 0x93043ff7 com.apple.AppKit 6.6.3 (1038.25) <72A9AA47-8DCB-DB07-64F5-F837E98C62D8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93044000 - 0x930b2ff7 com.apple.QuickLookUIFramework 2.1 (327.3) <2F51D9CB-F827-E0AF-F201-5F4244C0D02A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x930c9000 - 0x9314bffb SecurityFoundation ??? (???) <29C27E0E-B2B3-BF6B-B1F8-5783B8B01535> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9314c000 - 0x931faff3 com.apple.ink.framework 1.3.1 (105) <CA3FBDC3-4BBA-7BD9-0777-A7B0751292CD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x931fb000 - 0x93269ff7 com.apple.ISSupport 1.9.2 (50) <A9BDA884-D0AF-9F39-0840-8B7F5E8E2031> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x9326a000 - 0x9329fff7 libGLImage.dylib ??? (???) <A6007BF7-BF3C-96DC-C435-849C6B88C58A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x932a0000 - 0x932b0ff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x932ca000 - 0x93372ffb com.apple.QD 3.33 (???) <196CDBA6-5B87-2767-DD57-082D71B0A5C7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x93373000 - 0x933c0ff7 com.apple.ExchangeWebServices 1.1 (56) <E9538DF4-F348-51B8-C161-4F5AB983CDDC> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0x933c1000 - 0x933e3fef com.apple.DirectoryService.Framework 3.6 (621.1) <3ED4949F-9604-C109-6586-5CE5F421182B> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x933e4000 - 0x94372ff7 com.apple.QuickTimeComponents.component 7.6.3 (1591.3) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x94373000 - 0x943b4ff7 libRIP.A.dylib ??? (???) <9F0ECE75-1F03-60E4-E29C-136A27C13F2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x943b5000 - 0x943bbff7 libCGXCoreImage.A.dylib ??? (???) <5233872A-EAC6-1D42-3959-6CE6C5DEB931> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x943bc000 - 0x943d1fff com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x943d9000 - 0x94492fe7 libsqlite3.dylib ??? (???) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x94493000 - 0x944c6ff7 com.apple.AE 496.1 (496.1) <1AC75AE2-AF94-2458-0B94-C3BB0115BA4B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x944c7000 - 0x94591fef com.apple.CoreServices.OSServices 352 (352) <D9F21CA4-EED0-705F-8F3C-F1322D114B52> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x94594000 - 0x946b8ff7 com.apple.CoreAUC 5.03.2 (5.03.2) <38C77DF1-6F98-4ABF-BE8F-ADA70E9C622D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x946b9000 - 0x946d9fe7 libresolv.9.dylib ??? (???) <A48921CB-3FA7-3071-AF9C-2D86FB493A3A> /usr/lib/libresolv.9.dylib
    0x946da000 - 0x94700fe3 com.apple.speech.LatentSemanticMappingFramework 2.7.2 (2.7.2) <EB422111-E732-2AE0-0CFD-1D8B713B2EC9> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x94701000 - 0x9474afe7 libTIFF.dylib ??? (???) <5864AE5B-EAEB-F8B6-18FB-3D27B7895A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9474b000 - 0x9475fffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x94760000 - 0x9476dff7 libbz2.1.0.dylib ??? (???) <495732E1-2AC4-44FC-E633-4CBCC503B924> /usr/lib/libbz2.1.0.dylib
    0x9476e000 - 0x947bbfeb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x947bc000 - 0x947d9fe7 com.apple.DotMacSyncManager 2.0.1 (446.3) <BD225ADB-29C9-B507-210D-2CFC53459EBD> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x947da000 - 0x94802ff7 libxslt.1.dylib ??? (???) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x94803000 - 0x9483afe7 libcurl.4.dylib ??? (???) <D6299871-E1C9-5238-FE18-0B3C02025376> /usr/lib/libcurl.4.dylib
    0x9483b000 - 0x949b2fef com.apple.CoreFoundation 6.6.1 (550.13) <AE9FC6F7-F0B2-DE58-759E-7DB89C021A46> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x949b3000 - 0x949bdff7 libGL.dylib ??? (???) <76A207FE-889A-CF1B-AF9A-795EEE5A463E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x949be000 - 0x949dcff7 com.apple.CoreVideo 1.6.0 (43.1) <1FB01BE0-B013-AE86-A063-481BB547D2F5> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x949dd000 - 0x94a2dfe7 libGLU.dylib ??? (???) <659ADCA2-10EC-59BD-1B0A-4928A965F1D1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x94a2e000 - 0x94a31ff7 libCGXType.A.dylib ??? (???) <483FCF1C-066B-D210-7355-ABC48CA9DB2F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x94a32000 - 0x94ab2feb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x94ab3000 - 0x94ab3ff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x94ab4000 - 0x94dadff3 com.apple.RawCamera.bundle 2.3.0 (505) <1C7CEA30-FFE2-B4DE-98CE-D6518DF1E54B> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x94def000 - 0x94df9ff7 com.apple.bsd.ServiceManagement 1.0 (1.0) <B007CBE8-2539-CC71-9675-9EC04196921F> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x94ea3000 - 0x94ea3ff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x94ea4000 - 0x94eb0ff7 libkxld.dylib ??? (???) <3D2C5BA3-6A8D-C861-B346-0E19942D9AF1> /usr/lib/system/libkxld.dylib
    0x94eb1000 - 0x94fbeff7 com.apple.MediaToolbox 0.420.18 (420.18) <31935D52-1F8D-4AB2-CCA5-4CF615CBCE24> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x94fbf000 - 0x94fc3ff7 IOSurface ??? (???) <C11D3FF3-EB51-A07D-EF24-9C2004115724> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x94fc4000 - 0x94fd6ff7 com.apple.MultitouchSupport.framework 204.9 (204.9) <B639F02B-33CC-150C-AE8C-1007EA7648F9> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x94fd7000 - 0x95159fe7 libicucore.A.dylib ??? (???) <2B0182F3-F459-B452-CC34-46FE73ADE348> /usr/lib/libicucore.A.dylib
    0x9515a000 - 0x95197ff7 com.apple.SystemConfiguration 1.10.1 (1.10.1) <BA676C76-6AAD-F630-626D-B9248535294D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x95198000 - 0x951fcffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x951fd000 - 0x952d8ff7 com.apple.DiscRecording 5.0.3 (5030.4.2) <CC86EBA6-5E48-32C0-77AE-81479DFF6D4A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x952ec000 - 0x9531dff3 libTrueTypeScaler.dylib ??? (???) <6C8916A2-8F85-98E0-AAD5-0020C39C0FC9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x9531e000 - 0x95549ff3 com.apple.QuartzComposer 4.1 (156.10) <24293329-50D7-D12F-51B3-57976A4E52B1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x9554a000 - 0x9558afe7 com.apple.DAVKit 4.0.1 (730) <2F07D7D0-9D31-67BC-8000-FAFF7EBB8643> /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x9558b000 - 0x955dcff7 com.apple.HIServices 1.8.0 (???) <B8EC13DB-A81A-91BF-8C82-66E840C64C91> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x955e2000 - 0x955e9ff7 com.apple.NSServerNotificationCenter 2 (1.0) <63EAE599-362C-CD27-CC18-1F211C12B8B8> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x955ea000 - 0x956f1fe3 com.apple.DiskImagesFramework 10.6 (281) <B57DDA36-9B4B-9D57-7072-91D531BDD2BC> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x956f2000 - 0x956f9ff7 com.apple.agl 3.0.12 (AGL-3.0.12) <6BF89127-C18C-27A9-F94A-981836A822FE> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x956fa000 - 0x95a19fe7 com.apple.CoreServices.CarbonCore 861.2 (861.2) <A9077470-3786-09F2-E0C7-F082B7F97838> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x95b74000 - 0x96022fe7 com.apple.VideoToolbox 0.420.18 (420.18) <CB16BB7D-FBE2-A2AD-490A-18479A8321BA> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x96023000 - 0x9605dffb libFontRegistry.dylib ??? (???) <72342297-E8D6-B071-A752-014134129282> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x9605e000 - 0x96061ffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x96062000 - 0x96115fff libFontParser.dylib ??? (???) <FAD5E96D-CF93-CC86-6B30-A6594B930772> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x9615d000 - 0x961d4fe3 com.apple.backup.framework 1.2 (1.2) <411D14B1-0E2D-25FF-F329-CE92C70DDEC3> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x961d5000 - 0x961d7ff7 com.apple.securityhi 4.0 (36638) <962C66FB-5BE9-634E-0810-036CB340C059> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x96209000 - 0x9627dfef com.apple.CoreSymbolication 2.0 (23) <8A04EA5F-83F8-5E15-B2E0-8A727C9C4E8B> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x9627f000 - 0x962b6ff7 com.apple.CoreMedia 0.420.18 (420.18) <43747711-B334-B0C7-4971-15FA586DAFBF> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x962b7000 - 0x96325ff7 com.apple.WhitePagesFramework 10.6.0 (140.0) <132A7CF8-D073-0F35-E9A4-777E5EBAC1EE> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x96326000 - 0x96327ff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x96328000 - 0x9632cff7 libGIF.dylib ??? (???) <83FB0DCC-355F-A930-E570-0BD95086CC59> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9632d000 - 0x9636bff7 com.apple.QuickLookFramework 2.1 (327.3) <BAF90576-16DF-13E6-9756-31537076E843> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x96396000 - 0x963a0fe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x963a1000 - 0x963f1ff7 com.apple.Symbolication 1.1 (67) <E0C94D8B-4F12-49E6-BAA5-3B00441A047B> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x963f2000 - 0x96808ff7 libBLAS.dylib ??? (???) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x96809000 - 0x969caff7 com.apple.CalendarStore 4.0.1 (973) <E959BD58-B4FF-CD3B-78A0-F260851145E5> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x969cb000 - 0x969fbff7 com.apple.MeshKit 1.0 (49.0) <435718C1-ED40-6BCC-F0D8-67FA05CFFF1E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x969fc000 - 0x96a66fe7 libstdc++.6.dylib ??? (???) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x96a7b000 - 0x96bbafe3 com.apple.QTKit 7.6.3 (1591.3) <18F25C19-F0B8-5907-D6D6-65EC53DF0D3B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x96bbb000 - 0x96ff0ff7 libLAPACK.dylib ??? (???) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x96ff1000 - 0x97061ff3 com.apple.AppleVAFramework 4.7.5 (4.7.5) <464A915D-E670-FA22-7799-454259D42B82> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x97062000 - 0x97190fe7 com.apple.CoreData 102.1 (250) <F33FF4A1-D7F9-4F6D-3153-E5F2588479EB> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x97191000 - 0x9719bff7 com.apple.HelpData 2.0.4 (34) <9128FFEB-0F6C-B273-FCF4-D87A20227345> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x9719c000 - 0x971aafe7 libz.1.dylib ??? (???) <7B7A02AB-DA99-6180-880E-D28E4F9AA8EB> /usr/lib/libz.1.dylib
    0x971ab000 - 0x971b1ff7 com.apple.DisplayServicesFW 2.2 (2.2) <72C790A9-F4D2-DA92-015B-4CAF478FC0C2> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x97205000 - 0x9723bfff libtidy.A.dylib ??? (???) <DDFAB560-3883-A6A2-7BDD-D91730982B48> /usr/lib/libtidy.A.dylib
    0x9723c000 - 0x97257ff7 libPng.dylib ??? (???) <3F8682CD-C05B-607D-96E7-767646C77DB8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x97258000 - 0x97296fe7 com.apple.MediaKit 10.0 (472) <8B1C89AF-6A2A-8D01-D723-22A4DBEA7760> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x972d0000 - 0x9734afef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <1F97B48A-327B-89CC-7C01-3865179716E0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9734b000 - 0x975bbffb com.apple.Foundation 6.6.1 (751.14) <CD815A50-BB33-5AA1-DD73-A5B07D394DDA> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x975bc000 - 0x9766bff3 com.apple.ColorSync 4.6.2 (4.6.2) <F3F097AC-FDB7-3357-C64F-E28BECF4C15F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9766c000 - 0x97692fff com.apple.DictionaryServices 1.1.1 (1.1.1) <02709230-9B37-C743-6E27-3FCFD18211F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x97693000 - 0x977d4ff7 com.apple.syncservices 5.1 (578) <88BAF2E9-3A67-EEAB-2EBF-4F7D1D28B39E> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x977d5000 - 0x97811fff com.apple.CoreMediaIOServices 124.0 (850) <5F9B1AA3-8BB3-4E8C-2A31-F8FD5EC3F28A> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x97812000 - 0x97856ff3 com.apple.coreui 2 (113) <D0FA9B36-3708-D5BF-0CC3-6CC1909BC8E6> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x97857000 - 0x97b4bfe7 com.apple.MessageFramework 4.2 (1077) <47B00FD8-26E6-6AF4-1FFE-6B42DB3415A1> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x97b4c000 - 0x97b57ff7 libCSync.A.dylib ??? (???) <9292E6E3-70C1-1DD7-4213-1044F0FA8381> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x97b58000 - 0x97b5aff7 libRadiance.dylib ??? (???) <462903E2-2E77-FAE5-4ED6-829AAB1980A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x97b5b000 - 0x97b64ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x97b65000 - 0x97b72ff7 com.apple.opengl 1.6.5 (1.6.5) <0AE8B897-8A80-2C14-D6FC-DC21AC423234> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x97b73000 - 0x97c57ff7 com.apple.WebKit 6531.21 (6531.21.8) <0C45DB5C-D81F-BFFE-232D-7E6F647E597F> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x97c58000 - 0x97cc9ff7 com.apple.iLifeMediaBrowser 2.1.3 (346.0.3) <C862CAE1-1906-CD45-7D66-F8798483BAA5> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x97cca000 - 0x97d0cfe7 libvDSP.dylib ??? (???) <8F8FFFB3-81E3-2969-5688-D5B0979182E6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x97d0d000 - 0x97d29fe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x97d2a000 - 0x97ecefeb libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
    0x97ecf000 - 0x97f08fe7 com.apple.bom 10.0 (164) <CC61CCD7-F76C-45DD-6666-C0E0D07C7343> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x97f09000 - 0x97f51fff com.apple.iCalendar 1.0.1 (51) <3FF8D7DB-CA31-ADC2-23E9-E1254EAF8BB2> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x97f52000 - 0x97f58fff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x98008000 - 0x981eafff com.apple.imageKit 2.0.1 (1.0) <3CD99122-4DC8-00CE-4BD7-E3E1E1C71C30> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x98221000 - 0x98290ff7 libvMisc.dylib ??? (???) <59243A8C-2B98-3E71-8032-884D4853E79F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x98291000 - 0x98491feb com.apple.AddressBook.framework 5.0.1 (864) <878FE5D9-6C49-000F-D5D1-DF8054BFC0F0> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x98492000 - 0x9852efe7 com.apple.ApplicationServices.ATS 4.1 (???) <EA26375D-8276-9671-645D-D28CAEC95292> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x98534000 - 0x98544ff7 libsasl2.2.dylib ??? (???) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x98545000 - 0x98d284b7 com.apple.CoreGraphics 1.536.12 (???) <263EB5FC-DEAD-7C5B-C486-EC86C173F952> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x98d29000 - 0x98f8bfe7 com.apple.security 6.1.1 (37594) <9AA7D9BF-852F-111F-68AD-65DD760D4DF3> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x98f8c000 - 0x99167ff3 libType1Scaler.dylib ??? (???) <F9FEA41E-F079-87B8-04A9-7FF3B2931B79> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x99168000 - 0x99269fe7 libxml2.2.dylib ??? (???) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x9926a000 - 0x9926aff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9926b000 - 0x99303fe7 edu.mit.Kerberos 6.5.9 (6.5.9) <73EC847F-FF44-D542-2AD5-97F6C8D48F0B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x99304000 - 0x993b3fe3 com.apple.QuickTimeImporters.component 7.6.3 (1591.3) <2E2381EB-5E5E-B714-C65D-FCE349E77094> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x993b4000 - 0x99445fe7 com.apple.print.framework.PrintCore 6.1 (312.3) <6D4322AF-703C-CC19-77B4-53E6D3BB18D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x99446000 - 0x994edfe7 com.apple.CFNetwork 454.5 (454.5) <A7E78E62-0C59-CE57-73D2-C4E60527781C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x994ee000 - 0x994f5fff com.apple.print.framework.Print 6.0 (237) <7A06B15C-B835-096E-7D96-C2FE8F0D21E1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x994f6000 - 0x994fbff7 com.apple.AOSNotification 1.1.0 (123.3) <0386E48C-4095-1D2A-629A-83B7711550F3> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x994fc000 - 0x995cdfe3 ColorSyncDeprecated.dylib ??? (???) <1CEB1F35-EF10-A63D-AD9E-D7BD391D4719> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0xba300000 - 0xba301fe7 libCyrillicConverter.dylib ??? (???) <7CF64AB7-ABFE-6F8F-8F50-C7460A5B3A92> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
    0xba500000 - 0xba501ff7 libGreekConverter.dylib ??? (???) <1AB8227F-468F-B285-B4B4-14B7D202ED36> /System/Library/CoreServices/Encodings/libGreekConverter.dylib
    0xba900000 - 0xba916ff7 libJapaneseConverter.dylib ??? (???) <4FB5CEEB-8D3E-8C57-1718-81D7CAFBFE69> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe7 libKoreanConverter.dylib ??? (???) <A23F9980-5CC8-A44D-6FD6-DBFCBFF4FF28> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xbb500000 - 0xbb500ff7 libThaiConverter.dylib ??? (???) <5B51E9C4-40C4-26B7-5CA2-CD27D78CFA27> /System/Library/CoreServices/Encodings/libThaiConverter.dylib
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib

  • Source filename during runtime for link file (txt, image)

    hi,
    I want to pass the value or path of the source filename to the link file object I placed in the report.
    how can I do that..
    please help me out.
    regards

    Hello,
    You can use the "Read From File" property :
    http://www.oracle.com/webapps/online-help/reports/10.1.2/topics/htmlhelp_rwbuild_hs/rwcontxt/props/pi_col_read_from_file.htm
    Regards

  • Unable to browse for multiple file upload

    SharePoint 2010, Windows 7 Enterprise 64bit, IE 11 32bit - on this PC i have 1 user who does not get the option to browse and select multiple files to upload to a library. I can log on to the same PC and do that function no problems.
    I have checked all the things in other posts like the  stsupld.dll version, trusted sites, active X, compatibility mode etc etc.
    The upload multiple documents is not greyed out and this user has been able to do this before on a different PC which is same desktop SOE. Appears to related to part of the users profile maybe in the appdata.
    Scratching the head now and not sure where to look next.
    Any help appreciated

    Hi,As you said is correct.It seems the issues is with the user profiles in the PC.I think no use of  removing the user from site collection and re-added back also because,As you said he can able to Do the same function in different PC.I would suggest
    to re-add the user in PC.
    Anil Avula[MCP,MCSE,MCSA,MCTS,MCITP,MCSM] See Me At: http://expertsharepoint.blogspot.de/

  • Safari doesn't seem to load youtube videos after browsing for awhile. Anyone else experiencing this?

    After every 30 mins or so browsing youtube videos on Safari, the videos stop loading. Seems to be a problem with Flash or something. But everything is up to date. Never happens when I use Chrome. I have to always quit Safari and run it again. But the problem still persists. Anybody care to provide some help?

    Thanks. That helped. I took another users advice as well.
    chuckone
    Re: Problem viewing YouTube Videos 
    May 17, 2012 9:31 PM (in response to SamEgypt)
    Try going here http://www.youtube.com/html5  and check to make sure you are not opted-in to this HTML5 trial as I was. I was having problems similar to what you've described, as soon as I opted out of the HTML5 trial YouTube videos on Safari 5.1.7 are working fine. By the way I am also running 10.7.4.

  • Crashing when browsing for files

    Everytime I open a window to browse for a file, Dreamweaver crashes... I am using the 30-day trial... any suggestions?

    Sure. I understand.
    In that case, file a bug report: https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    Beth

  • File Server Role: Slow access for "opened files" and slow Explorer browsing

    Since we migrated our fileserver from Windows Server 2008 R2 to Windows Server 2012 we are facing two major problems:
    1. Opening files which are already opened by other users takes about 1 minute before the file actually opens. This is not only for Office files such as Excel and Word, but also for other (not office) files. Again, this problem only rises when the file(s)
    is/are already opened by another user. There seems to be a sort of "Lock" check time which is about 45 to 60 seconds.
    2. The other problem is browsing via Explorer through the network drive (all clients are Windows 7 clients). Half of the time there is some kind of "hick up" with displaying the results of the folder. I cannot figure out a patern, but if there
    is no "hick up" then browsing is very fast (also in the busiest times of the working day)... If there is a "hick up" the result can take about 50 seconds to display the content of a folder.
    I suspect the SMB implementation / settings of Windows Server 2012 which are causing the problems...
    Things I tried:
    1. Changed the Oplocks wait time to 10 seconds (which is the minimum). The result is that openening files does indeed go some faster (still taking about 45 seconds).
    2. Disabled SMB2: the result is that browsing is fast... Opening files does go faster. BUT: we are then facing other problems like some files are not able to open... This setting was, after getting a lot of complaints from the users, changed back to enabled
    SMB2.
    3. Within the NIC card properties I disabled "QoS packet Scheduler", "Link-Layer Topology Discovery Mapper I/O Driver", "Link-Layer Topology Discovery Responder" and IPv6 (as we only use IPv4).
    All above with not the promising results.
    The server is a dedicated (virtual machine on vSphere 5.1) fileserver.
    Please Advice since this is not workable, and we have postponed the migration of the fileserver for our aother location.

    Hi Dave,
    I suggest you disable all third party applications like Anti-Virus application to test if it could reduce the waiting time when accessing a file.
    Here are some related threads below that could be useful to you:
    DFS Slowness when Opening Microsoft Documents and Excel Spreadsheets
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/61ec9a99-0027-44cb-815c-0da9276c1c96/dfs-slowness-when-opening-microsoft-documents-and-excel-spreadsheets?forum=winservergen
    Opening files over network takes long time
    http://social.technet.microsoft.com/Forums/windows/en-US/c8ddb65f-8a17-4cee-afd4-dfc09e99d562/opening-files-over-network-takes-long-time?forum=w7itpronetworking
    opening folder or file takes over a minute on Windows 2008R2 File server
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/b9aa98c4-3ef7-4e6d-810d-6099e72b33f6/opening-folder-or-file-takes-over-a-minute-on-windows-2008r2-file-server?forum=winserverfiles
    Best Regards,
    Amy Wang

Maybe you are looking for

  • Volume button not working with music

    I have tried restartingy phone, I have done rewet as well. even after all this, the problem still exist. restarting the phone does solve the problem, but thats temporarily only. On an average, I have to restart my phone 2-3 times a day. also many a t

  • Oracle Application Server 10g R2 and UniVerse

    Has anyone had any experience trying to implement App Server with non-oracle database such as UniVerse. I'd only like to find out if it is possible and where I can get documentation on how to go about this. Any replies are appreciated. Thanks in adva

  • My ITunes Library has a Duplicate of every song

    Trying to load music on a new IPod.  Have discovered that My ITunes Library has a duplicate of every song.  Makes it very difficult to transfer albums. 

  • Dependent documents for given FI document

    Dear Friends, Can i seek your help to know if there is any standard report existing to list all the documents related to SD / MM for a given FI Accounting Document (the document number of FB03). Thanks for helping me to know. BR, Ravi

  • I want to change from mozilla firefox to internet explorer. How?

    I want to keep Mozilla Firefox as a browser but i want to make internet explorer my default browser. The problem is i don't have access to the control panel. Is it possible to do this without access to the control panel?