Forte crashes Win98 when java file compiled

Have just installed Forte 2.0 in my Win 98, 450 MH P4, 320 MB RAM. Have been using MS Dos command window to compile and run. Can use Forte to edit and save changes to existing programs but when compiled system crashes. PATH point to JAVAC.exe directory. Have set up Project and mounted directory java programs reside in. Need suggestions? Reinstall Forte? Uninstall first? Other? Appreciate e-mail answer as well as forum answer as I am not familar with forum.

Try uninstalling and reinstalling Forte. Check you have the latest stable release of the JDK and Forte. If all else fails, forget forte, and try another free IDE, to see if you get any similar problems (unlikely).
Be aware that Forte is not G*d's gift to programmers (IMHO) - think of it more as a curse. You could try JBuilder4 Professional if you are prepared to spend some money. Although not free, the professional version is streets ahead of Forte.

Similar Messages

  • Weblogic restart when java files compiled

    when ever i compile java filesi need to restart my weblogic server to effect the compiled classfiles.
    to avoid this what i need to do?
    Do we need to change any properties in xml files or in weblogic administrator

    Make a shortcut to http://dev2dev.bea.com/index.jsp (dev2dev) and http://forums.bea.com/cgi-bin/dnewsweb (Weblogic forums)

  • Crash iTunes when moving files in downloads list?

    Twice in a row now I've been able to crash iTunes when moving files in the Downloads list (trying to change the priority).
    This happened twice when I tried to drag a file up above the list to get the list to scroll. iTunes would thrash the disk for about ten seconds, and then crash with no error.
    Is this a known issue?

    Just to clarify, this only happened when the view was down near the bottom of the list, and I wanted to move a file up to the top. Moving files around in the list worked fine if I moved the file within the viewable area of the screen.

  • Where are the .java files compiled from .jsp files stored?

              hi,
              I'm new to weblogic server. When I use Tomcat as the jsp server, it compiles .jsp
              files to .java files and then .class files. So when an error reported I can track
              it in the .java file.
              But what should I do with weblogic? It only saves the .class files in the work
              dir. Or is there a better way to trace errors in jsp files?
              Thanks!
              

    This should give you the information you need to set the keepgenerated flag:
              http://e-docs.bea.com/wls/docs60/jsp/admin.html#53346
              Also, the .java files will be right next to the .class files with are under
              a tmp directory in the /WEB-INF directory under the WEB-INF if it is an open
              directory or in the
              config/mydomain/applications/.wl_temp_do_note_delete/WEB-INF directory if it
              is .war file.
              Sam
              "Raymond" <[email protected]> wrote in message
              news:3b931619$[email protected]..
              >
              > Thanks, but can you tell me more about it? where to set this flag? I'm
              using WLS
              > 6.0sp1.
              >
              > "Sam Pullara" <[email protected]> wrote:
              > >You can turn on the keepgenerated flag if you want to keep the .java
              > >files.
              > >How you do this depends on what version you are using.
              > >
              > >Sam
              > >
              

  • .java files compile but cannot execute

    Hello,-
    I have a small problem in that the compiler can find the .java file (javac javaFile.java), however the execute command (java javaFile) does not work (Exception in thread "main" java.lang.NoClassDefFoundError: javaFile). I'm using Windows Vista and JDK 1.6.0_02. Which one of the environment variables is responsible for file execution?
    Thanks beforehand, Vahagn

    @ smithberry: Now it executes! Thanks for pointing that out and apologies for not seeing the space before the filename. But how come this is at all necessary? Do I have to run all my java programs with this command from now on, including the JUnit TestCase extensions?

  • .java file compiling but not executing in jdk6

    Using javac in jdk6 I can compile a .java file but cant executing the same using java command from my own directory. I can still compile and execute the same file from jdk\bin directory. I am using windows XP Home. While executing the .java file from my own directory, it fires a message: "The Java class could not be loaded. java.lang.UnsupportedClassVersionError: Myfilename (Unsupported major.minor Version 50.0)". i have set path in environment variable as "C:\sun\sdk\jdk\bin" where jdk placed in sun\sdk.
    Please help me to solve the problem

    This isn't information we can give you. You have to set it up based on your system.
    Do you understand how execution paths work? There's a list of filesystem paths, separated by a semicolon or a colon depending on the system, all concatenated into one big string. The entries earlier in the string are looked in first.
    So if your path has this:
    c:\Windows\java;c:\sun\sdk\jdk\bin
    Then if you type "java" from the command line, the Windows one would be executed, not the JDK 6 one.

  • JSP precompilation and my .java files compilation issues /  building WAR file using ANT

    Hello.
    I am new to working with WAR files and the whole process of it. A little
    background on what we are using. We are using, WLS 6.1 SP3. I am using the
    ant.bat that is supplied in the bin directory of the WLS install.
    I am trying to work with ANT and getting it to build the file. I am making
    progress, but at a point where I am having trouble getting my java code
    files to compile using ant. I am having one issue and looking to do one
    other item.
    1) I would like to precompile the JSPs if possible prior to putting into the
    WAR file. Not sure if this is done or not, but there was a utility when I
    was working with ibm's app server that gave us the ability to do a batch
    complile. Was thinking that maybe a similair concept is possibly here.
    2) Having issue getting ant to compile code properly. In the compile
    section of the build.xml file for ant, I tell it where the source files are,
    and the destionation folder for the compiled class files. I then try to set
    the classpath so that it finds the .jar files that are necessary for my
    source files to complile. But, it won't find them. And not sure how come.
    I may be going about this all wrong, but dont know. Here is the compile
    section of the build.xml I am using:
    <target name="compile" depends="prepare">
    <javac srcdir="classes" destdir="${deploy.home}/WEB-INF/classes"
    classpath="$(lib.home)"
    debug="on" optimize="on" deprecation="off"/>
    </target>
    One note, I've tried many different items in the classpath line, which
    don't work. if I do *.jar it fails at complie time, invalid argument. As
    well as if I use *.* and so on. if I list the explicit file names, it still
    doesn't seem to find them.
    I was wondering if anyone could help, if you need anymore information let me
    know, I can send the entire build.xml if necessary. I may be missing
    items, seeing that this is my first try at using ANT.
    Any help is appreciated and thanks in advance. Hopefully not sounding too
    off the wall. Hopefully get some clarification and understanding.
    Thank you.
    Kevin.

    Kevin Price wrote:
    Hello.
    I am new to working with WAR files and the whole process of it. A little
    background on what we are using. We are using, WLS 6.1 SP3. I am using the
    ant.bat that is supplied in the bin directory of the WLS install.
    I am trying to work with ANT and getting it to build the file. I am making
    progress, but at a point where I am having trouble getting my java code
    files to compile using ant. I am having one issue and looking to do one
    other item.
    1) I would like to precompile the JSPs if possible prior to putting into the
    WAR file. Not sure if this is done or not, but there was a utility when I
    was working with ibm's app server that gave us the ability to do a batch
    complile. Was thinking that maybe a similair concept is possibly here.you can use weblogic.jspc
    http://e-docs.bea.com/wls/docs70/jsp/reference.html#57794
    or just set the precompile flag in weblogic.xml
    You can configure WebLogic Server to precompile your JSPs when a Web
    Application is deployed or re-deployed or when WebLogic Server starts up
    by setting the precompile parameter to true in the <jsp-descriptor>
    element of the weblogic.xml deployment descriptor.
    >
    2) Having issue getting ant to compile code properly. In the compile
    section of the build.xml file for ant, I tell it where the source files are,
    and the destionation folder for the compiled class files. I then try to set
    the classpath so that it finds the .jar files that are necessary for my
    source files to complile. But, it won't find them. And not sure how come.
    I may be going about this all wrong, but dont know. Here is the compile
    section of the build.xml I am using:
    <target name="compile" depends="prepare">
    <javac srcdir="classes" destdir="${deploy.home}/WEB-INF/classes"
    classpath="$(lib.home)"
    debug="on" optimize="on" deprecation="off"/>
    </target>
    maybe because you are not using curly braces there on lib.home??
    if you do it the way above, you would have to list all your jars
    classpath="$(lib.home)\lib1.jar:$(lib.home)\lib2.jar"
    or you can nest
    <javac srcdir="classes" destdir="${deploy.home}/WEB-INF/classes"
    debug="on" optimize="on" deprecation="off">
         <classpath>
              <fileset dir="${lib.home}" includes="*.jar" />
         </classpath>
    </javac>
    One note, I've tried many different items in the classpath line, which
    don't work. if I do *.jar it fails at complie time, invalid argument. As
    well as if I use *.* and so on. if I list the explicit file names, it still
    doesn't seem to find them.
    I was wondering if anyone could help, if you need anymore information let me
    know, I can send the entire build.xml if necessary. I may be missing
    items, seeing that this is my first try at using ANT.
    Any help is appreciated and thanks in advance. Hopefully not sounding too
    off the wall. Hopefully get some clarification and understanding.
    Thank you.
    Kevin.

  • How to make the java files compile for a project created outside of Eclipse

    Hi^^,
    I have created a project outside of Eclipse. It has the following folders
    1. config
    2. source
    3. WEB-INF
    I want to execute the project on remote server. Will it compile automatically creating a new folder for .class files corresponding to the source folder or do i need to include a build.xml to enable the project to create a new folder for .class files. Also pls tell me how do I write this build.xml
    Please advise.

    Hi^^,
    Actually I have created a project without using eclipse.
    My source files are inside WEB-INF/source
    Now I want to compile the files using build.xml so that I can create class files. I am using the following build.xml
    <project name="jsp" default="all" basedir="./">
      <property environment="env"/>
      <property file="ArmorJSP.properties"/>
      <!-- set global properties for this build -->
      <property name="source" value="."/>
      <target name="all" depends="copy, jspc, testservlet"/>
      <!-- Creates jsp_servlet directory under WEB-INF\classes of the Examples Web
        APP and places the compiled jsp classes into it -->
      <target name="jspc">
        <!-- Run ejbc to create the deployable jar file -->
        <java classname="weblogic.jspc" fork="yes">
          <arg line="-webapp ${APPLICATION_HOME} -compileAll -d ${APPLICATION_WEB_CLASSES} ${source}/*.jsp"/>
          <classpath>
            <pathelement path="${WL_HOME}/lib/weblogic_sp.jar;${WL_HOME}/lib/weblogic.jar;${ARMOR_HOME}/ARMORSecurity.jar;${ARMOR_HOME}/ARMORUtil.jar"/>
          </classpath>
        </java>
      </target>
      <!-- Creates jsp_servlet directory under WEB-INF\classes of the Examples Web
        APP and places the compiled Servlets classes into it -->
      <target name="testservlet">
        <!-- Run ejbc to create the deployable jar file -->
        <javac destdir="${APPLICATION_WEB_CLASSES}" srcdir="${source}" includes="*.java">
          <classpath>
            <pathelement path="${WL_HOME}/lib/weblogic_sp.jar;${WL_HOME}/lib/weblogic.jar;${ARMOR_HOME}/ARMORSecurity.jar;${ARMOR_HOME}/ARMORUtil.jar"/>
          </classpath>
        </javac>
      </target>
      <target name="copy">
        <copy todir="${APPLICATION_HOME}">
          <fileset dir="${source}">
            <include name="*.jsp"/>
          </fileset>
        </copy>
      </target>
    </project>I do not know how to compile the project using this build.xml
    The motive of doing all this is to understand how is Eclipse doing the build project step. I simply cannot find any build.xml inside any of my projects created in Eclipse however when right click on the project and choose build project, it compiles excellently. ???
    Edited by: pksingh79 on Nov 24, 2008 1:19 PM

  • Illustrator CS6 crashes often when saving files

    I'm running Windows 7 64bit
    I usually have Photoshop CS6, Outlook, Word, Excel open at the same time
    I have 8GB Ram
    I haven't found a consistent action that causes the crash.  I'll just be working in Illustrator...saving a file or closing a file or looking at layers...and it just crashes.
    no error message
    it is frustrating
    Photoshop CS6 also crashes a lot too
    it is frustrating...both of them... and really slows me down

    Exact system info and crash details:
    Working with your Operating System’s Tools
    Mylenium

  • Shotwell crash/freeze when video files present in preview from camera

    Presence of any .avi video file in Shotwell causes the following error:
    Error in `shotwell': malloc(): memory corruption (fast): 0x00000000087c9080
    I've searched around and found many problems with Shotwell and videos, and other errors like mine, but never together. Already imported videos (through folder import procedure) play and display in Shotwell properly, so the program understands them, it's just with reading them from a card reader using the "Mass Storage Camera" folder option.
    Any suggestions on how to address this problem other than the workarounds? This is for my mother's computer, so I'm not always around to help get the videos removed from the card first.
    Can I just get Shotwell to flat out ignore all video files? That would be ideal, actually.
    Last edited by hooya (2014-06-22 18:16:50)

    Organizing related files with Smart Folders
    This also applies for 10.5 Leopard.
    If you open Automator (Applications) and choose Library >> Files and folders >> Find Finder items and draw it to the right side of the window. Now you can search the whole computer or just your user folder for example (from the drop down menu). Then you can make further adjustments like find .avi (look at the image)
    http://personal.inet.fi/koti/kimi/automator_alias.png
    Then you draw the new aliases to the window and choose what folder it saves the aliases too, in my case my Movies-folder (Elokuvat is Movies in finnish). After that you press Run and it saves the aliases. Easy!
    The original files are still located inside the iPhoto Library and the Movies-folder just contains the aliases.

  • Finder crashes when moving files

    Finder crashes intermittently when moving files, and has done so for probably a year now. It happens pretty much daily. I was hoping the problem would go away when upgrading from Mountain Lion to Mavericks, but it didn't. Is anyone able to tell from this error log what might be causing the problem? Any suggestions would be very much appreciated!
    Process:         Finder [260]
    Path:            /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Identifier:      com.apple.finder
    Version:         10.9 (10.9)
    Build Info:      Finder_FE-885000002000000~2
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [233]
    Responsible:     Finder [260]
    User ID:         501
    Date/Time:       2013-11-20 16:03:42.613 +0100
    OS Version:      Mac OS X 10.9 (13A603)
    Report Version:  11
    Anonymous UUID:  5B8D1B33-FB3D-9B90-D803-CCB5B96F8967
    Sleep/Wake UUID: 27FDE1ED-D7E7-4100-8658-9CD12E7ED594
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000008
    External Modification Warnings:
    Thread creation by external task.
    VM Regions Near 0x8:
    -->
        __TEXT                 000000010b677000-000000010bb3e000 [ 4892K] r-x/rwx SM=COW  /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.AppKit                        0x00007fff92b6ba05 -[NSBrowser _setDropTargetColumn:targetRow:targetDropOperation:dragOperation:] + 40
    1   com.apple.finder                        0x000000010b96b272 0x10b677000 + 3097202
    2   com.apple.AppKit                        0x00007fff92b732b9 -[_NSBrowserTableColumnViewController tableView:validateDrop:proposedRow:proposedDropOperation:] + 193
    3   com.apple.AppKit                        0x00007fff92e44b0d -[NSTableView _tryDrop:dropRow:dropOperation:] + 123
    4   com.apple.AppKit                        0x00007fff92e451df -[NSTableView _determineDropCandidateForDragInfo:] + 1653
    5   com.apple.AppKit                        0x00007fff92e4b03a -[NSTableView draggingUpdated:] + 49
    6   com.apple.AppKit                        0x00007fff92aa4ede sendDraggingUpdate + 125
    7   com.apple.AppKit                        0x00007fff92aa3eab NSCoreDragTrackingProc + 3623
    8   com.apple.HIServices                    0x00007fff8faa5158 DoTrackingMessage + 370
    9   com.apple.HIServices                    0x00007fff8faa80b5 CoreDragMessageHandler + 753
    10  com.apple.CoreFoundation                0x00007fff91ccff78 __CFMessagePortPerform + 760
    11  com.apple.CoreFoundation                0x00007fff91c55b69 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 41
    12  com.apple.CoreFoundation                0x00007fff91c55ade __CFRunLoopDoSource1 + 478
    13  com.apple.CoreFoundation                0x00007fff91c46bd6 __CFRunLoopRun + 1830
    14  com.apple.CoreFoundation                0x00007fff91c46275 CFRunLoopRunSpecific + 309
    15  com.apple.CoreFoundation                0x00007fff91ccf9a6 CFMessagePortSendRequest + 1398
    16  com.apple.HIServices                    0x00007fff8faa76b4 SendDragIPCMessage + 516
    17  com.apple.HIServices                    0x00007fff8faa8255 CoreDragMessageHandler + 1169
    18  com.apple.CoreFoundation                0x00007fff91ccff78 __CFMessagePortPerform + 760
    19  com.apple.CoreFoundation                0x00007fff91c55b69 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 41
    20  com.apple.CoreFoundation                0x00007fff91c55ade __CFRunLoopDoSource1 + 478
    21  com.apple.CoreFoundation                0x00007fff91c46bd6 __CFRunLoopRun + 1830
    22  com.apple.CoreFoundation                0x00007fff91c46275 CFRunLoopRunSpecific + 309
    23  com.apple.Foundation                    0x00007fff8d920a7c -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 253
    24  com.apple.Foundation                    0x00007fff8d96902b -[NSRunLoop(NSRunLoop) runUntilDate:] + 78
    25  com.apple.AppKit                        0x00007fff92aa3586 NSCoreDragTrackingProc + 1282
    26  com.apple.HIServices                    0x00007fff8faa5989 DoEnterLeaveHandler + 183
    27  com.apple.HIServices                    0x00007fff8faa5897 SendEnterLeaveHandlerMessage + 48
    28  com.apple.HIServices                    0x00007fff8faa565a DragInApplication + 648
    29  com.apple.HIServices                    0x00007fff8faa462b CoreDragStartDragging + 519
    30  com.apple.AppKit                        0x00007fff92aa1a34 -[NSCoreDragManager _dragUntilMouseUp:accepted:] + 862
    31  com.apple.AppKit                        0x00007fff92aa1695 _handleBeginDraggingSession + 100
    32  com.apple.CoreFoundation                0x00007fff91c550a7 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
    33  com.apple.CoreFoundation                0x00007fff91c55017 __CFRunLoopDoObservers + 391
    34  com.apple.CoreFoundation                0x00007fff91c46893 __CFRunLoopRun + 995
    35  com.apple.CoreFoundation                0x00007fff91c46275 CFRunLoopRunSpecific + 309
    36  com.apple.HIToolbox                     0x00007fff8e1f4f0d RunCurrentEventLoopInMode + 226
    37  com.apple.HIToolbox                     0x00007fff8e1f4cb7 ReceiveNextEventCommon + 479
    38  com.apple.HIToolbox                     0x00007fff8e1f4abc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    39  com.apple.AppKit                        0x00007fff9279728e _DPSNextEvent + 1434
    40  com.apple.AppKit                        0x00007fff927968db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    41  com.apple.AppKit                        0x00007fff9278a9cc -[NSApplication run] + 553
    42  com.apple.AppKit                        0x00007fff92775803 NSApplicationMain + 940
    43  com.apple.finder                        0x000000010b67d5cc 0x10b677000 + 26060
    44  libdyld.dylib                           0x00007fff938fa5fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff887ec662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff8acc943d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff8acc9152 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff887e7a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff887e6d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff91c47315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff91c46939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff91c46275 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00007fff929371ce _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00007fff8badb899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff8badb72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff8badffc9 thread_start + 13
    Thread 3:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff887e7a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff887e6d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff91c47315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff91c46939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff91c46275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff8d91e907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation                    0x00007fff8d91e70b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x00007fff8badb899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff8badb72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff8badffc9 thread_start + 13
    Thread 4:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff887eb9aa __select + 10
    1   com.apple.CoreFoundation                0x00007fff91c92d43 __CFSocketManager + 867
    2   libsystem_pthread.dylib                 0x00007fff8badb899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff8badb72a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff8badffc9 thread_start + 13
    Thread 5:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib                  0x00007fff887e7a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff887e6d18 mach_msg + 64
    2   com.apple.QuartzCore                    0x00007fff87c643b7 CA::Render::Server::server_thread(void*) + 195
    3   com.apple.QuartzCore                    0x00007fff87c642ed thread_fun + 25
    4   libsystem_pthread.dylib                 0x00007fff8badb899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff8badb72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff8badffc9 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff887eb716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8baddc3b _pthread_cond_wait + 727
    2   com.apple.desktopservices               0x00007fff865b4475 TConditionVariable::Wait(TDSMutex&) + 31
    3   com.apple.desktopservices               0x00007fff865951e0 TBlockingQueue<TSuboperationRequest>::Dequeue(TSuboperationRequest*&, int) + 90
    4   com.apple.desktopservices               0x00007fff86594e08 TSuboperationTask::OperationTaskProcedure() + 212
    5   com.apple.desktopservices               0x00007fff86579b0b TNodeOperationTask::OperationTaskProc(void*) + 23
    6   libsystem_pthread.dylib                 0x00007fff8badb899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff8badb72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff8badffc9 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff887eb716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8baddc3b _pthread_cond_wait + 727
    2   com.apple.desktopservices               0x00007fff865b4475 TConditionVariable::Wait(TDSMutex&) + 31
    3   com.apple.desktopservices               0x00007fff865951e0 TBlockingQueue<TSuboperationRequest>::Dequeue(TSuboperationRequest*&, int) + 90
    4   com.apple.desktopservices               0x00007fff86594e08 TSuboperationTask::OperationTaskProcedure() + 212
    5   com.apple.desktopservices               0x00007fff86579b0b TNodeOperationTask::OperationTaskProc(void*) + 23
    6   libsystem_pthread.dylib                 0x00007fff8badb899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff8badb72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff8badffc9 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff887eb716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8baddc3b _pthread_cond_wait + 727
    2   com.apple.desktopservices               0x00007fff865b4475 TConditionVariable::Wait(TDSMutex&) + 31
    3   com.apple.desktopservices               0x00007fff865951e0 TBlockingQueue<TSuboperationRequest>::Dequeue(TSuboperationRequest*&, int) + 90
    4   com.apple.desktopservices               0x00007fff86594e08 TSuboperationTask::OperationTaskProcedure() + 212
    5   com.apple.desktopservices               0x00007fff86579b0b TNodeOperationTask::OperationTaskProc(void*) + 23
    6   libsystem_pthread.dylib                 0x00007fff8badb899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff8badb72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff8badffc9 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff887eb716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8baddc3b _pthread_cond_wait + 727
    2   com.apple.desktopservices               0x00007fff865b4475 TConditionVariable::Wait(TDSMutex&) + 31
    3   com.apple.desktopservices               0x00007fff865951e0 TBlockingQueue<TSuboperationRequest>::Dequeue(TSuboperationRequest*&, int) + 90
    4   com.apple.desktopservices               0x00007fff86594e08 TSuboperationTask::OperationTaskProcedure() + 212
    5   com.apple.desktopservices               0x00007fff86579b0b TNodeOperationTask::OperationTaskProc(void*) + 23
    6   libsystem_pthread.dylib                 0x00007fff8badb899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff8badb72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff8badffc9 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff887eb716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8baddc3b _pthread_cond_wait + 727
    2   com.apple.desktopservices               0x00007fff865b4475 TConditionVariable::Wait(TDSMutex&) + 31
    3   com.apple.desktopservices               0x00007fff865951e0 TBlockingQueue<TSuboperationRequest>::Dequeue(TSuboperationRequest*&, int) + 90
    4   com.apple.desktopservices               0x00007fff86594e08 TSuboperationTask::OperationTaskProcedure() + 212
    5   com.apple.desktopservices               0x00007fff86579b0b TNodeOperationTask::OperationTaskProc(void*) + 23
    6   libsystem_pthread.dylib                 0x00007fff8badb899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff8badb72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff8badffc9 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff887ebe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8badcf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8badffb9 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff887ebe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8badcf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8badffb9 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff887ebe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8badcf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8badffb9 start_wqthread + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x00007fff887ebe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8badcf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8badffb9 start_wqthread + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff887eb716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8baddc3b _pthread_cond_wait + 727
    2   com.apple.desktopservices               0x00007fff865b4475 TConditionVariable::Wait(TDSMutex&) + 31
    3   com.apple.desktopservices               0x00007fff865951e0 TBlockingQueue<TSuboperationRequest>::Dequeue(TSuboperationRequest*&, int) + 90
    4   com.apple.desktopservices               0x00007fff86594e08 TSuboperationTask::OperationTaskProcedure() + 212
    5   com.apple.desktopservices               0x00007fff86579b0b TNodeOperationTask::OperationTaskProc(void*) + 23
    6   libsystem_pthread.dylib                 0x00007fff8badb899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff8badb72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff8badffc9 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x00007fff887eb716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8baddc3b _pthread_cond_wait + 727
    2   com.apple.desktopservices               0x00007fff865b4475 TConditionVariable::Wait(TDSMutex&) + 31
    3   com.apple.desktopservices               0x00007fff865951e0 TBlockingQueue<TSuboperationRequest>::Dequeue(TSuboperationRequest*&, int) + 90
    4   com.apple.desktopservices               0x00007fff86594e08 TSuboperationTask::OperationTaskProcedure() + 212
    5   com.apple.desktopservices               0x00007fff86579b0b TNodeOperationTask::OperationTaskProc(void*) + 23
    6   libsystem_pthread.dylib                 0x00007fff8badb899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff8badb72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff8badffc9 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff887eb716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8baddc77 _pthread_cond_wait + 787
    2   com.apple.finder                        0x000000010b6a0f0c 0x10b677000 + 171788
    3   com.apple.finder                        0x000000010b6ca989 0x10b677000 + 342409
    4   com.apple.finder                        0x000000010b67ead2 0x10b677000 + 31442
    5   libsystem_pthread.dylib                 0x00007fff8badb899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff8badb72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff8badffc9 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib                  0x00007fff887ebe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8badcf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8badffb9 start_wqthread + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x00007fff887ebe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8badcf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8badffb9 start_wqthread + 13
    Thread 20:
    0   libsystem_kernel.dylib                  0x00007fff887ebe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8badcf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8badffb9 start_wqthread + 13
    Thread 21:
    0   libsystem_kernel.dylib                  0x00007fff887ebe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8badcf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8badffb9 start_wqthread + 13
    Thread 22:
    0   libsystem_kernel.dylib                  0x00007fff887eb716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8baddc77 _pthread_cond_wait + 787
    2   com.apple.finder                        0x000000010b6a0f0c 0x10b677000 + 171788
    3   com.apple.finder                        0x000000010b6ca989 0x10b677000 + 342409
    4   com.apple.finder                        0x000000010b67ead2 0x10b677000 + 31442
    5   libsystem_pthread.dylib                 0x00007fff8badb899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff8badb72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff8badffc9 thread_start + 13
    Thread 23:
    0   libsystem_kernel.dylib                  0x00007fff887e7a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff887e6d18 mach_msg + 64
    2   libsystem_kernel.dylib                  0x00007fff887e250b semaphore_destroy + 91
    3   libdispatch.dylib                       0x00007fff8accc28f _dispatch_semaphore_dispose + 35
    4   libdispatch.dylib                       0x00007fff8acc7dc3 _dispatch_dispose + 35
    5   libdispatch.dylib                       0x00007fff8acc7d7d -[OS_dispatch_object _xref_dispose] + 48
    6   libxpc.dylib                            0x00007fff9114f74d xpc_connection_send_message_with_reply_sync + 221
    7   com.apple.CoreFoundation                0x00007fff91be6588 _CFXNotificationPost + 1144
    8   com.apple.CoreFoundation                0x00007fff91c3675e CFNotificationCenterPostNotificationWithOptions + 110
    9   com.apple.CoreServices.CarbonCore          0x00007fff8fe0cbea _FN_PostNotification(unsigned int, unsigned int, FSRef const*) + 99
    10  com.apple.CoreServices.CarbonCore          0x00007fff8fe0cc3e FNNotifyByPath + 74
    11  com.apple.desktopservices               0x00007fff86561c27 TOperation::PostExternalNotificationsAtEndOfOperation() + 137
    12  com.apple.desktopservices               0x00007fff86561b6f TOperation::Finalize() + 155
    13  com.apple.desktopservices               0x00007fff8657aa3b TNodeOperationTask::OperationTaskProcedure() + 101
    14  com.apple.desktopservices               0x00007fff86579b0b TNodeOperationTask::OperationTaskProc(void*) + 23
    15  libsystem_pthread.dylib                 0x00007fff8badb899 _pthread_body + 138
    16  libsystem_pthread.dylib                 0x00007fff8badb72a _pthread_start + 137
    17  libsystem_pthread.dylib                 0x00007fff8badffc9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00006080001fae01  rbx: 0x00007fa0dace12d0  rcx: 0xffffffffffffffff  rdx: 0x0000000000000003
      rdi: 0x00007fa0dace12d0  rsi: 0x0000000000000000  rbp: 0x00007fff545822e0  rsp: 0x00007fff545822c8
       r8: 0x0000000000000000   r9: 0x0000000000000004  r10: 0x0000000000000110  r11: 0x0000000000000088
      r12: 0x0000000000000004  r13: 0xffffffffffffffff  r14: 0x0000000000000000  r15: 0x0000000000000008
      rip: 0x00007fff92b6ba05  rfl: 0x0000000000010246  cr2: 0x0000000000000008
    Logical CPU:     4
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x10b677000 -        0x10bb3dffd  com.apple.finder (10.9 - 10.9) <0B3CE495-BEB9-323B-9C50-CEBDF5C465F4> /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
           0x10d557000 -        0x10d557ffb +cl_kernels (???) <85495E7C-8470-4685-8828-E555117D92C5> cl_kernels
           0x10d5e9000 -        0x10d5effff  com.apple.qldisplay.Text (5.0 - 622.3) <715AB39C-ACE9-36A3-B334-882651FEB0CE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/PlugIns/Text.qldisplay/Contents/MacOS/Text
           0x10d615000 -        0x10d616fff  com.apple.AddressBook.LocalSourceBundle (8.0 - 1365) <260EDDAA-A812-3097-BE14-A63EA4BEDD31> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x10d6a0000 -        0x10d6a3fff  libspindump.dylib (161) <588EDDE0-B20A-3649-92B7-C2226EB237E8> /usr/lib/libspindump.dylib
           0x10d6ac000 -        0x10d6b3ff7  com.apple.SyncedDefaults (1.3 - 91.30) <FC5A4423-3D91-3A34-853A-C49971EEAE4E> /System/Library/PrivateFrameworks/SyncedDefaults.framework/SyncedDefaults
           0x10d6da000 -        0x10d6e4ff7  com.apple.qldisplay.Web2 (5.0 - 622.3) <DD001341-B9D1-3BB9-BD6E-4158568D1A88> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/PlugIns/Web2.qldisplay/Contents/MacOS/Web2
           0x10d6ef000 -        0x10d6f3ff7  com.apple.DirectoryServicesSource (8.0 - 1365) <2F2D5BAA-F006-3701-922C-37EF076DE3D1> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
           0x10d70c000 -        0x10d70cfff +cl_kernels (???) <FFF3E005-EFDF-445C-BFEB-26B0D95B8FD9> cl_kernels
           0x10d7b9000 -        0x10d7bdfff  com.apple.qldisplay.Generic (5.0 - 622.3) <E3B0F731-E447-383E-8332-4893290D1708> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/PlugIns/Generic.qldisplay/Contents/MacOS/Generic
           0x10e16b000 -        0x10e17eff7 +com.evenflow.dropbox.dropboxbundle (3.4 - 1) <C6A2CE39-E2EB-8DD0-99AC-DA21058BFD81> /Library/DropboxHelperTools/*/DropboxBundle.bundle/Contents/MacOS/DropboxBundle
           0x10e195000 -        0x10e19cfff  com.apple.URLMount.AFPPlugin (6.0 - 6.0) <3F14475B-992E-311F-8314-7CFA8908227A> /System/Library/Filesystems/NetFSPlugins/afp.bundle/Contents/MacOS/afp
           0x10ea27000 -        0x10ea66ff7  com.apple.AppleShareClientCore (4.0 - 3.0) <C8CF9884-B092-348E-BCCD-2821FDB7B517> /System/Library/Frameworks/AppleShareClientCore.framework/Versions/A/AppleShare ClientCore
           0x10ffd1000 -        0x10ffecff9  com.apple.security.csparser (3.0 - 55471) <0FA462BA-746F-3ACB-A90D-DCC7F280482B> /System/Library/Frameworks/Security.framework/PlugIns/csparser.bundle/Contents/ MacOS/csparser
           0x11066b000 -        0x11066cffa +cl_kernels (???) <A2FA993E-130B-4AF7-B13D-AA78C408274A> cl_kernels
           0x110679000 -        0x110679ff9 +cl_kernels (???) <E80AA947-D812-48F3-8FCC-CF5E3DA85762> cl_kernels
           0x11067b000 -        0x110761fef  unorm8_bgra.dylib (2.3.58) <9FF943D1-4EF7-36CA-852D-B61C2E554713> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x110a95000 -        0x110a96ff4 +cl_kernels (???) <774DD3B5-2C5D-4E77-9EE2-E9C6570F84DB> cl_kernels
           0x110ef8000 -        0x110fd8ff7  unorm8_rgba.dylib (2.3.58) <DDD1AFEB-FD30-34D2-958A-823C3EFD649A> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib
           0x112f5d000 -        0x112fa9ff6  com.apple.AddressBook.CardDAVPlugin (10.9 - 424) <C5AC5902-39C2-3A08-9967-5EAA000228EE> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
        0x7fff63444000 -     0x7fff63477817  dyld (239.3) <D1DFCF3F-0B0C-332A-BCC0-87A851B570FF> /usr/lib/dyld
        0x7fff85c59000 -     0x7fff85d48fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff85d5c000 -     0x7fff85d61fff  com.apple.DiskArbitration (2.6 - 2.6) <F8A47F61-83D1-3F92-B7A8-A169E0D187C0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff85d62000 -     0x7fff85d9cff3  com.apple.bom (12.0 - 192) <989690DB-B9CC-3DB5-89AE-B5D33EDC474E> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff85e12000 -     0x7fff85f65ff7  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <A0B7B007-9BD8-30E2-B644-47856DA29FEE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff85f66000 -     0x7fff85f6afff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
        0x7fff85f6b000 -     0x7fff864dbfff  com.apple.CoreAUC (6.22.08 - 6.22.08) <F306D552-2220-3160-88EA-C916193C5EFD> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff864dc000 -     0x7fff864e4ff3  libCGCMS.A.dylib (599.7) <92AA4E85-7633-36E2-BAD0-7B1A2E48E75C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff864e5000 -     0x7fff86615ff7  com.apple.desktopservices (1.8 - 1.8) <09DC9BB8-432F-3C7A-BB08-956A2DDFC2DE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff86616000 -     0x7fff8665dfff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff866dc000 -     0x7fff866ddfff  com.apple.AddressBook.ContactsData (8.0 - 1365) <61090508-4CC3-3F57-9B0C-D8527947D35D> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
        0x7fff866de000 -     0x7fff868cdffc  com.apple.WebKit2 (9537 - 9537.71) <B8FFCE39-9DC6-304E-953A-0BAFDCD19D2F> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff868ce000 -     0x7fff868daff7  com.apple.OpenDirectory (10.9 - 173.1.1) <6B78BD7B-5622-38E6-8FC6-86A117E3ACCA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff86ab3000 -     0x7fff86b04fff  com.apple.QuickLookFramework (5.0 - 622.3) <AB6CCD09-ECDF-3F01-9C42-34B37DDCF12D> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff86b1f000 -     0x7fff86b60fff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff86b88000 -     0x7fff86b8efff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
        0x7fff86b8f000 -     0x7fff86b9afff  libkxld.dylib (2422.1.72) <C88EF3E6-B31F-3E12-BE9B-562D912BA733> /usr/lib/system/libkxld.dylib
        0x7fff86b9b000 -     0x7fff86c31fff  com.apple.PackageKit (3.0 - 329) <F619E170-BE26-37E8-8F6E-C74D68522083> /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
        0x7fff86c32000 -     0x7fff86c32ffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff86c33000 -     0x7fff86c37ff7  libheimdal-asn1.dylib (323.12) <063A01C2-E547-39D9-BB42-4CC8E64ADE70> /usr/lib/libheimdal-asn1.dylib
        0x7fff86c43000 -     0x7fff86c54ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
        0x7fff86c55000 -     0x7fff86c56ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
        0x7fff87000000 -     0x7fff8744efff  com.apple.VideoToolbox (1.0 - 1273.29) <6E38291D-7A81-3033-AFB9-61ABD38B6371> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8744f000 -     0x7fff874a6fff  com.apple.ViewBridge (1.0 - 46) <C49FDC96-7087-3B2F-AEC3-039F7B2CB50C> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
        0x7fff874b4000 -     0x7fff874b6ff3  libsystem_configuration.dylib (596.12) <C4F633D9-94C8-35D9-BB2D-84C5122533C7> /usr/lib/system/libsystem_configuration.dylib
        0x7fff874b7000 -     0x7fff874d2fff  com.apple.DistributionKit (700 - 845) <E3D1ECC4-C5D1-35DC-B7E4-800FE0FFBF56> /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit
        0x7fff874d6000 -     0x7fff874defff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
        0x7fff874df000 -     0x7fff874e1fff  com.apple.EFILogin (2.0 - 2) <C360E8AF-E9BB-3BBA-9DF0-57A92CEF00D4> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff874e2000 -     0x7fff87534fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
        0x7fff8753b000 -     0x7fff876abff6  com.apple.CFNetwork (673.0.3 - 673.0.3) <42CFC3DB-35C8-3652-AF37-4BCC73D8BDEF> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff876ac000 -     0x7fff876b6ff7  com.apple.CrashReporterSupport (10.9 - 538) <B487466B-3AA1-3854-A808-A61F049FA794> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff876b7000 -     0x7fff876b7fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff876b8000 -     0x7fff877edffa  com.apple.WebKit (9537 - 9537.71) <8A07478D-B2CA-3724-81E4-ADC10E1AD3EA> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff877ee000 -     0x7fff877eefff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff877ef000 -     0x7fff877f0ff7  libSystem.B.dylib (1197.1.1) <BFC0DC97-46C6-3BE0-9983-54A98734897A> /usr/lib/libSystem.B.dylib
        0x7fff877f1000 -     0x7fff8781eff2  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <43A137C4-3E72-37DC-945F-92569C12AAD4> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff87821000 -     0x7fff87a64fff  com.apple.AddressBook.framework (8.0 - 1365) <816242B1-D45E-3B5D-BC98-BB23458D5367> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff87a65000 -     0x7fff87a69fff  com.apple.ServerInformation (2.0 - 1) <E628F08A-0F6F-384B-AFD5-1BC1BBF56F1F> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
        0x7fff87a6a000 -     0x7fff87bd8ff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff87bd9000 -     0x7fff87c3cff7  com.apple.SystemConfiguration (1.13 - 1.13) <F05F4149-981B-380B-8F50-51CE804BBB89> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff87c3d000 -     0x7fff87dd9ff7  com.apple.QuartzCore (1.8 - 332.0) <994D1E0A-64B6-398C-B9A2-C362F02DE943> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff87dda000 -     0x7fff88062ff7  com.apple.CommerceKit (1.2.0 - 232) <442AE798-E07F-3E68-BB80-4C41B61408E3> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/CommerceKit
        0x7fff88661000 -     0x7fff886aefff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <D01B7D87-4BDC-3E48-A79B-951D05075F9D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff886af000 -     0x7fff886b8fff  com.apple.CommonAuth (4.0 - 2.0) <1D263127-5F27-3128-996D-7397660D0C6E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff886b9000 -     0x7fff88748ff7  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
        0x7fff88749000 -     0x7fff88756fff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff8878b000 -     0x7fff887d2ff7  libcups.2.dylib (372) <348EED62-6C20-35D6-8EFB-E80943965100> /usr/lib/libcups.2.dylib
        0x7fff887d3000 -     0x7fff887d5ff7  com.apple.diagnosticlogcollection (10.0 - 1000) <5CA6D8A2-DEA6-33C3-91BC-F3B076C0500B> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/ DiagnosticLogCollection
        0x7fff887d6000 -     0x7fff887f2ff7  libsystem_kernel.dylib (2422.1.72) <D14913DB-47F1-3591-8DAF-D4B4EF5F8818> /usr/lib/system/libsystem_kernel.dylib
        0x7fff887f3000 -     0x7fff88822fff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff88823000 -     0x7fff888acff7  libsystem_c.dylib (997.1.1) <61833FAA-7281-3FF9-937F-686B6F20427C> /usr/lib/system/libsystem_c.dylib
        0x7fff888ad000 -     0x7fff888ecfff  libGLU.dylib (9.0.83) <8B457205-513B-3477-AE9C-3AD979D5FE11> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff888ed000 -     0x7fff88b7eff7  com.apple.AOSKit (1.06 - 176) <35525B2F-B02F-31FD-A3B2-FD6AE6D32C11> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff88b7f000 -     0x7fff88b80ff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff88bec000 -     0x7fff88bf5fff  com.apple.DisplayServicesFW (2.8 - 360.8.14) <816A9CED-1BC0-3C76-8103-1B9BE0F723BB> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff88e6c000 -     0x7fff88ec7ffb  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
        0x7fff88ed4000 -     0x7fff88edeff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff88f99000 -     0x7fff88fa5ff7  com.apple.KerberosHelper (4.0 - 1.0) <6D64703B-D7A3-3EF7-89AB-16F7F89333FC> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
        0x7fff88fb3000 -     0x7fff88fccff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff88fcd000 -     0x7fff89016fff  com.apple.CoreMedia (1.0 - 1273.29) <4ACD30BA-E9FE-3842-A8B7-E3BD63747867> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff89017000 -     0x7fff8901fffc  libGFXShared.dylib (9.0.83) <11A621C3-37A0-39CE-A69B-8739021BD79D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff89020000 -     0x7fff89084ff3  com.apple.datadetectorscore (5.0 - 354.0) <9ACF24B8-3268-3134-A5BC-D72C9371A195> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff890a9000 -     0x7fff890d5fff  com.apple.CoreServicesInternal (184.8 - 184.8) <707E05AE-DDA8-36FD-B0FF-7F15A061B46A> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff890d8000 -     0x7fff890f4fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
        0x7fff890f5000 -     0x7fff890f8fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff890f9000 -     0x7fff89122fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff89123000 -     0x7fff8913affa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff8913b000 -     0x7fff8939cff7  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
        0x7fff8939d000 -     0x7fff894c9fff  com.apple.MediaControlSender (1.9 - 190.4) <F5E934E1-D004-3C84-815A-961319F8C522> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff894ca000 -     0x7fff894fbff7  libtidy.A.dylib (15.12) <BF757E3C-733A-3B6B-809A-A3949D46466E> /usr/lib/libtidy.A.dylib
        0x7fff894fc000 -     0x7fff8950efff  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
        0x7fff8950f000 -     0x7fff89597ff7  com.apple.CorePDF (4.0 - 4) <92D15ED1-D2E1-3ECB-93FF-42888219A99F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff89598000 -     0x7fff8969dfff  com.apple.ImageIO.framework (3.3.0 - 1038) <2C058216-C6D8-3380-A7EA-92A3F04520C1> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff8969e000 -     0x7fff896f6ff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8970f000 -     0x7fff89711ffb  libutil.dylib (34) <DAC4A6CF-A1BB-3874-9569-A919316D30E8> /usr/lib/libutil.dylib
        0x7fff89712000 -     0x7fff89763ff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff89764000 -     0x7fff89764fff  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
        0x7fff89765000 -     0x7fff8981dff7  com.apple.DiscRecording (8.0 - 8000.4.6) <CDAAAD04-A1D0-3C67-ABCC-EFC9E8D44E7E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff89836000 -     0x7fff89839fff  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
        0x7fff8983a000 -     0x7fff898d5ff7  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
        0x7fff89901000 -     0x7fff89913ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff89914000 -     0x7fff8991dff7  libcldcpuengine.dylib (2.3.58) <A2E1ED7B-FC7E-31F6-830A-FF917689766B> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
        0x7fff8991e000 -     0x7fff8991ffff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
        0x7fff89920000 -     0x7fff8a76cff5  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
        0x7fff8a849000 -     0x7fff8a86dfff  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
        0x7fff8a86e000 -     0x7fff8ac4fffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8ac50000 -     0x7fff8ac78ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
        0x7fff8ac79000 -     0x7fff8acc5ffe  com.apple.CoreMediaIO (401.0 - 4544) <44EBC0FE-DAD5-3711-96CB-05250F350A16> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff8acc6000 -     0x7fff8ace0fff  libdispatch.dylib (339.1.9) <46878A5B-4248-3057-962C-6D4A235EEF31> /usr/lib/system/libdispatch.dylib
        0x7fff8ace1000 -     0x7fff8ace4ffa  libCGXType.A.dylib (599.7) <2FC9C2BC-B5C5-3C27-93F9-51C6C4512E9D> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
        0x7fff8ace5000 -     0x7fff8ad02ff7  com.apple.framework.Apple80211 (9.0 - 900.47) <C897AFE6-DD73-387D-816A-67252A564207> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8ad03000 -     0x7fff8ad03ffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <6E89F3CB-CC41-3728-9F9A-FDFC151E8261> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8ad04000 -     0x7fff8ad34fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff8ad35000 -     0x7fff8ad66fff  com.apple.MediaKit (15 - 709) <23E33409-5C39-3F93-9E73-2B0E9EE8883E> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff8ad67000 -     0x7fff8b68305f  com.apple.CoreGraphics (1.600.0 - 599.7) <7D0FD5A7-A061-39BA-8E00-723825D2C4DD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8b684000 -     0x7fff8b952ff4  com.apple.CoreImage (9.0.54) <74BB8685-69A9-3A45-8DED-EA26BD39D710> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8b9ed000 -     0x7fff8ba78fff  libCoreStorage.dylib (380) <AE14C2F3-0EF1-3DCD-BF2B-A24D97D3B372> /usr/lib/libCoreStorage.dylib
        0x7fff8ba79000 -     0x7fff8bad9ff2  com.apple.CoreUtils (1.9 - 190.4) <CBB5B4DC-2801-32B3-A31C-8811CCF99873> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff8bada000 -     0x7fff8bae1ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
        0x7fff8bae2000 -     0x7fff8bb0eff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <36C562FF-5D91-318C-A19C-6B4453FB78B9> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
        0x7fff8bb0f000 -     0x7fff8bb26fff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <3FB4D5FE-860B-3BDE-BAE2-3531D919EF10> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8bb27000 -     0x7fff8bb2eff7  com.apple.phonenumbers (1.1.1 - 105) <767A63EB-244C-34F1-9FFA-D1A6BED60C31> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff8bb2f000 -     0x7fff8bc0efff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3EEF-AF43-44608B28894E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8bc0f000 -     0x7fff8bc12fff  com.apple.AppleSystemInfo (3.0 - 3.0) <4D032152-AA40-350E-BB96-44BC55C5C69C> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8bc13000 -     0x7fff8bc15fff  libRadiance.dylib (1038) <55F99274-5074-3C73-BAC5-AF234E71CF38> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8bc16000 -     0x7fff8bc5cff7  com.apple.DiskManagement (6.0 - 744) <FE9F0616-FFCA-31D2-A0B5-E6C943326543> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
        0x7fff8bc5d000 -     0x7fff8bc60ffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8bc67000 -     0x7fff8bcf3ff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8bcf5000 -     0x7fff8bd2dff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8bd2e000 -     0x7fff8bd6afff  com.apple.ids (10.0 - 1000) <22502AAF-CC59-33EC-9ACF-106315206701> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
        0x7fff8bd6b000 -     0x7fff8bd6dfff  com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff8bd6e000 -     0x7fff8bdc0ff7  com.apple.Suggestions (3.0 - 137.1) <B7E5B685-C6A4-35DB-BA0A-8DBA2BF4ADF6> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
        0x7fff8bdc1000 -     0x7fff8bdc2ffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
        0x7fff8bdc3000 -     0x7fff8bdc4ff7  libodfde.dylib (20) <C00A4EBA-44BC-3C53-BFD0-819B03FFD462> /usr/lib/libodfde.dylib
        0x7fff8bdc5000 -     0x7fff8bdd0ff7  com.apple.DirectoryService.Framework (10.9 - 173.1.1) <F8566D1F-450F-3571-911F-75C68E45919F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff8bdd1000 -     0x7fff8bf89ff3  libicucore.A.dylib (511.25) <3ED7B656-416E-3071-AEC8-E85C90232F78> /usr/lib/libicucore.A.dylib
        0x7fff8bfd3000 -     0x7fff8c2a7fc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8c2a8000 -     0x7fff8c2acfff  libsystem_stats.dylib (93.1.26) <B9E26A9E-FBBC-3938-B8B7-6CF7CA8C99AD> /usr/lib/system/libsystem_stats.dylib
        0x7fff8c2ad000 -     0x7fff8c2d4ff7  com.apple.shortcut (2.6 - 2.6) <A62BC973-6782-3893-B014-EC6503AB7EAD> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
        0x7fff8c6b1000 -     0x7fff8c6d8ff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
        0x7fff8c6d9000 -     0x7fff8c708fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
        0x7fff8c709000 -     0x7fff8c776fff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8c79e000 -     0x7fff8c7a3ff7  com.apple.MediaAccessibility (1.0 - 43) <D309D83D-5FAE-37A4-85ED-FFBDA8B66B82> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff8c7a4000 -     0x7fff8c7a4ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
        0x7fff8c7c4000 -     0x7fff8c7caff7  com.apple.XPCService (2.0 - 1) <2CE632D7-FE57-36CF-91D4-C57D0F2E0BFE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff8c7e5000 -     0x7fff8c7ecfff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8c7ed000 -     0x7fff8c7f9ff7  com.apple.HelpData (2.1.4 - 90) <BEA1C549-40D3-35BF-9204-CB679FCB0648> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
        0x7fff8c824000 -     0x7fff8c826ff7  com.apple.SecCodeWrapper (3.0 - 1) <F5107AD0-20CD-328C-8B2E-74CB6F3169F6> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff8c827000 -     0x7fff8c83dfff  com.apple.CoreMediaAuthoring (2.2 - 947) <B01FBACC-DDD5-30A8-BCCF-57CE24ABA329> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff8c83e000 -     0x7fff8c897fff  libTIFF.dylib (1038) <5CBFE0C2-9DD8-340B-BA63-A94CE2E476F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8c8af000 -     0x7fff8cc25ffa  com.apple.JavaScriptCore (9537 - 9537.65) <7E76880C-832E-385B-9591-ACCF57A68385> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8cc26000 -     0x7fff8ccafff7  com.apple.SoftwareUpdate.framework (6 - 574) <A24BDCFF-6164-3028-8892-D3C00B7C5658> /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/SoftwareU pdate
        0x7fff8ccb0000 -     0x7fff8cd30fff  com.apple.CoreSymbolication (3.0 - 141) <B018335C-698B-3F87-AF1C-6115C4FA8954> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8cd31000 -     0x7fff8cd36fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
        0x7fff8cd37000 -     0x7fff8cd5cff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8cd5d000 -     0x7fff8cd81ff7  libJPEG.dylib (1038) <86F349A8-882D-3326-A0B0-63257F68B1A7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8cd82000 -     0x7fff8cd99fff  com.apple.PackageKit.PackageUIKit (3.0 - 329) <2B237B93-D088-33B7-AD28-79E5BC27576B> /System/Library/PrivateFrameworks/PackageKit.framework/Frameworks/PackageUIKit. framework/Versions/A/PackageUIKit
        0x7fff8cd9a000 -     0x7fff8cdc8ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8cdc9000 -     0x7fff8ce16ff2  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
        0x7fff8ce17000 -     0x7fff8cedaff7  com.apple.backup.framework (1.5 - 1.5) <92C8038F-CC00-3202-90D8-3C3AEC90986F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8cedb000 -     0x7fff8cf3afff  com.apple.framework.CoreWLAN (4.0 - 400.45.1) <775F9444-8059-30A2-8058-7F7ACD68CCF1> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8cf3b000 -     0x7fff8cf3eff7  com.apple.LoginUICore (3.0 - 3.0) <1ECBDA90-D6ED-3333-83EB-9C8232DFAD7C> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff8cf3f000 -     0x7fff8d010ff7  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/

    Bad Finder. Reinstall the 10.5.8 COMBO update, repair permissions, and restart.

  • *Added* code to existing source file, compiled it, and class file shrunk

    Another newbie here. Fortunately, my classpath is ok, so I'm able to compile a .java file.
    I added one line of code (System.out.println) to write the value of a variable to a log. After compiling with javac, I noticed that the resulting [new] class file was smaller than the existing class file. I looked at each of the class files with Textpad. It's gibberish, but I quickly saw that a large block of code was missing in the new class file, even though the size of the source file had been increased.
    There is a difference, however, between how the two class files were created. The existing class file was compiled (along with many others) by exporting an .EAR file from a development environment (WSAD) to the WebSphere Administrator Console. Conversely, I am now compiling the same source file with javac on my machine.
    I suspect that this is the reason why I can add code to a .java file, compile it, and have the resulting class file actually lose code. Even if I am correct, I don't know what to do about it.
    Does anyone have an idea?
    Regards,
    Daniel T.

    Thank you both for your replies. I've read many posts over the past few months, and I know how important it is to provide as much info as possible, when asking a question here. That said, I have another tasty tidbit...
    After replacing the existing (larger) class file with the new (smaller) class file, my application now produces this:
    "*Error 500: LinkageError while defining class*..." [name of class]
    *"...(Unsupported major.minor version 50.0) This is often caused by having a class defined at multiple locations within the classloader hierarchy. Other potential causes include compiling against an older or newer version of the class that has an incompatible method signature. Dumping the current context classloader hierarchy: ==> indicates defining classloader ==>[0] com.ibm.ws.classloader.CompoundClassLoader@6bd156d5 Local ClassPath:"*
    ...[the entire classpath]...
    Original exception--- java.lang.UnsupportedClassVersionError:
    I'm guessing that my focus should mostly be on the 'Original exception', and maybe I need to revisit the JRE or JDK or JVM (these terms are somewhat nebulous to me, so please forgive me using them interchangeably) on my machine. For now, I'll just keep trying stuff. Thanks again for the replies!
    Regards,
    Daniel T.

  • How to get .java files in iStore

    Hi,
    I do have .class files in my server.How do i get .java files.
    Do i need to create a .java file in jDevloper ,copy the content of the .class and paste it in jDeveloper and compile on the linux server.
    Thanks,
    Sabitha

              Set the 'keepgenerated' parameter in weblogic.xml to 'true'
              <jsp-descriptor>
              <jsp-param>
              <param-name>
              keepgenerated
              </param-name>
              <param-value>
              true
              </param-value>
              </jsp-param>
              </jsp-descriptor>
              thanks,
              Deepak
              "Chris Cooper" <[email protected]> wrote:
              >Hi,
              >
              >I wanna read the .java file compiled from JSPs in Web applications
              >deployed in Weblogic server, and I know that Weblogic delete them
              >after compiles the JSPs. how to get the java file?
              >
              >TIA
              >
              

  • Error: code too large for try statement, when compiling a big java file.

    Hi,
    I have a big java file ( around 16000 lines). When compiling it, I got following error message:
    MyMain.java:15233: code too large for try statement
    } catch ( Throwable t ) {
    In MyMain.java, I just repeat following statements about 1000 times.
    try {
    if ( year >= 2002 ) {
    System.out.println( "year: Evaluation version is not valid" );
    } else {
    System.out.println( "year: Evaluation version is still valid" );
    } catch ( Throwable t ) {
    if ( year >= 2002 ) {
    System.out.println( "year: Evaluation version is not valid" );
    } else {
    System.out.println( "year: Evaluation version is still valid" );
    I tried 1.3 and 1.4 javac compiler, there was some error.
    How to make compiler to compile this code?
    Thanks,

    Hi,
    I have a big java file ( around 16000 lines). When
    compiling it, I got following error message:
    MyMain.java:15233: code too large for try statement
    } catch ( Throwable t ) {
    I tried 1.3 and 1.4 javac compiler, there was some
    error.
    How to make compiler to compile this code?
    You don't. Each method has an absolute limit on the number of byte codes. You have reached that limit. The limit is part of the specification and JVMs will refuse to run classes that exceed the limit. So even if you could compile it, it wouldn't run.
    It is quite common for code generators to generate large monolithic blocks of code. Presumably this is how you got to this spot. Modify the code generator to break it into smaller blocks.
    If you did it manually then you did it wrong. And you will have to manually break it into smaller blocks. (And re-examine your design since it is probably wrong.)

  • Automatic created Java file error when compile JSP file

    I got the following error message when i try to load the JSP file given below (FlightSearch.jsp). Given also below the JAVA files (flightsearch$jsp.java) created by the compiler.
    Thanks for your help
    Susan
    Error message
    org.apache.jasper.JasperException: Unable to compile class for JSPNote: sun.tools.javac.Main has been deprecated.
    C:\jakarta-tomcat\work\client\localhost\client\client\flightsearch$jsp.java:320: 'catch' without 'try'.
    } catch (Throwable t) {
    ^
    C:\jakarta-tomcat\work\client\localhost\client\client\flightsearch$jsp.java:328: 'try' without 'catch' or 'finally'.
    ^
    C:\jakarta-tomcat\work\client\localhost\client\client\flightsearch$jsp.java:328: '}' expected.
    ^
    3 errors, 1 warning
    at org.apache.jasper.compiler.Compiler.compile(Compiler.java:285)
    at org.apache.jasper.servlet.JspServlet.loadJSP(JspServlet.java:548)
    at org.apache.jasper.servlet.JspServlet$JspServletWrapper.loadIfNecessary(JspServlet.java:176)
    at org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:188)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:381)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:473)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:243)
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:190)
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
    at org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:246)
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2347)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:170)
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:468)
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
    at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java:1027)
    at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java:1125)
    at java.lang.Thread.run(Thread.java:536)
    FlightSearch.jsp
    <%@page import="java.util.*" errorPage="ErrorHandler.jsp"%>
    <%@page import="com.client.entity.Flight"%>
    <%@page import="com.client.wsclient.FlightServiceClient"%>
    <H3>Available Flight List</H3>
    <br>We have found the following Available flight(s) : </br>
    <table border="0" cellpadding="0" cellspacing="0" width="100">
    <tr>
    <td width="10%" bgcolor="#808080"><b><font color="#FFFFFF">Flight Company</font></b></td>
    <td width="10%" bgcolor="#808080"><b><font color="#FFFFFF">Flight Number</font></b></td>
    <td width="10%" bgcolor="#808080"><b><font color="#FFFFFF">Depart From<font></b></td>
    <td width="10%" bgcolor="#808080"><b><font color="#FFFFFF">Arrive</font></b></td>
    <td width="10%" bgcolor="#808080"><b><font color="#FFFFFF">Departure Date</font></b></td>
    <td width="10%" bgcolor="#808080"><b><font color="#FFFFFF">Departure Time</font></b></td>
    <td width="10%" bgcolor="#808080"><b><font color="#FFFFFF">Arrival Date</font></b></td>
    <td width="10%" bgcolor="#808080"><b><font color="#FFFFFF">Arrival Time</font></b></td>
    <td width="10%" bgcolor="#808080"><b><font color="#FFFFFF">Adult Fare</font></b></td>
    <td width="10%" bgcolor="#808080"><b><font color="#FFFFFF">Child Fare</font></b></td>
    </tr>
    <%
    //Get the search information
    String des = request.getParameter("DFrom");
    String arr = request.getParameter("DTo");
    String fy = request.getParameter(FYear.value);
    String fm = request.getParameter(FMonth.value);
    String fd = request.getParameter(FDay.value);
    String f1 = fy + "-" + fm;
    String FDat = f1 + "-" + fd;
    String ty = request.getParameter(TYear.value);
    String tm = request.getParameter(TMonth.value);
    String td = request.getParameter(TDay.value);
    String t1 = ty + "-" + tm;
    String TDat = t1 + "-" + td;
    String type;
    if( request.getParameter(type[0].checked))
    type = "Return";
    else
    { type = "OneWay";
    String clas;
    if(request.getParameter(clas[0].checked))
    {clas = "ECO";
    else
    {clas = "BUSS";}
    String adult = request.getParameter(Adult.value);
    String child = request.getParameter(Child.value);
    //Get the server Flight Search Service URL
    // ServerFlightSearchBO SFSBO = new ServerFlightSearchBO();
    // ServerFlightSearch FlightSearch = SFSBO.getFlightSearchURL();
    // FlightSearchServiceClient FSearchServiceClient = new FlightSearchServiceClient
    String ServerFlightServiceURL = "http://localhost:7080/AServer/services/FlightService";
    //Find available Flight
    FlightServiceClient client = new FlightServiceClient(ServerFlightServiceURL);
    ArrayList list = client.getFlight(des, arr, FDat, TDat, type, clas, adult, child);
    Iterator it = list.iterator();
    while (it.hasNext()){
    Flight flt = (Flight)it.next();
    %>
    <tr>
    <td width= "10%"><%=flt.getFlightComp()%></td>
    <td width= "10%"><%=flt.getFlightNum()%></td>
    <td width= "10%"><%=flt.getDestination()%></td>
    <td width= "10%"><%=flt.getArrive()%></td>
    <td width= "10%"><%=flt.getFrDate()%></td>
    <td width= "10%"><%=flt.getFlightDptTm()%></td>
    <td width= "10%"><%=flt.getToDate()%></td>
    <td width= "10%"><%=flt.getFlightArrTm()%></td>
    <%
    int adt, chld;
    int far_A, tot_A, far_C, tot_C;
    adt = Integer.parseInt(adult);
    far_A = flt.getAdultFr();
    tot_A = adt * far_A;
    chld = Integer.parseInt(child);
    far_C = flt.getChildFr();
    tot_C = chld * far_C;
    %>
    <td width= "10%"><%=tot_A%></td>
    <td width= "10%"><%=tot_C%></td>
    </tr>
    <%
    if(type = "Return")
    FlightServiceClient client = new FlightServiceClient(ServerFlightServiceURL);
    ArrayList list = client.getFlight(arr, des, FDat, TDat, type, clas, adult, child);
    Iterator it = list.iterator();
    while (it.hasNext()){
    Flight flt = (Flight)it.next();
    %>
    <tr>
    <td width= "10%"><%=flt.getFlightComp()%></td>
    <td width= "10%"><%=flt.getFlightNum()%></td>
    <td width= "10%"><%=flt.getFlightDpt()%></td>
    <td width= "10%"><%=flt.getFlightArr()%></td>
    <td width= "10%"><%=flt.getFlightDptDt()%></td>
    <td width= "10%"><%=flt.getFlightDptTm()%></td>
    <td width= "10%"><%=flt.getFlightArrDt()%></td>
    <td width= "10%"><%=flt.getFlightArrTm()%></td>
    <%
    int adlt, chd;
    int fare_A, totA, fare_C, totC;
    adlt = Integer.parseInt(adult);
    fare_A = flt.getAdultFr();
    totA = adlt * fare_A;
    chd = Integer.parseInt(child);
    fare_C = flt.getChildFr();
    totC = chd * fare_C;
    %>
    <td width= "10%"><%=totA%></td>
    <td width= "10%"><%=totC%></td>
    </tr>
    <%
    %>
    </table>
    flightsearch$jsp.java
    package org.apache.jsp;
    import java.util.*;
    import com.client.entity.Flight;
    import com.client.wsclient.FlightServiceClient;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import javax.servlet.jsp.*;
    import org.apache.jasper.runtime.*;
    public class flightsearch$jsp extends HttpJspBase {
    static {
    public flightsearch$jsp( ) {
    private static boolean jspxinited = false;
    public final void jspxinit() throws org.apache.jasper.runtime.JspException {
    public void _jspService(HttpServletRequest request, HttpServletResponse response)
    throws java.io.IOException, ServletException {
    JspFactory _jspxFactory = null;
    PageContext pageContext = null;
    HttpSession session = null;
    ServletContext application = null;
    ServletConfig config = null;
    JspWriter out = null;
    Object page = this;
    String _value = null;
    try {
    if (_jspx_inited == false) {
    synchronized (this) {
    if (_jspx_inited == false) {
    jspxinit();
    jspxinited = true;
    _jspxFactory = JspFactory.getDefaultFactory();
    response.setContentType("text/html;ISO-8859-1");
    pageContext = _jspxFactory.getPageContext(this, request, response,
    "ErrorHandler.jsp", true, 8192, true);
    application = pageContext.getServletContext();
    config = pageContext.getServletConfig();
    session = pageContext.getSession();
    out = pageContext.getOut();
    // HTML // begin [file="/client/flightsearch.jsp";from=(0,59);to=(1,0)]
    out.write("\r\n");
    // end
    // HTML // begin [file="/client/flightsearch.jsp";from=(1,43);to=(2,0)]
    out.write("\r\n");
    // end
    // HTML // begin [file="/client/flightsearch.jsp";from=(2,58);to=(19,0)]
    out.write("\r\n\r\n<H3>Available Flight List</H3>\r\n<br>We have found the following Available flight(s) : </br>\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100\">\r\n <tr>\r\n <td width=\"10%\" bgcolor=\"#808080\"><b><font color=\"#FFFFFF\">Flight Company</font></b></td>\r\n <td width=\"10%\" bgcolor=\"#808080\"><b><font color=\"#FFFFFF\">Flight Number</font></b></td>\r\n <td width=\"10%\" bgcolor=\"#808080\"><b><font color=\"#FFFFFF\">Depart From<font></b></td>\r\n <td width=\"10%\" bgcolor=\"#808080\"><b><font color=\"#FFFFFF\">Arrive</font></b></td>\r\n <td width=\"10%\" bgcolor=\"#808080\"><b><font color=\"#FFFFFF\">Departure Date</font></b></td>\r\n <td width=\"10%\" bgcolor=\"#808080\"><b><font color=\"#FFFFFF\">Departure Time</font></b></td>\r\n <td width=\"10%\" bgcolor=\"#808080\"><b><font color=\"#FFFFFF\">Arrival Date</font></b></td>\r\n <td width=\"10%\" bgcolor=\"#808080\"><b><font color=\"#FFFFFF\">Arrival Time</font></b></td>\r\n <td width=\"10%\" bgcolor=\"#808080\"><b><font color=\"#FFFFFF\">Adult Fare</font></b></td>\r\n <td width=\"10%\" bgcolor=\"#808080\"><b><font color=\"#FFFFFF\">Child Fare</font></b></td>\r\n </tr>\r\n");
    // end
    // begin [file="/client/flightsearch.jsp";from=(19,2);to=(66,0)]
    //Get the search information
    String des = request.getParameter("DFrom");
    String arr = request.getParameter("DTo");
    String fy = request.getParameter(FYear.value);
    String fm = request.getParameter(FMonth.value);
    String fd = request.getParameter(FDay.value);
    String f1 = fy + "-" + fm;
    String FDat = f1 + "-" + fd;
    String ty = request.getParameter(TYear.value);
    String tm = request.getParameter(TMonth.value);
    String td = request.getParameter(TDay.value);
    String t1 = ty + "-" + tm;
    String TDat = t1 + "-" + td;
    String type;
    if( request.getParameter(type[0].checked))
    type = "Return";
    else
    { type = "OneWay";
    String clas;
    if(request.getParameter(clas[0].checked))
    {clas = "ECO";
    else
    {clas = "BUSS";}
    String adult = request.getParameter(Adult.value);
    String child = request.getParameter(Child.value);
    //Get the server Flight Search Service URL
    // ServerFlightSearchBO SFSBO = new ServerFlightSearchBO();
    // ServerFlightSearch FlightSearch = SFSBO.getFlightSearchURL();
    // FlightSearchServiceClient FSearchServiceClient = new FlightSearchServiceClient
    String ServerFlightServiceURL = "http://localhost:7080/AServer/services/FlightService";
    //Find available Flight
    FlightServiceClient client = new FlightServiceClient(ServerFlightServiceURL);
    ArrayList list = client.getFlight(des, arr, FDat, TDat, type, clas, adult, child);
    Iterator it = list.iterator();
    while (it.hasNext()){
    Flight flt = (Flight)it.next();
    // end
    // HTML // begin [file="/client/flightsearch.jsp";from=(66,2);to=(68,18)]
    out.write("\r\n<tr>\r\n <td width= \"10%\">");
    // end
    // begin [file="/client/flightsearch.jsp";from=(68,21);to=(68,40)]
    out.print(flt.getFlightComp());
    // end
    // HTML // begin [file="/client/flightsearch.jsp";from=(68,42);to=(69,18)]
    out.write("</td>\r\n <td width= \"10%\">");
    // end
    // begin [file="/client/flightsearch.jsp";from=(69,21);to=(69,39)]
    out.print(flt.getFlightNum());
    // end
    // HTML // begin [file="/client/flightsearch.jsp";from=(69,41);to=(70,18)]
    out.write("</td>\r\n <td width= \"10%\">");
    // end
    // begin [file="/client/flightsearch.jsp";from=(70,21);to=(70,41)]
    out.print(flt.getDestination());
    // end
    // HTML // begin [file="/client/flightsearch.jsp";from=(70,43);to=(71,18)]
    out.write("</td>\r\n <td width= \"10%\">");
    // end
    // begin [file="/client/flightsearch.jsp";from=(71,21);to=(71,36)]
    out.print(flt.getArrive());
    // end
    // HTML // begin [file="/client/flightsearch.jsp";from=(71,38);to=(72,18)]
    out.write("</td>\r\n <td width= \"10%\">");
    // end
    // begin [file="/client/flightsearch.jsp";from=(72,21);to=(72,36)]
    out.print(flt.getFrDate());
    // end
    // HTML // begin [file="/client/flightsearch.jsp";from=(72,38);to=(73,18)]
    out.write("</td>\r\n <td width= \"10%\">");
    // end
    // begin [file="/client/flightsearch.jsp";from=(73,21);to=(73,41)]
    out.print(flt.getFlightDptTm());
    // end
    // HTML // begin [file="/client/flightsearch.jsp";from=(73,43);to=(74,18)]
    out.write("</td>\r\n <td width= \"10%\">");
    // end
    // begin [file="/client/flightsearch.jsp";from=(74,21);to=(74,36)]
    out.print(flt.getToDate());
    // end
    // HTML // begin [file="/client/flightsearch.jsp";from=(74,38);to=(75,18)]
    out.write("</td>\r\n <td width= \"10%\">");
    // end
    // begin [file="/client/flightsearch.jsp";from=(75,21);to=(75,41)]
    out.print(flt.getFlightArrTm());
    // end
    // HTML // begin [file="/client/flightsearch.jsp";from=(75,43);to=(76,1)]
    out.write("</td>\r\n ");
    // end
    // begin [file="/client/flightsearch.jsp";from=(76,3);to=(87,1)]
    int adt, chld;
    int far_A, tot_A, far_C, tot_C;
    adt = Integer.parseInt(adult);
    far_A = flt.getAdultFr();
    tot_A = adt * far_A;
    chld = Integer.parseInt(child);
    far_C = flt.getChildFr();
    tot_C = chld * far_C;
    // end
    // HTML // begin [file="/client/flightsearch.jsp";from=(87,3);to=(88,18)]
    out.write("\r\n <td width= \"10%\">");
    // end
    // begin [file="/client/flightsearch.jsp";from=(88,21);to=(88,26)]
    out.print(tot_A);
    // end
    // HTML // begin [file="/client/flightsearch.jsp";from=(88,28);to=(89,18)]
    out.write("</td>\r\n <td width= \"10%\">");
    // end
    // begin [file="/client/flightsearch.jsp";from=(89,21);to=(89,26)]
    out.print(tot_C);
    // end
    // HTML // begin [file="/client/flightsearch.jsp";from=(89,28);to=(91,0)]
    out.write("</td>\r\n</tr>\r\n");
    // end
    // begin [file="/client/flightsearch.jsp";from=(91,2);to=(100,0)]
    if(type = "Return")
    FlightServiceClient client = new FlightServiceClient(ServerFlightServiceURL);
    ArrayList list = client.getFlight(arr, des, FDat, TDat, type, clas, adult, child);
    Iterator it = list.iterator();
    while (it.hasNext()){
    Flight flt = (Flight)it.next();
    // end
    // HTML // begin [file="/client/flightsearch.jsp";from=(100,2);to=(102,18)]
    out.write("\r\n<tr>\r\n <td width= \"10%\">");
    // end
    // begin [file="/client/flightsearch.jsp";from=(102,21);to=(102,40)]
    out.print(flt.getFlightComp());
    // end
    // HTML // begin [file="/client/flightsearch.jsp";from=(102,42);to=(103,18)]
    out.write("</td>\r\n <td width= \"10%\">");
    // end
    // begin [file="/client/flightsearch.jsp";from=(103,21);to=(103,39)]
    out.print(flt.getFlightNum());
    // end
    // HTML // begin [file="/client/flightsearch.jsp";from=(103,41);to=(104,18)]
    out.write("</td>\r\n <td width= \"10%\">");
    // end
    // begin [file="/client/flightsearch.jsp";from=(104,21);to=(104,39)]
    out.print(flt.getFlightDpt());
    // end
    // HTML // begin [file="/client/flightsearch.jsp";from=(104,41);to=(105,18)]
    out.write("</td>\r\n <td width= \"10%\">");
    // end
    // begin [file="/client/flightsearch.jsp";from=(105,21);to=(105,39)]
    out.print(flt.getFlightArr());
    // end
    // HTML // begin [file="/client/flightsearch.jsp";from=(105,41);to=(106,18)]
    out.write("</td>\r\n <td width= \"10%\">");
    // end
    // begin [file="/client/flightsearch.jsp";from=(106,21);to=(106,41)]
    out.print(flt.getFlightDptDt());
    // end
    // HTML // begin [file="/client/flightsearch.jsp";from=(106,43);to=(107,18)]
    out.write("</td>\r\n <td width= \"10%\">");
    // end
    // begin [file="/client/flightsearch.jsp";from=(107,21);to=(107,41)]
    out.print(flt.getFlightDptTm());
    // end
    // HTML // begin [file="/client/flightsearch.jsp";from=(107,43);to=(108,18)]
    out.write("</td>\r\n <td width= \"10%\">");
    // end
    // begin [file="/client/flightsearch.jsp";from=(108,21);to=(108,41)]
    out.print(flt.getFlightArrDt());
    // end
    // HTML // begin [file="/client/flightsearch.jsp";from=(108,43);to=(109,18)]
    out.write("</td>\r\n <td width= \"10%\">");
    // end
    // begin [file="/client/flightsearch.jsp";from=(109,21);to=(109,41)]
    out.print(flt.getFlightArrTm());
    // end
    // HTML // begin [file="/client/flightsearch.jsp";from=(109,43);to=(110,1)]
    out.write("</td>\r\n ");
    // end
    // begin [file="/client/flightsearch.jsp";from=(110,3);to=(120,1)]
    int adlt, chd;
    int fare_A, totA, fare_C, totC;
    adlt = Integer.parseInt(adult);
    fare_A = flt.getAdultFr();
    totA = adlt * fare_A;
    chd = Integer.parseInt(child);
    fare_C = flt.getChildFr();
    totC = chd * fare_C;
    // end
    // HTML // begin [file="/client/flightsearch.jsp";from=(120,3);to=(121,18)]
    out.write("\r\n <td width= \"10%\">");
    // end
    // begin [file="/client/flightsearch.jsp";from=(121,21);to=(121,25)]
    out.print(totA);
    // end
    // HTML // begin [file="/client/flightsearch.jsp";from=(121,27);to=(122,18)]
    out.write("</td>\r\n <td width= \"10%\">");
    // end
    // begin [file="/client/flightsearch.jsp";from=(122,21);to=(122,25)]
    out.print(totC);
    // end
    // HTML // begin [file="/client/flightsearch.jsp";from=(122,27);to=(124,0)]
    out.write("</td>\r\n</tr>\r\n");
    // end
    // begin [file="/client/flightsearch.jsp";from=(124,2);to=(126,0)]
    // end
    // HTML // begin [file="/client/flightsearch.jsp";from=(126,2);to=(127,8)]
    out.write("\r\n</table>");
    // end
    } catch (Throwable t) {
    if (out != null && out.getBufferSize() != 0)
    out.clearBuffer();
    if (pageContext != null) pageContext.handlePageException(t);
    } finally {
    if (_jspxFactory != null) _jspxFactory.releasePageContext(pageContext);

    i am very glad and appreciate for your help, but i would like to know how to get the value of a radio button.
    like in another JSP file i have :
    <input type="radio" name="type" value="Return" checked>
    Return
    <input type="radio" name="type" value="OneWay">
    One Way
    and when i try to get the value which is checked, i put
    String type = request.getParameter(type.checked);
    but this doesn't work,
    i would be very appreciate for your help. Thank you

Maybe you are looking for

  • HT5957 My 4th generation ipod won't update and says iOS 6.1.3 is up to date

    My ipod isn't updating to any new update even though it's out and millions are using it. My ipod is connected to the internet and is a 4th generation. It just contiues to say iOS 6.1.3 is up to date. I have eveb tryed going though itunes store and on

  • Create a custom tcode for VF01

    Hi, My user requirement is  Need to create a new transaction (for example ZVF01) that will allow a user to create an invoice without being able to change or add any data.  The same validations on preceding documents should be the same as for the stan

  • Am I buying the right USB hub

    I want to connect a digital camera to usb port. The 3 ports on the back of computer are being used for printer/keyboard/mouse. (I am not using a Mac keyboard so don't have the 2 extra ports). I am not a techie, not even close. After reading about por

  • Why is BT BB so insanely expensive?

    I was looking to upgrade from the 40gb package to the unlimited package so I could join Netflix but I just cannot warrant paying £26 for something which is simply not worth £26. Sky offer unlimited broadband for £10. I have been with both companies a

  • A/R Downpayment Invoice ??

    Hi all, previous we adding invoice and A?R Invoice using object. Please help How to Add A/R Downpayment Invoice using object ? thanks in advance surajit Edited by: Surojit Kundu on Oct 17, 2011 11:37 AM