Can not run reports on Linux OS

Hi All,
We have running Oracle Forms and Reports Services 10g (9.0.4) on Windows 2003 Server.
The Application Works fine, and reports are generated successfully.
But when we access the same application by using Linux OS (RHEL 4.4),
The forms works fine but Linux OS could not run the report.
This seems to be a configuration problem.
Any Clues.
Thanks and Looking Forward.

Check rwserlvet.conf here you will see comment out <!-- ... --> IN the part for the reports engine two lines, one is the Path for Reports the other is for TMP for reports, try to uncomment path and use this, then restart the reports server and see if it works.
Hope this helps.
Regards.

Similar Messages

  • Can not run DBCA on Linux

    Hi,
    on 11g , Linux el5, can not run DBCA and receive :
    [oracle@localhost ~]$ dbca
    # An unexpected error has been detected by HotSpot Virtual Machine:
    #  SIGSEGV (0xb) at pc=0x00002aaab748c9f1, pid=8789, tid=48011056844432
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (1.5.0_17-b03 mixed mode)
    # Problematic frame:
    # C  [libclntsh.so.11.1+0x62a9f1]  snlinGetAddrInfo+0x1b1
    # An error report file with more information is saved as hs_err_pid8789.log
    # If you would like to submit a bug report, please visit:
    #   http://java.sun.com/webapps/bugreport/crash.jsp
    AbandonAny idea.
    Thanks.

    thanks to all and sorry of being late. Suddenly occupied by another emergency.
    Any way for xhost+ :
    [root@localhost ~]# xhost +
    access control disabled, clients can connect from any host
    [root@localhost ~]#
    [oracle@localhost ~]$ xhost +
    access control disabled, clients can connect from any hostAnd for jvm ,
    how to upgrade your JVM like 1.5.0_22 & greater versions ?
    regards.

  • Can not run report

    hi,everyone
    on my oracle ias 9.0.2 ( patch 9.0.2.2.0 ) when i run a big report server is no response,little report is very good.i don't know the reason.
    who can help me?
    thanks

    Hi,
    by the little information you provide I feel almost unable to help. However, if you call a long running Report from
    a) Forms: then Forms waits for the report to return if run in synchronous mode
    b) Reports Servlet: The Reports Servlet also waits for the Report to be finished. If this takes too long then it can happen thzat you run into a Servlet Session timeout.
    Check error log files or the Reports queuemanager to see what's really happening. If you see that the report is processed then you may need to check the Reports query against the database and tune it if required
    Fran

  • Can not run Reports from a Form

    Hello,
    First: I'm completely new to Oracle, even my english is not very good - i'm sorry for that.
    Problem:
    I want to run a report from a Form using the Report Server.
    If i use:
    WEB.SHOW_DOCUMENT('http://tfischer:8888/reports/rwservlet?report=C:\Oracle-Projekte\testbericht.rdf&USERID=user/password@oraapp&SERVER=SrvShadow&DESFORMAT=html&DESTYPE=cache', '_blank') - everything works well.
    But if i use:
    repid := FIND_REPORT_OBJECT('REPORT_NAME');
    v_rep := RUN_REPORT_OBJECT(repid); - always following Error-Message appears:
    "FRM41213: Anmeldung bei Report-Server SrvShadow nicht möglich" (english: registration on Report-Server SrvShadow not possible)
    I am using:
    Windows 2000
    Oracle DS9i
    Oracle DB92 (Personal edition)
    Can somebody help me, please?
    If you need more information, to help me, please ask.

    Hi,
    Try using
    SET_REPORT_OBJECT_PROPERTY
    (repid,REPORT_SERVER,"YOURSERVERNAME");
    before
    v_rep := RUN_REPORT_OBJECT;
    If you are testing the report on your PC using reports services on your PC then you may need to initiailize the reprots server using
    rwserver server="YOURSERVERNAME" install
    at command prompt.
    Hope this helps.
    -Jayshree

  • 3EA4 -- can not run SqlDeveloper report to "table" style

    The same SqlDeveloper report, which was/is working in 3EA3 - same Oracle user, same privileges, same platform, same connection, same Java version, same same ... can not run the report to the "table" style. It works only with the "Script" style. So, betwen EA3 and EA4 something changed. No work around, just lost capability.
    note: I tried many SqlDeveloper reports that were working in the "table" style - none of them works in the "table" style anymore with EA4 - that really is not cool :(
    Here is one of those reports:
    SELECT
       object_name "Object_Name",
       object_type "Object_Type",
       CASE OBJECT_TYPE
          WHEN 'PACKAGE BODY' THEN 'alter package ' || OWNER||'.'||OBJECT_NAME || ' compile body;'
          WHEN 'SYNONYM'      THEN 'CREATE PROCEDURE ' || OWNER||'.tmp_compile_synonym AS BEGIN EXECUTE immediate ''alter synonym ' || OWNER||'.'||OBJECT_NAME || ' compile''; END tmp_compile_synonym;'||chr (10) || '/'||chr (10) || 'EXECUTE ' || OWNER||'.tmp_compile_synonym;'||chr (10) || 'DROP PROCEDURE ' || OWNER||'.tmp_compile_synonym;'
          ELSE 'alter ' || lower (OBJECT_TYPE) || ' ' || OWNER||'.'||OBJECT_NAME || ' compile;'
       END "Compile_Statement"
    FROM dba_objects
    WHERE owner=upper(:OWNER)
    AND status = 'INVALID'
    ORDER BY object_type;Note: Reverted to EA3 until the problem is idenfied/solved
    Edited by: zaferaktan on Feb 24, 2011 11:50 AM
    Edited by: zaferaktan on Feb 24, 2011 12:30 PM

    ok, I did update to JDK 1.6_24 , edited the jdk file under .sqldeveloper to point to the correct JDK version and invoked the 3EA4 from the command line:
    raisin:~/sqldeveloper3EA4$ ./sqldeveloper.sh -J-Xmx1024m
    still having the issue. None of the "table" style reports work.
    So, something definitely changed in EA4 that broke the "table" style reports (at least in my case).
    I am using the same "thin" connections that I created before (it picked it up from the .sqldeveloper settins). Did anything change for the thin jdbc connection in EA4 compared to EA3 ? I looked at the change list and don't see it there. I saw bug 09883309 reported here: 3.0 final+EA4: Doesn't work with 11.1 OCI/Thick driver , but don't think it has anything to do with the problem I am seeing - I don't use OCI, but jdbc thin. I wonder if there is a problem with 11.2.0.2 jdbc thin in EA4 and my database server version (10gR2 base version on RHEL 4).
    But if Jim doesn't have the problem with the same JDK version and "almost" the same platform - maybe the database server version is an issue ? All I know, these reports (table style) was/is working with the EA3 - but not in EA4 .
    When I run the report - the execution window does not display anything - all grey - then if I click on the green arrow (go/run) button, I see the following exceptions in the terminal from which I invoked the sqldeveloper:
    Exception in thread "AWT-EventQueue-0" java.lang.NumberFormatException: For input string: ""
         at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
         at java.lang.Integer.parseInt(Integer.java:470)
         at java.lang.Integer.parseInt(Integer.java:499)
         at oracle.javatools.data.HashStructure.getInt(HashStructure.java:410)
         at oracle.dbtools.raptor.config.DBConfig.getInt(DBConfig.java:1044)
         at oracle.dbtools.raptor.controls.grid.ResultSetTableModel.init(ResultSetTableModel.java:112)
         at oracle.dbtools.raptor.controls.grid.OracleRSTModel.init(OracleRSTModel.java:30)
         at oracle.dbtools.raptor.controls.grid.RSTModelFactory.getResultSetTableModel(RSTModelFactory.java:47)
         at oracle.dbtools.raptor.controls.grid.ResultSetTable.setQuery(ResultSetTable.java:115)
         at oracle.dbtools.raptor.controls.display.DisplayResultTable.updateQuery(DisplayResultTable.java:158)
         at oracle.dbtools.raptor.controls.display.DisplayResultTable.refresh(DisplayResultTable.java:112)
         at oracle.dbtools.raptor.controls.display.DisplayPanel.refresh(DisplayPanel.java:769)
         at oracle.dbtools.raptor.controls.display.DisplayPanel.refresh(DisplayPanel.java:618)
         at oracle.dbtools.raptor.report.addin.ReportEditor$1.actionPerformed(ReportEditor.java:164)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
         at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:273)
         at java.awt.Component.processMouseEvent(Component.java:6289)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
         at java.awt.Component.processEvent(Component.java:6054)
         at java.awt.Container.processEvent(Container.java:2041)
         at java.awt.Component.dispatchEventImpl(Component.java:4652)
         at java.awt.Container.dispatchEventImpl(Container.java:2099)
         at java.awt.Component.dispatchEvent(Component.java:4482)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4577)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4238)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)
         at java.awt.Container.dispatchEventImpl(Container.java:2085)
         at java.awt.Window.dispatchEventImpl(Window.java:2478)
         at java.awt.Component.dispatchEvent(Component.java:4482)
         at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:644)
         at java.awt.EventQueue.access$000(EventQueue.java:85)
         at java.awt.EventQueue$1.run(EventQueue.java:603)
         at java.awt.EventQueue$1.run(EventQueue.java:601)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:98)
         at java.awt.EventQueue$2.run(EventQueue.java:617)
         at java.awt.EventQueue$2.run(EventQueue.java:615)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:614)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)

  • URGENT : FRM-41219 Can not find report : INVALID ID

    hello all
    The same problem i have also posted in forms forum..
    i am getting the exception FRM-41219 when calling the report from my form with the method RUN_REPORT_OBJECT.
    I m calling the report in my program unit method as follows :
    DECLARE
    Pl_Id ParameterList;
    RepId REPORT_OBJECT;
    Vrep Varchar2(1000);
    BEGIN
    add_parameter(pl_id,'report_parameter',text_parameter,record_block.input_box);
    RepId := find_repor_object('report_name');
    Vrep := RUN_REPORT_OBJECT(RepId,Pl_Id);
    END;
    But when i run the fmx .. i get the exception "FRM-41219 can not find report :Invalid ID"
    I have checked all possiblities i.e. i have also called the method as RUN_REPORT_OBJECT(RepId) and also RUN_REPORT_OBJECT(ReportName)..but in all cases i am getting the same error..i have also checked the environment variable ..it contains the correct path of my application folder where the report is available.
    Kindly help me with this
    if any body knows the solution..or the cause for it..please let me know here or contact me on this address
    [email protected]
    thank you.

    Try this:
    DECLARE
    Report_Id report_object;
    v_rep varchar2(200);
    rep_status varchar2(20);
    BEGIN
    report_id:=FIND_REPORT_OBJECT('EMP');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_FILENAME,:REPORT_NAME);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,:REPORT_DESFORMAT);
    if :REPORT_DESTYPE='CACHE' then
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,CACHE);
    elsif :REPORT_DESTYPE='FILE' then
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,FILE);
    end if
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESNAME,:REPORT_DESNAME);
    v_rep := RUN_REPORT_OBJECT(report_id);
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    if rep_status = 'FINISHED' then
    message('Report Completed');
    else
    message('Error when running report.');
    end if;
    END;
    Thanks
    Rohit

  • FRM 41215: CAN NOT FIND REPORT - Please help

    Hi,
    I am new to oracle 9i. I am trying to convert the forms in 8i to 9i. While i am doing i have many forms calling reports thru run_product. Now i am changing those into run_report_object. Even though i am getting errors like FRM 41215: CAN NOT FIND REPORT , INVALID REPORT ID.
    declare
    repid report_object;
    v_rep varchar2(100);
    begin
    repid := find_report_object('mrnr0028');
    v_rep := RUN_REPORT_OBJECT(repid);
    end;
    This is the command i have used. Is there anything wrong, or is there any necessity to specify any particular path for report files.
    Pls help me asap.
    Thanks

    I HAVE CREATE THIS PROGRAM UNIT(WITH LOT OF HARD WORK) FOR CHARACTRE AS WELL AS DEFAULT REPORT
    RUNING ON WEB
    -----------------FOR CHARACTER REPORT
    procedure web_report_c ( type varchar2,parameter varchar2) is
    report_id Report_Object;
    report_job_id VARCHAR2(100);
    report_status varchar2(100);
    FILE_NAME VARCHAR2(100);
    web_name varchar2(300);
    user_name varchar2(30);
    BEGIN
    user_name:=get_application_property(username);
    if type='PRINTER' THEN
    report_id:= find_report_object('REPORTNODE');
         file_name:=user_name||to_char(sysdate,'-ddmmyy_hh24miss')||'.RRPT'; --use  in case of character mode report
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_EXECUTION_MODE,BATCH);
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_COMM_MODE,ASYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE,file);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESNAME,'c:\logiWWW\temp\'||file_name); --where u want to save report TEMPRARY
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_SERVER,'REPSERVER'); --report server name
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_OTHER,parameter); --passing parameter to report
    report_job_id:=run_report_object(report_id);
         report_status:=REPORT_OBJECT_STATUS(report_JOB_id);
                   while report_status IN ('RUNNING','OPENING_REPORT','ENQUEUED') loop --checking report status
                        report_status:=REPORT_OBJECT_STATUS(report_JOB_id);
                   end loop;
                   IF report_status='FINISHED' THEN --if report is finished then make call to report
              --          web_name:='HTTP://logi/'||file_name;
                   WEB.SHOW_DOCUMENT('/logi/'||file_name,'_BLANK');
                   else
                        MESSAGE('Report has failed. '||'status is -'||report_status);
                   end if;
    ELSIF type='SCREEN' THEN
         report_id:= find_report_object('REPORTNODE');
         file_name:=user_name||to_char(sysdate,'-ddmmyy_hh24miss')||'.txt'; --use txt in case of character mode report
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_EXECUTION_MODE,BATCH);
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_COMM_MODE,ASYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE,file);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESNAME,'c:\logiWWW\temp\'||file_name); --where u want to save report TEMPRARY
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_SERVER,'REPSERVER'); --report server name
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_OTHER,parameter); --passing report parameter
    report_job_id:=run_report_object(report_id);
         report_status:=REPORT_OBJECT_STATUS(report_JOB_id); --checking of report status
                   while report_status IN ('RUNNING','OPENING_REPORT','ENQUEUED') loop
                        report_status:=REPORT_OBJECT_STATUS(report_JOB_id);
                   end loop;
                   IF report_status='FINISHED' THEN --if report status is finished then make  call to report
                        --web_name:='HTTP://ORACORP/logi/'||file_name;
                   WEB.SHOW_DOCUMENT('/logi/'||file_name,'_BLANK');
                   else
                        MESSAGE('Report has failed. '||'status is -'||report_status);
                   end if;
    end if;
    end;
    ------------FOR DEFAULT REPORT
    procedure web_report_c ( type varchar2,parameter varchar2) is
    report_id Report_Object;
    report_job_id VARCHAR2(100);
    report_status varchar2(100);
    FILE_NAME VARCHAR2(100);
    web_name varchar2(300);
    user_name varchar2(30);
    BEGIN
    user_name:=get_application_property(username);
    if type='PRINTER' THEN
    report_id:= find_report_object('REPORTNODE');
         file_name:=user_name||to_char(sysdate,'-ddmmyy_hh24miss')||'.RRPT'; --use  in case of character mode report
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_EXECUTION_MODE,BATCH);
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_COMM_MODE,ASYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE,file);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESNAME,'c:\logiWWW\temp\'||file_name); --where u want to save report
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_SERVER,'REPSERVER'); --report server name
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_OTHER,parameter); --passing parameter to report
    report_job_id:=run_report_object(report_id);
         report_status:=REPORT_OBJECT_STATUS(report_JOB_id);
                   while report_status IN ('RUNNING','OPENING_REPORT','ENQUEUED') loop --checking report status
                        report_status:=REPORT_OBJECT_STATUS(report_JOB_id);
                   end loop;
                   IF report_status='FINISHED' THEN --if report is finished then make call to report
              --          web_name:='HTTP://logi/'||file_name;
                   WEB.SHOW_DOCUMENT('/logi/'||file_name,'_BLANK');
                   else
                        MESSAGE('Report has failed. '||'status is -'||report_status);
                   end if;
    ELSIF type='SCREEN' THEN
         report_id:= find_report_object('REPORTNODE');
         file_name:=user_name||to_char(sysdate,'-ddmmyy_hh24miss')||'.txt'; --use txt in case of character mode report
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_EXECUTION_MODE,BATCH);
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_COMM_MODE,ASYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE,file);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESNAME,'c:\logiWWW\temp\'||file_name); --where u want to save report
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_SERVER,'REPSERVER'); --report server name
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_OTHER,parameter); --passing report parameter
    report_job_id:=run_report_object(report_id);
         report_status:=REPORT_OBJECT_STATUS(report_JOB_id); --checking of report status
                   while report_status IN ('RUNNING','OPENING_REPORT','ENQUEUED') loop
                        report_status:=REPORT_OBJECT_STATUS(report_JOB_id);
                   end loop;
                   IF report_status='FINISHED' THEN --if report status is finished then make  call to report
                        --web_name:='HTTP://ORACORP/logi/'||file_name;
                   WEB.SHOW_DOCUMENT('/logi/'||file_name,'_BLANK');
                   else
                        MESSAGE('Report has failed. '||'status is -'||report_status);
                   end if;
    end if;
    end;

  • Dbassist exception and netasst can not run

    Oracle 815 have been installed on turbo linux 2.2.10V4.0(CLASSPATH , LD_LIBARY_PATH are set both). But the netasst can not run. When I type netasst , linux give me noting the quit to xterm promot. And when run dbassist , it give a message like follow:
    JNLS Exception racle.ntpg.jnls.JNLSException Unable to find any National Character Sets. please check your Oracle installion.
    I have only choose one language(english) to install Oracle815.
    can anyone help me?
    Thanx.
    dflan

    thanks jmsalvo (John Salvo) for posting answer at http://homepages.tig.com.au/~jmsalvo/linux/oracle8i.html .
    dflan
    null

  • Mac Fireworks Can not Run.  An Internal Error

    I have a two day old iMac with Snow Leopard(OSX 10.6.5)    I just installed a freshly download version of Adobe CS4 Design Premium.  All of the other applications work great except for Fireworks.   The program never loads, I only see the splash screen and then the error pops up that it can not run, an internal error occurred.   It has the updater installed 10.0.4.1.   I don't know what to do..

    I do get this type of error dump to send to Apple .  Sorry for taking up so much space here on the forum...
    Process:         Adobe Fireworks CS4 [174]
    Path:            /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/MacOS/Adobe Fireworks CS4
    Identifier:      com.macromedia.fireworks
    Version:         Adobe Fireworks CS4 version "10.0.0.495" (10.0.0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [92]
    Date/Time:       2010-12-31 19:50:11.304 -0500
    OS Version:      Mac OS X 10.6.5 (10H574)
    Report Version:  6
    Interval Since Last Report:          61862 sec
    Crashes Since Last Report:           3
    Per-App Interval Since Last Report:  386 sec
    Per-App Crashes Since Last Report:   5
    Anonymous UUID:                      2573B182-7C05-4E09-8157-30FC749FB681
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x000000000000000c
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   libstdc++.6.dylib             0x9715bf4e std::_Rb_tree_increment(std::_Rb_tree_node_base*) + 36
    1   com.macromedia.fireworks      0x00ee3506 0x1000 + 15607046
    2   com.macromedia.fireworks      0x00ee3534 0x1000 + 15607092
    3   com.macromedia.fireworks      0x00ee3853 0x1000 + 15607891
    4   com.macromedia.fireworks      0x005e70e4 0x1000 + 6185188
    5   com.macromedia.fireworks      0x005e7942 0x1000 + 6187330
    6   com.macromedia.fireworks      0x001f33d7 0x1000 + 2040791
    7   com.macromedia.fireworks      0x001f5076 0x1000 + 2048118
    8   com.macromedia.fireworks      0x00e6d986 0x1000 + 15124870
    9   com.macromedia.fireworks      0x00e6db1f 0x1000 + 15125279
    10  com.macromedia.fireworks      0x00e6dcba 0x1000 + 15125690
    11  com.macromedia.fireworks      0x00e6dd0a 0x1000 + 15125770
    12  com.macromedia.fireworks      0x0017d27b 0x1000 + 1557115
    13  com.macromedia.fireworks      0x0017d2bc 0x1000 + 1557180
    14  com.macromedia.fireworks      0x00e80555 0x1000 + 15201621
    15  com.macromedia.fireworks      0x00e805b2 0x1000 + 15201714
    16  com.macromedia.fireworks      0x001f4ff9 0x1000 + 2047993
    17  com.macromedia.fireworks      0x001f5040 0x1000 + 2048064
    18  com.macromedia.fireworks      0x00e6d986 0x1000 + 15124870
    19  com.macromedia.fireworks      0x00e6db1f 0x1000 + 15125279
    20  com.macromedia.fireworks      0x00e6dcba 0x1000 + 15125690
    21  com.macromedia.fireworks      0x00e6dd0a 0x1000 + 15125770
    22  com.macromedia.fireworks      0x0017d27b 0x1000 + 1557115
    23  com.macromedia.fireworks      0x0017d2bc 0x1000 + 1557180
    24  com.macromedia.fireworks      0x00e80555 0x1000 + 15201621
    25  com.macromedia.fireworks      0x00e805b2 0x1000 + 15201714
    26  com.macromedia.fireworks      0x001f4ff9 0x1000 + 2047993
    27  com.macromedia.fireworks      0x001f5040 0x1000 + 2048064
    28  com.macromedia.fireworks      0x00e6d986 0x1000 + 15124870
    29  com.macromedia.fireworks      0x00e6db1f 0x1000 + 15125279
    30  com.macromedia.fireworks      0x00e6dcba 0x1000 + 15125690
    31  com.macromedia.fireworks      0x00e6dd0a 0x1000 + 15125770
    32  com.macromedia.fireworks      0x0017d27b 0x1000 + 1557115
    33  com.macromedia.fireworks      0x0017d3da 0x1000 + 1557466
    34  com.macromedia.fireworks      0x00e71d87 0x1000 + 15142279
    35  libSystem.B.dylib             0x90cab1ff __cxa_finalize + 208
    36  libSystem.B.dylib             0x90cab114 exit + 33
    37  com.apple.HIServices          0x996cf8bb _GetApplicationDesiresAttention + 0
    38  com.macromedia.fireworks      0x007883b6 0x1000 + 7893942
    39  libPowerPlant2.dylib          0x021f3945 FW_PowerPlant::LCarbonApp::Run() + 49
    40  com.macromedia.fireworks      0x00784386 0x1000 + 7877510
    41  com.macromedia.fireworks      0x000037be 0x1000 + 10174
    42  com.macromedia.fireworks      0x000036d9 0x1000 + 9945
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib             0x90cb2982 kevent + 10
    1   libSystem.B.dylib             0x90cb309c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib             0x90cb2559 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib             0x90cb22fe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib             0x90cb1d81 _pthread_wqthread + 390
    5   libSystem.B.dylib             0x90cb1bc6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib             0x90cbee39 syscall + 5
    1   com.apple.OpenTransport       0x0ad45851 CarbonSelectThreadFunc + 257
    2   libSystem.B.dylib             0x90cb985d _pthread_start + 345
    3   libSystem.B.dylib             0x90cb96e2 thread_start + 34
    Thread 3:
    0   libSystem.B.dylib             0x90cba0a6 __semwait_signal + 10
    1   libSystem.B.dylib             0x90cb9d62 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x90cbb9f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.OpenTransport       0x0ad41d73 CarbonOperationThreadFunc + 203
    4   libSystem.B.dylib             0x90cb985d _pthread_start + 345
    5   libSystem.B.dylib             0x90cb96e2 thread_start + 34
    Thread 4:
    0   libSystem.B.dylib             0x90c8c15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib             0x90cb9ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib             0x90ce8ac8 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore 0x940dbecd TSWaitOnConditionTimedRelative + 242
    4   ...ple.CoreServices.CarbonCore 0x940dbc0b TSWaitOnSemaphoreCommon + 511
    5   ...ple.CoreServices.CarbonCore 0x940ffe33 TimerThread + 97
    6   libSystem.B.dylib             0x90cb985d _pthread_start + 345
    7   libSystem.B.dylib             0x90cb96e2 thread_start + 34
    Thread 5:
    0   libSystem.B.dylib             0x90c8c0fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x90c8c867 mach_msg + 68
    2   ...ple.CoreServices.CarbonCore 0x941850d0 YieldToThread + 446
    3   ...ple.CoreServices.CarbonCore 0x941851d3 SetThreadState + 134
    4   ...ple.CoreServices.CarbonCore 0x9418528e SetThreadStateEndCritical + 111
    5   libPowerPlant2.dylib          0x022054e7 FW_PowerPlant::LThread::SemWait(FW_PowerPlant::LSemaphore*, long, QHdr&, unsigned char&) + 119
    6   libPowerPlant2.dylib          0x022043fd FW_PowerPlant::LSemaphore::BlockThread(long) + 61
    7   libPowerPlant2.dylib          0x02204460 FW_PowerPlant::LSemaphore::Wait(long) + 68
    8   libPowerPlant2.dylib          0x0220596c FW_PowerPlant::LThread::Cleanup::Run() + 32
    9   libPowerPlant2.dylib          0x022066ec FW_PowerPlant::LThread::DoEntry(void*) + 30
    10  ...ple.CoreServices.CarbonCore 0x9418585f CooperativeThread + 309
    11  libSystem.B.dylib             0x90cb985d _pthread_start + 345
    12  libSystem.B.dylib             0x90cb96e2 thread_start + 34
    Thread 6:
    0   libSystem.B.dylib             0x90c8c142 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib             0x90cb9cfc _pthread_cond_wait + 1089
    2   libSystem.B.dylib             0x90d0246f pthread_cond_wait + 48
    3   com.adobe.amt.services        0x204f6552 AMTConditionLock::LockWhenCondition(int) + 46
    4   com.adobe.amt.services        0x204f1995 _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 115
    5   com.adobe.amt.services        0x204f65b0 AMTThread::Worker(void*) + 20
    6   libSystem.B.dylib             0x90cb985d _pthread_start + 345
    7   libSystem.B.dylib             0x90cb96e2 thread_start + 34
    Thread 7:
    0   libSystem.B.dylib             0x90cba0a6 __semwait_signal + 10
    1   libSystem.B.dylib             0x90cb9d62 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x90cbb9f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x940f051e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x940dbea5 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x940d7873 MPWaitOnQueue + 250
    6   com.macromedia.fireworks      0x009a83b7 0x1000 + 10122167
    7   ...ple.CoreServices.CarbonCore 0x940bb85a PrivateMPEntryPoint + 68
    8   libSystem.B.dylib             0x90cb985d _pthread_start + 345
    9   libSystem.B.dylib             0x90cb96e2 thread_start + 34
    Thread 8:
    0   libSystem.B.dylib             0x90cba0a6 __semwait_signal + 10
    1   libSystem.B.dylib             0x90cb9d62 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x90cbb9f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x940f051e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x940dbea5 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x940d7873 MPWaitOnQueue + 250
    6   AdobeACE                      0x03bd438d 0x3ba3000 + 201613
    7   AdobeACE                      0x03bd3d85 0x3ba3000 + 200069
    8   ...ple.CoreServices.CarbonCore 0x940bb85a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib             0x90cb985d _pthread_start + 345
    10  libSystem.B.dylib             0x90cb96e2 thread_start + 34
    Thread 9:
    0   libSystem.B.dylib             0x90cba0a6 __semwait_signal + 10
    1   libSystem.B.dylib             0x90cb9d62 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x90cbb9f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x940f051e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x940dbea5 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x940d7873 MPWaitOnQueue + 250
    6   AdobeACE                      0x03bd438d 0x3ba3000 + 201613
    7   AdobeACE                      0x03bd3d85 0x3ba3000 + 200069
    8   ...ple.CoreServices.CarbonCore 0x940bb85a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib             0x90cb985d _pthread_start + 345
    10  libSystem.B.dylib             0x90cb96e2 thread_start + 34
    Thread 10:
    0   libSystem.B.dylib             0x90cba0a6 __semwait_signal + 10
    1   libSystem.B.dylib             0x90cb9d62 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x90cbb9f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x940f051e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x940dbea5 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x940d7873 MPWaitOnQueue + 250
    6   AdobeACE                      0x03bd438d 0x3ba3000 + 201613
    7   AdobeACE                      0x03bd3d85 0x3ba3000 + 200069
    8   ...ple.CoreServices.CarbonCore 0x940bb85a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib             0x90cb985d _pthread_start + 345
    10  libSystem.B.dylib             0x90cb96e2 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x00000001  ecx: 0x0a850002  edx: 0x0a850002
      edi: 0x0a857ed0  esi: 0x0a859c20  ebp: 0xbfffe968  esp: 0xbfffe968
       ss: 0x0000001f  efl: 0x00010246  eip: 0x9715bf4e   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x0000000c
    Binary Images:
        0x1000 -  0x1382fdf +com.macromedia.fireworks Adobe Fireworks CS4 version "10.0.0.495" (10.0.0) <7F543F6E-FB5A-4B57-8061-65703B7FE4BD> /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/MacOS/Adobe Fireworks CS4
    0x1dcd000 -  0x1e9ffe7 +AdobeAXEDOMCore ??? (???) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
    0x1f53000 -  0x1fb6027 +com.adobe.PlugPlug 1.0.0.71 (1.0.0.71) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
    0x2017000 -  0x2034fef +libCurl.dylib ??? (???) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/MacOS/libCurl.dylib
    0x203c000 -  0x2056fea +libChar16.dylib ??? (???) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/MacOS/libChar16.dylib
    0x2061000 -  0x2083fc0 +libCoreTypes.dylib ??? (???) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/MacOS/libCoreTypes.dylib
    0x209a000 -  0x20a1ffc  com.apple.carbonframeworktemplate 1.0 (1.0) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/NetIO.framework/Versions/A/NetIO
    0x20b1000 -  0x20b5fff +Dioxide.dylib ??? (???) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/Dioxide.dylib
    0x20c1000 -  0x20c8ffd +libfwutility.dylib ??? (???) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/libfwutility.dylib
    0x20d2000 -  0x2122fc7 +com.macromedia.javascript Javascript version 1.0 (1.0) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/Javascript.framework/Versions/A/Javascript
    0x2137000 -  0x2144fff +com.macromedia.moa Moa version 1.0 (1.0) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/Moa.framework/Versions/A/Moa
    0x2151000 -  0x2158fff +com.macromedia.morefiles MoreFiles version 1.0 (1.0) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/MoreFiles.framework/Versions/A/MoreFiles
    0x215f000 -  0x224bfef +libPowerPlant2.dylib ??? (???) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/libPowerPlant2.dylib
    0x23f1000 -  0x241bffc +SiteShare.dylib ??? (???) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/SiteShare.dylib
    0x2452000 -  0x2459fe3 +com.macromedia.testframework 1.0 (1.0) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/uwchar.framework/Versions/A/uwchar
    0x245e000 -  0x2462ffc +com.adobe.AdobeCrashReporter 2.5 (3.0.20080806) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
    0x2468000 -  0x2484fd7 +com.adobe.LogTransport 1.0 (1.0) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/LogTransport.framework/Versions/A/LogTransport
    0x248f000 -  0x24a8fff +libgiff.dylib ??? (???) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/libgiff.dylib
    0x24b5000 -  0x24d3fe7 +com.macromedia.png LibPNG version 1.0 (1.0) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/LibPNG.framework/Versions/A/LibPNG
    0x24db000 -  0x24e9feb +com.macromedia.zlib ZLib version 1.0 (1.0) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/ZLib.framework/Versions/A/ZLib
    0x24ee000 -  0x29ecfc3 +AdobeOwlCanvas ??? (???) <874635A0-B4F1-4387-8728-9C795AB8E905> /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
    0x2b35000 -  0x2b46ffb +LogTransport2 ??? (???) <835B7B84-5A67-370B-AB39-8E448AA81FA0> /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/LogTransport2.framework/Versions/A/LogTransport2
    0x2b50000 -  0x2b7fff7 +com.adobe.headlights.LogSessionFramework ??? (2.0.0.06112008) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x2ba7000 -  0x2d5dff4 +com.adobe.amtlib amtlib 2.0.1.10077 (2.0.1.10077) <CB2EC3BF-6771-4DAB-BF29-6775FB6F9608> /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x2d94000 -  0x2f8efcf +AdobeOwl ??? (???) <75FF96D2-B036-4FF2-8738-033320CE25C2> /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x3009000 -  0x3099fc3 +WRServices ??? (???) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x321b000 -  0x32f0fdd +FileInfo ??? (???) <72E78CD5-408E-477E-AA47-2571017DC2F9> /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x3321000 -  0x3345ff6 +AdobeAXE8SharedExpat ??? (???) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
    0x3358000 -  0x3372fff +AdobeBIB ??? (???) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x337d000 -  0x33ddfc7 +AdobeXMP ??? (???) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x33ec000 -  0x3a07fd7 +AdobeAGM ??? (???) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x3ba3000 -  0x3cb0fff +AdobeACE ??? (???) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x3cce000 -  0x3f6afcf +AdobeCoolType ??? (???) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x3ff5000 -  0x4016ff7 +AdobeBIBUtils ??? (???) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x4023000 -  0x4063fef +AdobeARE ??? (???) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
    0x406d000 -  0x4437fef +AdobeMPS ??? (???) <277E01A3-CAC3-4FA9-A591-4BC0A5BC125A> /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x44c6000 -  0x4abefdf +AdobePDFL ??? (???) <7C5A530C-740F-4598-8BA2-6AFF51FD2CA2> /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/AdobePDFL.framework/Versions/A/AdobePDFL
    0x4c02000 -  0x5922fff +com.adobe.psl AdobePSL 11.0.0.1656 (11.0.0.1656) <A87566A2-8B8D-45B7-98FF-5396A77649C8> /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
    0x5c56000 -  0x5cd2fef +AdobeScCore 3.7.0 (compatibility 3.7.0) <17A0DA14-E4D4-42B0-81B4-B75E4CB2DD8C> /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0x5d28000 -  0x5e10fdf +AdobePDFPort ??? (???) <09C649C4-29D4-4CC6-A22A-BFFD4F751169> /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort
    0x5e55000 -  0x5ee22cb +libicucnv.dylib.36.0 36.0.0 (compatibility 36.0.0) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/ICUConverter.framework/Versions/3.6/libicucnv.dylib.36.0
    0x5f0f000 -  0x68bf57f +libicudata.dylib.36.0 36.0.0 (compatibility 36.0.0) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.dylib.36.0
    0x68c2000 -  0x699123b +libicui18n.dylib.36.0 36.0.0 (compatibility 36.0.0) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/ICUInternationalization.framework/Versions/3.6/libicui18n.dyl ib.36.0
    0x6a3a000 -  0x6b0edb7 +libicuuc.dylib.36.0 36.0.0 (compatibility 36.0.0) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.6/libicuuc.dylib.36.0
    0x6b6f000 -  0x782cfdf +com.adobe.illustrator 338 (14.0.0) <D8621BED-6312-45E6-89E1-F49896F3E87E> /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/AILib.framework/Versions/A/AILib
    0x8925000 -  0x8975fff +com.adobe.illustrator.aiport AIPort version 1.0 (1.0) <9B4C73DE-716B-4787-BB01-E1DDDC6DEA53> /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/AIPort.framework/Versions/A/AIPort
    0x8a0e000 -  0x8a5dff3 +FilterPort ??? (???) <66918FA0-9135-4C31-81DA-D4B5F8FDB798> /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/FilterPort.framework/Versions/A/FilterPort
    0x8afc000 -  0x8afd027 +SPBasic ??? (???) <9121C50E-FA52-4FA2-B299-AF180C3A1316> /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/SPBasic.framework/Versions/A/SPBasic
    0x8b01000 -  0x8edb01f +com.adobe.linguistic.LinguisticManager 4.0.0 (7863) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x8f8f000 -  0x903ffeb +libCrypto.dylib ??? (???) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/MacOS/libCrypto.dylib
    0x908a000 -  0x90acffc +libSSL.dylib ??? (???) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/MacOS/libSSL.dylib
    0x90b9000 -  0x90f9ff7  com.apple.vmutils 4.2 (106) <834EA6B0-C91B-4CF1-ED3C-229C26459578> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x9112000 -  0x91c7fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <0B69B1F5-3440-B0BF-957F-E0ADD49F13CB> /usr/lib/libcrypto.0.9.7.dylib
    0x9778000 -  0x9786fe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <07211458-FD06-9FEF-3DF4-2E5F0304D4BC> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x97cf000 -  0x97d0ff7  com.apple.textencoding.unicode 2.3 (2.3) <78A61FD5-70EE-19EA-48D4-3481C640B70D> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0xad3e000 -  0xad59ff7  com.apple.OpenTransport 10.6.0 (10.6.0) <ECA6FEC6-5ECD-51BA-162F-CFC43899196A> /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport
    0xadab000 -  0xadf2fc7 +com.adobe.adobe_caps adobe_caps 2.0.99.0 (2.0.99.0) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0xae02000 -  0xae0fff7 +com.adobe.asneu.framework asneu version 1.6.2f01 (1.6.2) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/asneu.framework/Versions/A/asneu
    0xae1d000 -  0xae1dff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <01401BF8-3FC7-19CF-ACCE-0F292BFD2F25> /usr/lib/libmx.A.dylib
    0xbfc0000 -  0xbfdafc3  com.apple.AppleIntermediateCodec 1.2 (145) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleIntermediateCodec
    0xbfdf000 -  0xbfe4ff7  com.apple.AppleMPEG2Codec 1.0.1 (220) <6FDFF3C8-7ECE-CB74-1374-9C0230C54F78> /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0x204d6000 - 0x20577fc3 +com.adobe.amt.services AMTServices 2.0.1.10077 (BuildVersion: 53.352460; BuildDate: Tue Jul 29 2008 16:31:09) (2 . 0) <31E82904-C3C2-424E-A1AE-A5EFADBB19B8> /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/amtservices.framework/Versions/A/amtservices
    0x20655000 - 0x206aafef  com.apple.AppleProResDecoder 2.0 (223) <793BA98A-2E7D-1C39-998D-805B60034DF4> /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/AppleProResDecoder
    0x206e2000 - 0x206fbfe7  com.apple.applepixletvideo 1.2.19 (1.2d19) <4A68731C-8071-6CF5-012C-40F00CD1333A> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixletVideo
    0x208ac000 - 0x20d2efe3 +AdobeLM_libFNP.dylib ??? (???) <02E9AC76-9CC6-4974-AF05-48E737C2CC20> /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/amtlib.framework/Versions/A/AdobeLM_libFNP.dylib
    0x20e58000 - 0x20ed2fe7  com.apple.AppleVAH264HW.component 2.0 (1.0) <B76CE5C0-7401-3B9C-CC22-369DABAAC2DD> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW
    0x20f95000 - 0x20fd1fe3  com.apple.QuickTimeFireWireDV.component 7.6.6 (1756) <5723A7A8-2C99-561B-8D87-C8B0716436FA> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTimeFireWireD V
    0x21148000 - 0x2115aff7  libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <8D606435-1A3C-FE0B-824A-1386809FFFF5> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x22300000 - 0x22331fe3 +com.adobe.amt.registration AMTRegistration 2.0.1.10077 (BuildVersion: 53.352460; BuildDate: Tue Jul 29 2008 16:31:09) (2 . 0) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/registration.framework/Versions/A/registration
    0x2236a000 - 0x223c6ff2 +AdobeUpdater ??? (???) <064CFAA4-1CAF-46E3-BEBF-04948641C927> /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/AdobeUpdater.framework/Versions/A/AdobeUpdater
    0x40000000 - 0x400ae030 +AdobeJP2K ??? (???) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <28F0312C-0678-159E-34E2-9A4E3DEADB20> /usr/lib/dyld
    0x9000d000 - 0x900d7fef  com.apple.CoreServices.OSServices 357 (357) <8E13E1FB-6EBD-780B-6B08-B37118311071> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x900d8000 - 0x9034bfe7  com.apple.Foundation 6.6.4 (751.42) <ACC0BAEB-C590-7052-3AB2-86C207C3D6D4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90401000 - 0x9040ffe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <3CE8AA79-F077-F1B0-A039-9103A4A02E92> /usr/lib/libz.1.dylib
    0x9048f000 - 0x905c6ff7  com.apple.CoreAUC 6.04.04 (6.04.04) <050D9D16-AAE7-3460-4318-8449574F26C7> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x905c7000 - 0x90675ff3  com.apple.ink.framework 1.3.3 (107) <57B54F6F-CE35-D546-C7EC-DBC5FDC79938> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x90676000 - 0x90676ff7  com.apple.vecLib 3.6 (vecLib 3.6) <7362077A-890F-3AEF-A8AB-22247B10E106> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x90677000 - 0x906bbff3  com.apple.coreui 2 (114) <29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x906bc000 - 0x907c8ff7  libGLProgrammability.dylib ??? (???) <8B308FAE-843F-EE76-0254-3374CBFFA7B3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
    0x907c9000 - 0x907c9ff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x907ca000 - 0x907eafe7  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <751955F3-21FB-A03A-4E92-1F3D4EFB8C5B> /usr/lib/libresolv.9.dylib
    0x907eb000 - 0x90c01ff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x90c49000 - 0x90c8aff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <16DAE1A5-937A-1CA2-D98F-2AF958B62993> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
    0x90c8b000 - 0x90e32ff7  libSystem.B.dylib 125.2.1 (compatibility 1.0.0) <62291026-D016-705D-DC1E-FC2B09D47DE5> /usr/lib/libSystem.B.dylib
    0x90ee0000 - 0x90f7dfe3  com.apple.LaunchServices 362.1 (362.1) <885D8567-9E40-0105-20BC-42C7FF657583> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x91026000 - 0x910a8ffb  SecurityFoundation ??? (???) <006B3166-E7E2-F763-04FC-3DD458C14F5F> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x910f7000 - 0x91109ff7  com.apple.CoreMediaAuthoring 0.700 (700) <446FBB01-279B-2BED-E5A8-D36241B704B1> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthor ing
    0x9110a000 - 0x9111ffff  com.apple.ImageCapture 6.0.1 (6.0.1) <E7ED2AC1-834C-A44E-531E-EC05F0496DBF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x91120000 - 0x91142fef  com.apple.DirectoryService.Framework 3.6 (621.9) <F2EEE9D7-D4FB-14F3-E647-ABD32754F557> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x91159000 - 0x9158eff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x91609000 - 0x91625fe3  com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x91626000 - 0x91657ff7  libGLImage.dylib ??? (???) <78F59EAB-BBD4-7366-CA84-970547501978> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x91658000 - 0x91693feb  libFontRegistry.dylib ??? (???) <4FB144ED-8AF9-27CF-B315-DCE5575D5231> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x91694000 - 0x916a8fe7  libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x91ac5000 - 0x91b3ffff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <F7C9B01D-45AD-948B-2D26-9736524C1A33> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x91b40000 - 0x91c44fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <BDEFA030-5E75-7C47-2904-85AB16937F45> /usr/lib/libcrypto.0.9.8.dylib
    0x91c96000 - 0x91cd9ff7  libGLU.dylib ??? (???) <F8580594-0B38-F3ED-A715-CB3776B747A0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x91cda000 - 0x91d90ff7  libFontParser.dylib ??? (???) <33F62EE1-E457-C6FD-369E-E86745B94A4B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x91d91000 - 0x91d9dff7  libkxld.dylib ??? (???) <F0E915AD-6B32-0D5E-D24B-B188447FDD23> /usr/lib/system/libkxld.dylib
    0x91d9e000 - 0x91d9eff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x91e0e000 - 0x925fd557  com.apple.CoreGraphics 1.545.0 (???) <1AB39678-00D5-FB88-3B41-93D78348E0DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
    0x92647000 - 0x92647ff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x92751000 - 0x9279afe7  libTIFF.dylib ??? (???) <AC1FC806-F7F4-174B-375F-FE5D6008666C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
    0x928ab000 - 0x928adff7  com.apple.securityhi 4.0 (36638) <38D36D4D-C798-6ACE-5FA8-5C001993AD6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x928ae000 - 0x928cffe7  com.apple.opencl 12.3 (12.3) <DEA600BF-4F54-66B5-DB2F-DC57FD518543> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x928d0000 - 0x92980ff3  com.apple.ColorSync 4.6.3 (4.6.3) <0354B408-665F-8B3F-87FF-64E6322276F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x92981000 - 0x929e2fe7  com.apple.CoreText 3.5.0 (???) <BB50C045-25F5-65B8-B1DB-8CDAEF45EB46> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
    0x929e3000 - 0x92cdcfef  com.apple.QuickTime 7.6.6 (1756) <F08B13B6-31D7-BD18-DA87-A0CDFCF13B8F> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x92cdd000 - 0x93048ff7  com.apple.QuartzCore 1.6.3 (227.34) <CC1C1631-D8D1-D416-171E-A1683274E479> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x93049000 - 0x93082ff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <D6F24434-8217-DF72-2126-1953080680D7> /usr/lib/libcups.2.dylib
    0x93083000 - 0x93fd5fef  com.apple.QuickTimeComponents.component 7.6.6 (1756) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTimeComponent s
    0x9406b000 - 0x94078ff7  com.apple.NetFS 3.2.1 (3.2.1) <A6443845-5815-2429-7649-C51A4B5E7DF9> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x94079000 - 0x9407bff7  libRadiance.dylib ??? (???) <10048B4A-2AE8-A4E2-21B8-C6E7A8C5B76F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
    0x9407c000 - 0x94087ff7  libGL.dylib ??? (???) <48405993-0AE9-292B-6705-C3525528682A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x94088000 - 0x9408efff  com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x9408f000 - 0x94094ff7  com.apple.OpenDirectory 10.6 (10.6) <C1B46982-7D3B-3CC4-3BC2-3E4B595F0231> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x94095000 - 0x943b5ff3  com.apple.CoreServices.CarbonCore 861.23 (861.23) <B08756E4-32C5-CC33-0268-7C00A5ED7537> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x943b6000 - 0x943caffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x94410000 - 0x9453ffe3  com.apple.audio.toolbox.AudioToolbox 1.6.5 (1.6.5) <0A0F68E5-4806-DB51-764B-D97554B801AD> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94540000 - 0x94547ff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x94548000 - 0x94e28ff7  com.apple.AppKit 6.6.7 (1038.35) <ABC7783C-E4D5-B848-BED6-99451D94D120> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94e29000 - 0x94ed1ffb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x94ed2000 - 0x94edcffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x94edd000 - 0x94f3aff7  com.apple.framework.IOKit 2.0 (???) <A769737F-E0D6-FB06-29B4-915CF4F43420> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x94f3b000 - 0x94f3cff7  com.apple.TrustEvaluationAgent 1.1 (1) <FEB55E8C-38A4-CFE9-A737-945F39761B4C> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x94f4d000 - 0x94f80ff7  com.apple.AE 496.4 (496.4) <7F34EC47-8429-3077-8158-54F5EA908C66> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x94fd8000 - 0x9501cfe7  com.apple.Metadata 10.6.3 (507.12) <8632684D-ED4C-4CE1-4C53-015DFF10D873> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x95192000 - 0x95286ff7  libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <9EC28185-D26F-533F-90C4-FBAA13A15947> /usr/lib/libiconv.2.dylib
    0x9541f000 - 0x9554bffb  com.apple.MediaToolbox 0.484.20 (484.20) <D67788A2-B772-C5DB-B12B-173B2F8EE40B> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x955f9000 - 0x95679feb  com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x9567a000 - 0x95b33ffb  com.apple.VideoToolbox 0.484.20 (484.20) <E7B9F015-2569-43D7-5268-375ED937ECA5> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x95b34000 - 0x95b5cff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x95b9e000 - 0x95e01fef  com.apple.security 6.1.1 (37594) <1949216A-7583-B73A-6112-4D55CA5852E3> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x95e02000 - 0x95e10ff7  com.apple.opengl 1.6.11 (1.6.11) <286D1BC4-4CD8-3CD4-F723-5C196FE15FE0> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x95e11000 - 0x95ea3fe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x96292000 - 0x96295ff7  libCoreVMClient.dylib ??? (???) <1F738E81-BB71-32C5-F1E9-C1302F71021C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x96296000 - 0x96299fe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x9629a000 - 0x962a3ff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x962a4000 - 0x962e1ff7  com.apple.CoreMedia 0.484.20 (484.20) <105DDB24-E45F-5473-99E1-B09FDEAE4500> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x96309000 - 0x96437fe7  com.apple.CoreData 102.1 (251) <E6A457F0-A0A3-32CD-6C69-6286E7C0F063> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x96438000 - 0x9643cff7  libGIF.dylib ??? (???) <DA5758A4-71B0-DD6E-7402-B7FB15387569> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
    0x9643d000 - 0x964eafe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x964eb000 - 0x96595fe7  com.apple.CFNetwork 454.11.5 (454.11.5) <D8963574-285A-3BD6-6B25-07D39C6F67A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
    0x96596000 - 0x965dcff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x96721000 - 0x96739ff7  com.apple.CFOpenDirectory 10.6 (10.6) <F9AFC571-3539-6B46-ABF9-46DA2B608819> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x9673a000 - 0x9673dffb  com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x9673e000 - 0x96764ffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x96765000 - 0x967d4ff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <2FC2178F-FEF9-6E3F-3289-A6307B1A154C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x967d5000 - 0x96870ff7  com.apple.ApplicationServices.ATS 4.4 (???) <ECB16606-4DF8-4AFB-C91D-F7947C26040F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x96871000 - 0x96871ff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x96872000 - 0x9692bfe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x9692c000 - 0x9692cff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <1DEC639C-173D-F808-DE0D-4070CC6F5BC7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x96988000 - 0x969ecffb  com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework /Versions/A/HTMLRendering
    0x969ed000 - 0x96a11ff7  libJPEG.dylib ??? (???) <46AF3A0F-2B8D-87B9-62D4-0905678A64DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
    0x96a12000 - 0x96bcbfeb  com.apple.ImageIO.framework 3.0.4 (3.0.4) <C145139E-24C4-5A3D-B17C-809D528354B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
    0x96bcc000 - 0x96bd0ff7  IOSurface ??? (???) <D849E1A5-6B0C-2A05-2765-850EC39BA2FF> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x96c9f000 - 0x96d7afeb  com.apple.DesktopServices 1.5.9 (1.5.9) <CED00AC1-924B-0E45-7D5E-1CEA8929F5BE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x96d7b000 - 0x9709ffef  com.apple.HIToolbox 1.6.3 (???) <0A5F56E2-9AF3-728D-70AE-429522AEAD8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x9714f000 - 0x971b9fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x976da000 - 0x97727feb  com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <8B819445-BDC3-74BD-4A7B-D650E511F0BF> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
    0x9772e000 - 0x9774dff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9776e000 - 0x9776eff7  com.apple.Carbon 150 (152) <B7AA34BE-057A-4A6B-A535-792AC1015F8E> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x977de000 - 0x978bcfef  com.apple.QuickTimeMPEG4.component 7.6.6 (1756) <D01DEFB0-625A-798D-2091-5012C778951D> /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG4
    0x978e9000 - 0x9792cff7  com.apple.NavigationServices 3.5.4 (182) <753B8906-06C0-3AE0-3D6A-8FF5AC18ED12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x98566000 - 0x98567ff7  com.apple.audio.units.AudioUnit 1.6.5 (1.6.5) <BE4C2495-B758-AD22-DCC0-56A6791E948E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x98608000 - 0x98608ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <BC501C9F-7C20-961A-B135-0A457667D03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x986b3000 - 0x986f5ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <3F0ED200-741B-4E27-B89F-634B131F5E9E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x986f6000 - 0x98700fe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x98701000 - 0x988dcff3  libType1Scaler.dylib ??? (???) <A7AB841A-3F40-E0B8-ADDD-44014C7287C9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libType1Scaler.dylib
    0x988dd000 - 0x988eeff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <97511CC7-FE23-5AC3-2EE2-B5479FAEB316> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x988ef000 - 0x988f2ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <B624AACE-991B-0FFA-2482-E69970576CE1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
    0x988f3000 - 0x9896efff  com.apple.AppleVAFramework 4.10.12 (4.10.12) <89C4EBE2-FE27-3160-0BD1-D0C2ED5F3605> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x9896f000 - 0x98976ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <53FFD667-5E3E-4140-6A4B-0D283269DC6D> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x98977000 - 0x98982ff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <CB2510BD-A5B3-9D90-5917-C73F6ECAC913> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
    0x989dc000 - 0x989f7ff7  libPng.dylib ??? (???) <E14178E0-B92D-94EA-DACB-04F346D7534C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
    0x98a39000 - 0x98a3dff7  libGFXShared.dylib ??? (???) <C3A805C4-C0E5-B300-430A-7E811395CB8E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x98a3e000 - 0x98a7bff7  com.apple.SystemConfiguration 1.10.5 (1.10.2) <362DF639-6E5F-9371-9B99-81C581A8EE41> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x98cb6000 - 0x98ce8fe3  libTrueTypeScaler.dylib ??? (???) <6E9D1A50-330E-F1F4-F93D-9ECC8A61B21A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
    0x98e4c000 - 0x98fcefe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <35DB7644-0780-D2AB-F6A9-45F28D2D434A> /usr/lib/libicucore.A.dylib
    0x98fcf000 - 0x990d0fe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x990dc000 - 0x9912cff7  com.apple.framework.familycontrols 2.0.1 (2010) <9F2045F3-DAC5-D976-F47E-27C58F80585D> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x9913c000 - 0x9914cff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x991c9000 - 0x992a6ff7  com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x996a2000 - 0x996a4ff7  com.apple.QuickTimeH264.component 7.6.6 (1756) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x996a5000 - 0x996f6ff7  com.apple.HIServices 1.8.1 (???) <51BDD848-32A5-2425-BE07-BD037A89630A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x996f7000 - 0x9978ffe7  edu.mit.Kerberos 6.5.10 (6.5.10) <8B83AFF3-C074-E47C-4BD0-4546EED0D1BC> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x99790000 - 0x9990bfe7  com.apple.CoreFoundation 6.6.4 (550.42) <C78D5079-663E-9734-7AFA-6CE79A0539F1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9990c000 - 0x9991eff7  com.apple.MultitouchSupport.framework 207.10 (207.10) <E1A6F663-570B-CE54-0F8A-BBCCDECE3B42> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0xb0000000 - 0xb0006ff8  com.apple.carbonframeworktemplate 1.3 (1.3.11) /Applications/Adobe Fireworks CS4/Adobe Fireworks CS4.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
    0xba300000 - 0xba301fe7  libCyrillicConverter.dylib 49.0.0 (compatibility 1.0.0) <917C387A-1F4E-F72C-514D-862CF11A822C> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
    0xba500000 - 0xba501ff7  libGreekConverter.dylib 49.0.0 (compatibility 1.0.0) <AA1231CD-A969-83A5-E1EA-EABBF5F2F0EC> /System/Library/CoreServices/Encodings/libGreekConverter.dylib
    0xba900000 - 0xba916ff7  libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <B339B85B-1B6D-81D8-1281-7B8C8A517329> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe7  libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <EF3E3210-927F-DB9F-4CD4-4039A2AE2F84> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xbb500000 - 0xbb500ff7  libThaiConverter.dylib 49.0.0 (compatibility 1.0.0) <F867783A-58D2-3D05-2F4A-D0CD94D3F627> /System/Library/CoreServices/Encodings/libThaiConverter.dylib
    0xeab00000 - 0xeab10fe7  libConverter.dylib 169.1.0 (compatibility 1.0.0) <116CF161-A391-45BC-81B5-0954C87C8ABB> /System/Library/Printers/Libraries/libConverter.dylib
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <62291026-D016-705D-DC1E-FC2B09D47DE5> /usr/lib/libSystem.B.dylib
    Model: iMac11,3, BootROM IM112.0057.B00, 2 processors, Intel Core i3, 3.2 GHz, 8 GB, SMC 1.59f2
    Graphics: ATI Radeon HD 5670, ATI Radeon HD 5670, PCIe, 512 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 2.1.14.5
    Bluetooth: Version 2.3.8f7, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: WDC WD1001FALS-40Y6A0, 931.51 GB
    Serial ATA Device: OPTIARC DVD RW AD-5680H
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfd100000
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8502, 0xfd110000
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd120000
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfa100000
    USB Device: Microsoft® 2.4GHz Transceiver V1.0, 0x045e  (Microsoft Corporation), 0x071d, 0xfa140000
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8215, 0xfa111000
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0xfa120000

  • Can not run shell script

    Hello firends,
    I have one simple script to run orbd and one java program: I can not this script on RH linux.
    #!/sbin/sh
    case "$1" in
    'start')
    /bin/orbd -ORBInitialPort 2600 &
    sleep 5
    /bin/java NamdServer -ORBInitialPort 2600& --------This can not run.
    echo "Server is up."
    'stop')
    echo "Usage: $0 { start | stop }"
    exit 1
    esac
    exit 0
    I cound not see the process of "java NamdServer" using ps -lef after run this script. I also tried the following option with -classpath, it did not work either.
    java -classpath /disk/programs/namd_server_sparc/:. NamdServer -ORBInitialPort 2600
    java -classpath . NamdServer -ORBInitialPort 2600
    Thanks a lot.

    Hi
    When you try to execute the NamdServer do you get any output as it tries to start ? or does it fail
    silently?
    You might need to try and find out if you can run NamdServer in a verbose mode where it tells you whats its
    trying to do.
    Alternately. you can use the truss command ( man truss to find out more ) on your script.
    regards

  • Why the Oracle Coherence can not run successsfully?

    Why the Oracle Coherence can not run successsfully?
    When I run the costomized cache-server.cmd file, the following error message shows up:
    C:\coherence\examples\java> *contacts-cache-server.cmd*
    2009-10-22 10:57:10.609/0.563 Oracle Coherence 3.5.2/463 <Info> (thread=main, member=n/a): Loaded operational configur
    ion from resource "jar:file:/C:/coherence/lib/coherence.jar!/tangosol-coherence.xml"
    2009-10-22 10:57:10.624/0.578 Oracle Coherence 3.5.2/463 <Info> (thread=main, member=n/a): Loaded operational override
    from resource "jar:file:/C:/coherence/lib/coherence.jar!/tangosol-coherence-override-dev.xml"
    2009-10-22 10:57:10.624/0.578 Oracle Coherence 3.5.2/463 <D5> (thread=main, member=n/a): Optional configuration overri
    "/tangosol-coherence-override.xml" is not specified
    2009-10-22 10:57:10.624/0.578 Oracle Coherence 3.5.2/463 <D5> (thread=main, member=n/a): Optional configuration overri
    "/custom-mbeans.xml" is not specified
    Oracle Coherence Version 3.5.2/463
    Grid Edition: Development mode
    Copyright (c) 2000, 2009, Oracle and/or its affiliates. All rights reserved.
    2009-10-22 10:57:11.062/1.016 Oracle Coherence GE 3.5.2/463 <Info> (thread=main, member=n/a): Loaded cache configurati
    from "file:/C:/home/oracle/coherence/Contacts/contacts-cache-config.xml"
    2009-10-22 10:57:12.078/2.032 Oracle Coherence GE 3.5.2/463 <D5> (thread=Cluster, member=n/a): Service Cluster joined
    e cluster with senior service member n/a
    2009-10-22 10:57:15.328/5.282 Oracle Coherence GE 3.5.2/463 <Info> (thread=Cluster, member=n/a): Created a new cluster
    cluster:0xD3FB" with Member(Id=1, Timestamp=2009-10-22 10:57:11.734, Address=192.168.16.83:8088, MachineId=30803, Loca
    on=site:metsys.metex.com,machine:NECu10,process:3820, Role=CoherenceServer, Edition=Grid Edition, Mode=Development, Cp
    ount=4, SocketCount=4) UID=0xC0A81053000001247CC05C3678531F98
    2009-10-22 10:57:15.375/5.329 Oracle Coherence GE 3.5.2/463 <D5> (thread=Invocation:Management, member=1): Service Man
    ement joined the cluster with senior service member 1
    2009-10-22 10:57:15.875/5.829 Oracle Coherence GE 3.5.2/463 <D5> (thread=DistributedCache:PartitionedPofCache, member=
    : Service PartitionedPofCache joined the cluster with senior service member 1
    2009-10-22 10:57:15.890/5.844 Oracle Coherence GE 3.5.2/463 <Info> (thread=DistributedCache:PartitionedPofCache, membe
    1): Loading POF configuration from resource "file:/C:/home/oracle/coherence/Contacts/classes/contacts-pof-config.xml"
    2009-10-22 10:57:15.906/5.860 Oracle Coherence GE 3.5.2/463 <Error> (thread=DistributedCache:PartitionedPofCache, memb
    =1): Terminating DistributedCache due to unhandled exception: com.tangosol.util.WrapperException
    2009-10-22 10:57:15.906/5.860 Oracle Coherence GE 3.5.2/463 <Error> (thread=DistributedCache:PartitionedPofCache, memb
    =1):
    (Wrapped) (Wrapped: error configuring class "com.tangosol.io.pof.ConfigurablePofContext") (Wrapped: Failed to parse PO
    configuration (Config=contacts-pof-config.xml)) java.io.IOException: Exception occurred during parsing: looking for id
    , found id=3((0,0,65) Character Data Literal {\rtf1\ansi\ansicpg1252\deff0\deflang4105{\fonttbl{\f0\fmodern\fcharset0
    urier;}{\f1\fmodern\fcharset0 Courier-Bold;}{\f2\fswiss\fcharset0 Arial;}}
    {\*\generator Msftedit 5.41.21.2500;}\viewkind4\uc1\pard\f0\fs18 )
            at com.tangosol.coherence.Component._newChild(Component.CDB:47)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache.onServiceStarted(
    stributedCache.CDB:99)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.onServiceState(Grid.CDB:23)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.setServiceState(Service.CDB:8)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.setServiceState(Grid.CDB:21)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid$NotifyStartup.onReceived(Grid.CDB:
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.onMessage(Grid.CDB:9)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.onNotify(Grid.CDB:136)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache.onNotify(Distribu
    dCache.CDB:3)
            at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)
            at java.lang.Thread.run(Unknown Source)
    Caused by: (Wrapped: error configuring class "com.tangosol.io.pof.ConfigurablePofContext") (Wrapped: Failed to parse P
    configuration (Config=contacts-pof-config.xml)) java.io.IOException: Exception occurred during parsing: looking for i
    9, found id=3((0,0,65) Character Data Literal {\rtf1\ansi\ansicpg1252\deff0\deflang4105{\fonttbl{\f0\fmodern\fcharset0
    ourier;}{\f1\fmodern\fcharset0 Courier-Bold;}{\f2\fswiss\fcharset0 Arial;}}
    {\*\generator Msftedit 5.41.21.2500;}\viewkind4\uc1\pard\f0\fs18 )
            at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.ensureSerializer(Service.CDB:49)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache.instantiateFromBi
    ryConverter(DistributedCache.CDB:3)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BackingMapContext
    etClassLoader(DistributedCache.CDB:6)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BackingMapContext
    nInit(DistributedCache.CDB:2)
            at com.tangosol.coherence.Component._newChild(Component.CDB:41)
            ... 10 more
    Caused by: (Wrapped: Failed to parse POF configuration (Config=contacts-pof-config.xml)) java.io.IOException: Exceptio
    occurred during parsing: looking for id=9, found id=3((0,0,65) Character Data Literal {\rtf1\ansi\ansicpg1252\deff0\de
    ang4105{\fonttbl{\f0\fmodern\fcharset0 Courier;}{\f1\fmodern\fcharset0 Courier-Bold;}{\f2\fswiss\fcharset0 Arial;}}
    {\*\generator Msftedit 5.41.21.2500;}\viewkind4\uc1\pard\f0\fs18 )
            at com.tangosol.util.Base.ensureRuntimeException(Base.java:293)
            at com.tangosol.io.pof.ConfigurablePofContext.report(ConfigurablePofContext.java:1311)
            at com.tangosol.io.pof.ConfigurablePofContext.createPofConfig(ConfigurablePofContext.java:812)
            at com.tangosol.io.pof.ConfigurablePofContext.initialize(ConfigurablePofContext.java:762)
            at com.tangosol.io.pof.ConfigurablePofContext.setContextClassLoader(ConfigurablePofContext.java:325)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.ensureSerializer(Service.CDB:45)
            ... 14 more
    Caused by: java.io.IOException: Exception occurred during parsing: looking for id=9, found id=3((0,0,65) Character Dat
    Literal {\rtf1\ansi\ansicpg1252\deff0\deflang4105{\fonttbl{\f0\fmodern\fcharset0 Courier;}{\f1\fmodern\fcharset0 Couri
    -Bold;}{\f2\fswiss\fcharset0 Arial;}}....
    {code}
    The content of the contacts-cache-server.cmd file is shown here under:
    (its location is C:\coherence\examples\java
    {code}@echo off
    setlocal
    if (%COHERENCE_HOME%)==() (
    set COHERENCE_HOME=c:\coherence
    set CONFIG=C:\home\oracle\coherence\Contacts
    set COH_OPTS=%COH_OPTS% -server -cp %COHERENCE_HOME%\lib\coherence.jar;C:\home\oracle\coherence\Contacts\classes
    set COH_OPTS=%COH_OPTS% -Dtangosol.coherence.cacheconfig=%CONFIG%\contacts-cache-config.xml
    java %COH_OPTS% -Xms1g -Xmx1g -Xloggc: com.tangosol.net.DefaultCacheServer %2 %3 %4 %5 %6 %7
    :exit{code}
    The contents of the contacts-cache-config.xml file is shown here under:
    (its location is C:\home\oracle\coherence\Contacts
    {code}<?xml version="1.0"?>
    <!DOCTYPE cache-config SYSTEM "cache-config.dtd">
    <cache-config>
      <caching-scheme-mapping>
        <cache-mapping>
            <cache-name>*</cache-name>
            <scheme-name>ExamplesPartitionedPofScheme</scheme-name>
          </cache-mapping>
        </caching-scheme-mapping>
      <caching-schemes>
        <distributed-scheme>
          <scheme-name>ExamplesPartitionedPofScheme</scheme-name>
          <service-name>PartitionedPofCache</service-name>
          <serializer>
            <class-name>com.tangosol.io.pof.ConfigurablePofContext</class-name>
              <init-params>
                <init-param>
                  <param-type>String</param-type>
                  <param-value>contacts-pof-config.xml</param-value>
                </init-param>
              </init-params>
           </serializer>
         <backing-map-scheme>
           <local-scheme>
             <!-- each node will be limited to 250MB -->
                 <high-units>250M</high-units>
                 <unit-calculator>binary</unit-calculator>
              </local-scheme>
           </backing-map-scheme>
           <autostart>true</autostart>
        </distributed-scheme>
      </caching-schemes>
    </cache-config>{code}
    The contents of the contacts-pof-config.xml file is shown here under:
    {code}
    <?xml version="1.0"?>
    <!DOCTYPE pof-config SYSTEM "pof-config.dtd">
    <pof-config>
      <user-type-list>
        <!-- coherence POF user types -->
        <include>coherence-pof-config.xml</include>
        <!-- com.tangosol.examples package -->
        <user-type>
          <type-id>1002</type-id>
          <class-name>com.tangosol.examples.model.Contact</class-name>
        </user-type>
        <user-type>
          <type-id>1003</type-id>
          <class-name>com.tangosol.examples.model.Address</class-name>
        </user-type>
        <user-type>
            <type-id>1004</type-id>
          <class-name>com.tangosol.examples.model.Phone</class-name>
        </user-type>
      </user-type-list>
      <allow-interfaces>true</allow-interfaces>
      <allow-subclasses>true</allow-subclasses>
    </pof-config>  {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    I have saved it as a XML documetent. it this OK?
    What the following error message shows us?
    Caused by: (Wrapped: error configuring class "com.tangosol.io.pof.ConfigurablePofContext") java.lang.UnsupportedClassVer
    sionError: Bad version number in .class file
            at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.ensureSerializer(Service.CDB:49)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache.instantiateFromBina
    ryConverter(DistributedCache.CDB:3)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BackingMapContext.s
    etClassLoader(DistributedCache.CDB:6)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BackingMapContext.o
    nInit(DistributedCache.CDB:2)
            at com.tangosol.coherence.Component._newChild(Component.CDB:41)
            ... 10 more
    Caused by: java.lang.UnsupportedClassVersionError: Bad version number in .class file
            at java.lang.ClassLoader.defineClass1(Native Method)
            at java.lang.ClassLoader.defineClass(Unknown Source)
            at java.security.SecureClassLoader.defineClass(Unknown Source)
            at java.net.URLClassLoader.defineClass(Unknown Source)
            at java.net.URLClassLoader.access$100(Unknown Source)
            at java.net.URLClassLoader$1.run(Unknown Source)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.net.URLClassLoader.findClass(Unknown Source)
            at java.lang.ClassLoader.loadClass(Unknown Source)
            at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
            at java.lang.ClassLoader.loadClass(Unknown Source)
            at java.lang.ClassLoader.loadClassInternal(Unknown Source)
            at java.lang.Class.forName0(Native Method)
            at java.lang.Class.forName(Unknown Source)
            at com.tangosol.util.ExternalizableHelper.loadClass(ExternalizableHelper.java:2969)
            at com.tangosol.io.pof.ConfigurablePofContext.loadClass(ConfigurablePofContext.java:1215)
            at com.tangosol.io.pof.ConfigurablePofContext.createPofConfig(ConfigurablePofContext.java:973)
            at com.tangosol.io.pof.ConfigurablePofContext.initialize(ConfigurablePofContext.java:762)
            at com.tangosol.io.pof.ConfigurablePofContext.setContextClassLoader(ConfigurablePofContext.java:325)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.ensureSerializer(Service.CDB:45)
            ... 14 more
    2009-10-22 17:24:14.995/2.922 Oracle Coherence GE 3.5.2/463 <D4> (thread=ShutdownHook, member=2): ShutdownHook: stopping
    cluster nodeEdited by: junez on 22-Oct-2009 14:30

  • HT1349 I can not run the scanner in my main user, but only the second user and the same thing with updating apps! Why is this happening???

    I can not run the scanner in my main user, but only the second user and the same thing with updating apps! Why is this happening???

    Welcome to the Apple Community.
    Enter the details of her second account at system preferences> mail, contacts & calendars.

  • Hi, I got the problem with Firefox 27.0.1. I can not run Selenium on Firefox after login a website for automation testing. The browser is not responding.

    Hi, I got the problem with Firefox 27.0.1. I can not run Selenium on Firefox after login a website for automation testing. The browser is not responding. However when I close Nunit, the page is back to be normal. The title is returned to the name of website without "not responding". I sure this problem did not happen on Firefox version 26. I just got this problem when firefox upgrading automatically to version 27. Please help me fix this problem because it is very important for my work. If you need more information pls send your concerns via my email address.
    Thanks so much

    Hi, the work around suggested above should put you in working mode in the meantime. However to help investigate the issue it is possible to analyze what is not loading or taking a long time by analyzing the network traffic or http headers of the Nunit web page.
    *[https://addons.mozilla.org/en-us/firefox/addon/live-http-headers/]
    *Web developer Tools > Web console
    If you post the results with out the user data, we are happy to help.

  • I have a mac osx version 10.6.8 no windows and i am trying to install a program but keep getting can not run in dos mode  ( the disk says on back works on intel mac with parallels or vm fusion) is this program not compatible with my mac?

    i have a mac osx version 10.6.8 no windows installed and i am trying to install a program but keep getting can not run in dos mode  ( the disk says on back works on intel mac with parallels or vm fusion) is this program not compatible with my mac?

    You run Windows in Parallels or Fusion. Then in Windows you install the program.

  • After closing the Firefox browser, a message appears "Severe error: Cannot load resource file; can not run". What could be wrong?

    The message: "Severe Error; Can 't load resourse file; can not run" appears after closing Firefox4. All other applications on my pc do not have this problem.

    I've found text of this error in npdjvu.dll plugin, remove it and error seems to disappear.

Maybe you are looking for