Error processing request in sax parser: Error when executing statement...

Hello,
I want to INSERT data from R/3 System to AS400 via JDBC adapter into a DB2 database. The interfaces from R/3 are Ok. but i have some problems to use the JDBC in DB2 Systems. The message in comunitation channel is:
" Error processing request in sax parser: Error when executing statement for table/stored proc. 'SPE106TST' (structure 'STATEMENT'): java.sql.SQLException: SPE106TST de SADMT1 no válido para la operación."
in the SXMB_MONI -> Request Message Mapping payloads this:
The connection to the database is fine, Sender adapter with a SELECT * works perfect.
Please Can anyone help me solve this problem? I'm lost.
Best regards,
Edited by: Nicola Occhipinti on May 22, 2008 7:40 PM

Hi Nicola,
This error occurs when the receiver side structure is incorrect.
Your structure seems to be correct.
Please use lower case for action, access and table.
Please check whether the field names are exactly the same as in the actual Database table sadmt1.SPE106TST.
Check if the table has permissions to write.
You can try an alternate structure without using table tag.
<ns0:MT_XMLSQL_SPEC xmlns:ns0="urn:damm.com/pi/EmployeeMasterData">
<STATEMENT>
<sadmt1.SPE106TST action="INSERT">
<access>
<CODEMP>D</CODEMP>
<CODPRO>00202339</CODPRO>
<NOMPRO>ROSIQUE PERALSGENIS</NOMPRO>
<DIRPRO>GIRONA</DIRPRO>
<POBPRO>S. VICENS HORTS</POBPRO>
<RUTA>0</RUTA>
<ORDEN>0</ORDEN>
<NOMINA>S</NOMINA>
</access>
</sadmt1.SPE106TST>
</STATEMENT>
</ns0:MT_XMLSQL_SPEC>
Hope your problem gets solved.
-Shamly

Similar Messages

  • Error processing request in sax parser

    Hi all,
    I am doing an asynchronous interface.
    It is an interface from IDOC to JDBC. While testing the interface,am getting the following error
    "Error processing request in sax parser: Error when executing statement for table/stored proc. 'put_delivery' (structure 'Statement_Delivery'): java.lang.NumberFormatException: null"
    Any kind of help is appreciated.
    Regards,
    Thireesha.

    Hello,
    Please refer to SAP NOTE 801367.
    In advanced tab, use logSQLQuery-->true. Tt will display the actual sql statement in audit log instead of xml format.
    You can copy this sql statement and execute directly in database to check the problem.
    -Rahul

  • Error processing request in sax parser...Excepciu00F3n de E/S: Connection reset

    Hello,
    I've RFC to JDBC interface.
    Sometimes in the RWB me the following error message,
    <SAP:AdditionalText>com.sap.aii.af.ra.ms.api.DeliveryException: Error processing request in sax parser: Error when executing statement for table/stored proc. 'LISMATWQ' (structure 'STATEMENT'): java.sql.SQLException: Excepción de E/S: Connection reset</SAP:AdditionalText>
    <SAP:ApplicationFaultMessage namespace="" />
    How can I prevent?
    Thanks very much,

    Hello,
    the error does not always appear, sometimes the interface works well and others do not (even when the data are the same) I find no solution to this error,
    anyone have any idea?
    thanks very much

  • Error processing request in sax parser  No 'action' attribute found in XML

    Hi All,
            I am doing a FILE to JDBC Scenario.  I just want to send a data from file to Sql Db table. For this I have written a stored procedure to insert the row in a table.
    This is the message mapping for FILE to JDBC ….
    Sender                                                                   Receiver
    *FILESENDER_MT  1..1    FILESENDER_DT     * SPRECEIVER_MT    1..1
        .NO                    1..1    xsd:string                    * Statement           1..1   string
        .Name                1..1    xsd:string                      *user_PROC       1..1                                                                               
    action            1..1required
                                                                                *No                                                                               
    isInput        1..1  string
                                                                                    type           1..1  string
                                                                                *Name
                                                                                    isInput        1..1  string
                                                                                    type           1..1  string 
    Mapped Values....
    Statement is mapped with <b>FILESENDER_MT</b>
    action attribute is mapped with "<b>EXECUTE</b>" Constant
    No is mapped with <b>NO</b>
    Name is mapped with <b>Name</b>
    for both isInput is mapped with <b>TRUE</b>
    for both type is mapped with <b>CHAR</b>
    Here is the my stored procedure.....
    CREATE PROCEDURE [dbo].[user_PROC]
    @NO char(10),  @Name char(10)  AS
    insert into FILE2JDBC values('a','ab')
    GO
    when i run this stored procedure in Sql directly it was executed successfully....
    I have checked In SXMB_MONI status is showing green...
    xml messages from SXMB_MONI ....
    this is the message from payloads of Inbound Message
    <PRE> <?xml version="1.0" encoding="UTF-8" ?>
    - <ns0:FILESENDER_MT xmlns:ns0="http://www.prospectadelhi.com/DELHI_FILE2JDBC">
      <NO>111</NO>
      <NAME>murthy</NAME>
      </ns0:FILESENDER_MT></PRE>
    this is the message from payloads of Request Message Mapping
    <?xml version="1.0" encoding="UTF-8" ?>
    - <ns0:SPRECEIVER_MT xmlns:ns0="http://www.prospectadelhi.com/DELHI_FILE2JDBC">
    - <Statement>
    - <user_PROC>
      <action>EXECUTE</action>
    - <NO>
      <isInput>TRUE</isInput>
      <type>CHAR</type>
      </NO>
    - <Name>
      <isInput>TRUE</isInput>
      <type>CHAR</type>
      </Name>
      </user_PROC>
      </Statement>
      </ns0:SPRECEIVER_MT>
    this is the error showing in runtime workbench>component monitoring->communication channel monitoring-->Receiver Communication Channel....
    <b>Error while parsing or executing XML-SQL document: Error processing request in sax parser: No 'action' attribute found in XML document (attribute "action" missing or wrong XML structure)</b>
    Can any body tell me whether the problem is in Mapping or in Data Type Structure..
    Please resolve this issue....
    Thanks in Advance,
    Murthy.

    <?xml version="1.0" encoding="UTF-8" ?>
    - <ns0:SPRECEIVER_MT xmlns:ns0="http://www.prospectadelhi.com/DELHI_FILE2JDBC">
    - <Statement>
    <b>- <user_PROC>
    <action>EXECUTE</action></b>
    - <NO>
    <isInput>TRUE</isInput>
    <type>CHAR</type>
    </NO>
    - <Name>
    <isInput>TRUE</isInput>
    <type>CHAR</type>
    </Name>
    </user_PROC>
    </Statement>
    </ns0:SPRECEIVER_MT>
    The Action should be a Attribute of Element user_Proc as,
    <?xml version="1.0" encoding="UTF-8" ?>
    - <ns0:SPRECEIVER_MT xmlns:ns0="http://www.prospectadelhi.com/DELHI_FILE2JDBC">
    - <Statement>
    <b>- <user_PROC action="Execute"></b>- <NO>
    <isInput>TRUE</isInput>
    <type>CHAR</type>
    </NO>
    - <Name>
    <isInput>TRUE</isInput>
    <type>CHAR</type>
    </Name>
    </user_PROC>
    </Statement>
    </ns0:SPRECEIVER_MT>
    Likewise isInput and Type should be Attributes and not Elements .
    Regards
    Bhavesh

  • JDBC receiver adapter - Error processing request in sax parser

    Hello,
    I want to INSERT idoc data via JDBC adapter into a MS SQL database. After digging through SAP Help, numerous blogs and forum discussions on SDN and even posting an OSS message I still get the same error:
    'Error: TransformException error in xml processor class: Error processing request in sax parser: No 'action' attribute found in XML document (attribute "action" missing or wrong XML structure)'
    When testing my mapping in the Integration Repository the resulting XML message is:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:Employee xmlns:ns0="http://prodrive.nl/xi/HRMasterdata/HRMD_A_2_d_bcommerp">
       <STATEMENT>
          <T_PD_Employees action="INSERT">
             <access>
                <KeyTag>00088888</KeyTag>
                <PerNo>00088888</PerNo>
             </access>
          </T_PD_Employees>
       </STATEMENT>
    </ns0:Employee>
    The connection to the database is fine, Sender adapter with a SELECT * works perfect.
    Can anyone help me solve this problem? I'm lost.
    Best regards,
    Roelof Jan Bouwknegt

    Hi Bhavesh,
    I have tried out the change you suggested. Without success. Message I get back is
    - 2006-12-28 10:34:08 CET: Error: TransformException error in xml processor class: Error processing request in sax parser: No 'action' attribute found in XML document (attribute "action" missing or wrong XML structure)
    structure in testtool:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:Employee xmlns:ns0="http://prodrive.nl/xi/HRMasterdata/HRMD_A_2_d_bcommerp">
       <STATEMENT>
          <T_PD_Employees action="INSERT">
             <ACCESS>
                <KEYTAG>00088888</KEYTAG>
                <PERNO>00088888</PERNO>
             </ACCESS>
          </T_PD_Employees>
       </STATEMENT>
    </ns0:Employee>
    Somehow the SAX  parser doesn't like the result of my mapping. Maybe there is something wrong with the structure cardinality. Let me describe what I have built:
    XSD:
    WA_T_PD_Employees - Complex Type
    > STATEMENT - Element - Occurence = 1
    >> T_PD_Employees - Element - Occurence = 1
    >>> STATEMENT - Attribute - Occurence = optional
    >>> access - Element - Occurence = 1..Unbounded
    Best regards Roelof Jan and thanks for your quick response

  • Error when executing statement for table/stored proc

    Hi All,
          I am getting this error when executing IDOC to JDBC (Stored Procedure) Scenario.
         In my stored procedure I have three insert statements to insert rows in to 3 tables.
        This stored procedure is working fine for two insert statements i.e, 
             For this I have created data type for stored procedure with 10 elements and executed the scenario and was successfully running.
        when I added 3rd insert statement to stored procedure ie., when i added 5 more elements to the datatype (totally 15 elements) it starts giving the bellow error in Message Monitoring.
    <i><b>Exception caught by adapter framework: Error processing request in sax parser: Error when executing statement for table/stored proc. 'COGRP_TMP_PROC_1' (structure 'Statements'): java.sql.SQLException: General error</b></i>
    <i><b>Delivery of the message to the application using connection JDBC_http://sap.com/xi/XI/System failed, due to: com.sap.aii.af.ra.ms.api.RecoverableException: Error processing request in sax parser: Error when executing statement for table/stored proc. 'COGRP_TMP_PROC_1' (structure 'Statements'): java.sql.SQLException: General error</b></i>
       Note:- I have run the stored procedure  with three insert statements in Sql Server, and also by calling an external program also, and was working fine.
    <i><b> Note : Is there any structure needs to be follow when working with IDOC to Stored procedure.</b></i>
    I am struck up with the error, can any body resolve this issue.
    Thanks in Advance,
    Murthy

    Hi narasimha,
                      This seems to be any error due to incorrect query formation.In your receiver jdbc channel set the parameter logSQLstatement = true.you can find this parameter in the advanced mode. Using this parameter you will be able to see the sql query which is generated at runtime in the audit log in RWB.
    Regards,
    Pragati

  • File to JDBC :Error when executing statement for table/stored proc.

    Hi,
    I am getting following error when i am trying to insert data into z-table using JDBC recr adapter.
    Error while parsing or executing XML-SQL document: Error processing request in sax parser: Error when executing statement for table/stored proc. 'ZTEST' (structure 'STATEMENT'): java.sql.SQLException: <u>[Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Invalid object name '<b>ZTEST</b>'.</u>
    But the database table name 'ZTEST' exists in the system.
    XML structure:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:MT_RECR xmlns:ns0="http://urn:srini/FileToJDBC">
       <STATEMENT>
          <TEST action="INSERT">
             <table>ZTEST</table>
             <access>
                <ROLLNO>123</ROLLNO>
                <FIRSTNAME>ABC</FIRSTNAME>
                <LASTNAME>XYZ</LASTNAME>
             </access>
          </TEST>
       </STATEMENT>
    </ns0:MT_RECR>
    Regards,
    Srinivas

    Hi,
    I have changed my MT str but still getting the same error.Is it possible to insert/ update a z-table using JDBC adapter.
    XML str:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:MT_RECR xmlns:ns0="http://urn:srini/FileToJDBC">
       <STATEMENT>
          <ZTEST action="INSERT">
             <access>
                <ROLLNO>123</ROLLNO>
                <FIRSTNAME>abc</FIRSTNAME>
                <LASTNAME>XYZ</LASTNAME>
             </access>
          </ZTEST>
       </STATEMENT>
    </ns0:MT_RECR>
    Regards,
    Srinivas

  • Error when executing statement for table/stored proc  DB2 - Data Truncation

    Hi,
      I have one call sp in XI with n parameters int and two parameters out.
       well, to implement the interface gives the following error
    com.sap.aii.af.ra.ms.api.DeliveryException: Error processing request in sax parser: Error when executing statement for table/stored proc. 'SPSAPAR9' (structure 'Statement'): java.sql.SQLException: The number of parameter values set or registered does not match the number of parameters
    Thanks for your help
    Ximena
    Edited by: Ximena Gonzalez on Feb 19, 2008 11:50 AM
    Edited by: Ximena Gonzalez on Feb 20, 2008 12:17 PM

    My Error is change
    Error while parsing or executing XML-SQL document: Error processing request in sax parser: Error when executing statement for table/stored proc. 'SAPPRG.SPSAPAR9' (structure 'Statement'): java.sql.DataTruncation: Data truncation
    but de change DT SP
    <?xml version="1.0" encoding="UTF-8" ?>
    <ns1:AlistReqDet2_MT xmlns:ns1="urn:proxl:tmuc:proxl01:AlistReqItems">
    <Statement>
    <SPSAPAR9 action="EXECUTE">
      <table>SAPPRG.SPSAPAR9</table>
      <ISAPNU1 isInput="TRUE" type="STRING">0080000353</ISAPNU1>
      <ISAPEM1 isInput="TRUE" type="STRING">'LU'</ISAPEM1>
      <ISAPC05 isInput="TRUE" type="STRING">15353</ISAPC05>
      <ISAPSEC isInput="TRUE" type="STRING">10</ISAPSEC>
      <ISAPLOT isInput="TRUE" type="STRING">'lats'</ISAPLOT>
      <ISAPCA1 isInput="TRUE" type="STRING">10</ISAPCA1>
      <ISAPCA2 isInput="TRUE" type="STRING">10</ISAPCA2>
      <ISAPKIL isInput="TRUE" type="STRING">10</ISAPKIL>
      <ISAPES1 isInput="TRUE" type="STRING">'T'</ISAPES1>
      <ISAPSW isOutput="TRUE" type="STRING" />
      </SPSAPAR9>
      </Statement>
      </ns1:AlistReqDet2_MT>

  • Error when executing statement for table/stored proc.  : ORA-00911

    Hi All,
    I am posting IDOC->XI->JDBC, approx 5000 Idocs.
    But few messages are giving following error in XI-_SXMB_MONI
    Can any one guide me what is the cause of error? I check whole Idoc data I am not able to see bad character? can any once guide me what are the bad character in XML to post data in oracle? so that i can search in XML and how to avoide this error.
    "com.sap.aii.af.ra.ms.api.MessagingException: Error processing request in sax parser: Error when executing statement for table/stored proc. 'HRP1001' (structure 'INSERT_PAD34'): java.sql.SQLException: ORA-00911: invalid character"

    > I am talking about following IDOC.<ZRMD_A06> ->
    > <E1PLOGI SEGMENT="1">-> <E1PITYP SEGMENT="1"> ->
    > <E1PAD34 SEGMENT="1"> -><PROZT>0.00 #</PROZT>.
    > Can we remove this # during message mapping in XI??
    sure you can remove it using Replace function or by writing UDF.
    as I am seing # is last character..<b>so remove # with " " (single space) and then use the TRIM fucntion.</b>
    Thanks
    Farooq.
    *<b>Rewards points if you find it useful*</b>

  • Error processing request  ORACLE-01403:no data found

    We surmounted the blank page issue by applying the patch to APEX 4.2.2.
    Now we patched/upgraded to APEX 4.2.3, and no longer have the blank page issue, but have this one that seems similar:
    I am trying here, since I am not getting any debug messages - the POST goes in and immediately comes back with the no data found error.
    APEX 4.2.3
    APEX Listener 2.0.2
    Glassfish 4.0
    Apps install OK, and can display the Login page (Show), but when trying to Login (Accept),
    immediately get this error:
    Error Error processing request
              ORA-010403: no data found
    Debug messages only shows Show entries - nothing , not even the Accept first line.
    Firebug shows similar - upon Post (which looks OK) the immediate response is the error page and message.
    I do not have access to the APEX Listener logs tonight,  but expect to get to them, or have someone check them
    out, tomorrow AM.
    Any thoughts or suggestions?
    This happens across all apps (15) except for one.  Am still trying to discern the different in that app vs the others.
    Thank you -

    An update:
    I have verified that some apps work, and some apps show the
    Error Error processing request
            ORA-01403: no data found
    error.
    Happens across different workspaces.
    Have confirmed that for an app that has the error,
       I get the error using the APEX Listener deployment. 
       I do NOT get the error using the HTTP server deployment.
    This is the same in a Linux environment and in a Windows environment.
    For one app, I have an earlier version that gives the error, a later version (new app #) that does not give the error.
    APEX 4.2.3
    APEX Listener 2.0.3.221.10/3
    Glassfish 4.0
    Again even at  Debug Level 9, I get no debug entries for the POST
    For an app that gives the error, the APEX Listener log entries are (from the POST):
    ==== Processing Request: ====
    Attempting to process with PL/SQL Gateway
    user-agent: Mozilla/5.0 (Windows NT 5.1; rv:23.0) Gecko/20100101 Firefox/23.0
    host: qdcls1534:8082
    Applied database connection info
    POST /apex/apexd2/wwv_flow.accept
    ==== Headers in Request ====
    ==== Cookies in Request ====
    content-length: 412
    content-type: application/x-www-form-urlencoded;charset=UTF-8
    request parameter: p_flow_id=440
    request parameter: p_flow_id=440
    request parameter: p_flow_step_id=101
    request parameter: p_instance=1712832201985
    request parameter: p_instance=1712832201985
    request parameter: p_page_submission_id=8493461183923
    request parameter: p_page_submission_id=35145982114211
    request parameter: p_request=LOGIN
    request parameter: p_request=
    request parameter: p_debug=LEVEL9
    request parameter: p_debug=LEVEL9
    request parameter: p_arg_names=13616030313099104709
    request parameter: p_arg_names=13616030522289104711
    request parameter: p_t01=karen.x.cannell
    request parameter: p_t02=sssssssss
    request parameter: p_md5_checksum=
    request parameter: p_page_checksum=C2302553B43577579FF77585749CA016
    Using Procedure:wwv_flow.accept
    request parameter: p_flow_step_id=101
    Requesting Pool:apexd2
    pool exists: apexd2
    isValidRequest(), procedure name: <wwv_flow.accept>
    Validating: wwv_flow.accept
    *** Total number of arguments: 510
    SID: 214
    *** Total number of arguments: 510
    begin
    wwv_flow.accept(p_flow_step_id=>?,
    p_md5_checksum=>?,
    p_arg_names=>?,
    p_page_checksum=>?,
    p_t02=>?,
    p_t01=>?,
    p_debug=>?,
    p_request=>?,
    p_page_submission_id=>?,
    p_flow_id=>?,
    p_instance=>?);
    commit;
      end;"
    Parse: 0 ms
    p_flow_step_id= null
    p_flow_step_id=[101, 101]
    {p_md5_checksum=, p_page_submission_id=[8493461183923, 35145982114211], p_debug=[LEVEL9, LEVEL9], p_page_checksum=C2302553B43577579FF77585749CA016, p_request=[LOGIN, ], p_t02=sssssssss, p_t01=karen.x.cannell, p_flow_id=[440, 440], p_instance=[1712832201985, 1712832201985], p_flow_step_id=[101, 101], p_arg_names=[13616030313099104709, 13616030522289104711]}
    p_request=[LOGIN, ]
    p_md5_checksum=
    {p_md5_checksum=, p_page_submission_id=[8493461183923, 35145982114211], p_debug=[LEVEL9, LEVEL9], p_page_checksum=C2302553B43577579FF77585749CA016, p_request=[LOGIN, ], p_t02=sssssssss, p_t01=karen.x.cannell, p_flow_id=[440, 440], p_instance=[1712832201985, 1712832201985], p_flow_step_id=[101, 101], p_arg_names=[13616030313099104709, 13616030522289104711]}
    p_arg_names=[13616030313099104709, 13616030522289104711]
    p_arg_names: {13616030313099104709, 13616030522289104711}
    {p_md5_checksum=, p_page_submission_id=[8493461183923, 35145982114211], p_debug=[LEVEL9, LEVEL9], p_page_checksum=C2302553B43577579FF77585749CA016, p_request=[LOGIN, ], p_t02=sssssssss, p_t01=karen.x.cannell, p_flow_id=[440, 440], p_instance=[1712832201985, 1712832201985], p_flow_step_id=[101, 101], p_arg_names=[13616030313099104709, 13616030522289104711]}
    {p_md5_checksum=, p_page_submission_id=[8493461183923, 35145982114211], p_debug=[LEVEL9, LEVEL9], p_page_checksum=C2302553B43577579FF77585749CA016, p_request=[LOGIN, ], p_t02=sssssssss, p_t01=karen.x.cannell, p_flow_id=[440, 440], p_instance=[1712832201985, 1712832201985], p_flow_step_id=[101, 101], p_arg_names=[13616030313099104709, 13616030522289104711]}
    p_instance= null
    p_instance=[1712832201985, 1712832201985]
    {p_md5_checksum=, p_page_submission_id=[8493461183923, 35145982114211], p_debug=[LEVEL9, LEVEL9], p_page_checksum=C2302553B43577579FF77585749CA016, p_request=[LOGIN, ], p_t02=sssssssss, p_t01=karen.x.cannell, p_flow_id=[440, 440], p_instance=[1712832201985, 1712832201985], p_flow_step_id=[101, 101], p_arg_names=[13616030313099104709, 13616030522289104711]}
    p_flow_id= null
    p_flow_id=[440, 440]
    {p_md5_checksum=, p_page_submission_id=[8493461183923, 35145982114211], p_debug=[LEVEL9, LEVEL9], p_page_checksum=C2302553B43577579FF77585749CA016, p_request=[LOGIN, ], p_t02=sssssssss, p_t01=karen.x.cannell, p_flow_id=[440, 440], p_instance=[1712832201985, 1712832201985], p_flow_step_id=[101, 101], p_arg_names=[13616030313099104709, 13616030522289104711]}
    p_page_submission_id= null
    p_page_submission_id=[8493461183923, 35145982114211]
    {p_md5_checksum=, p_page_submission_id=[8493461183923, 35145982114211], p_debug=[LEVEL9, LEVEL9], p_page_checksum=C2302553B43577579FF77585749CA016, p_request=[LOGIN, ], p_t02=sssssssss, p_t01=karen.x.cannell, p_flow_id=[440, 440], p_instance=[1712832201985, 1712832201985], p_flow_step_id=[101, 101], p_arg_names=[13616030313099104709, 13616030522289104711]}
    p_request= null
    p_md5_checksum=
    {p_md5_checksum=, p_page_submission_id=[8493461183923, 35145982114211], p_debug=[LEVEL9, LEVEL9], p_page_checksum=C2302553B43577579FF77585749CA016, p_request=[LOGIN, ], p_t02=sssssssss, p_t01=karen.x.cannell, p_flow_id=[440, 440], p_instance=[1712832201985, 1712832201985], p_flow_step_id=[101, 101], p_arg_names=[13616030313099104709, 13616030522289104711]}
    p_debug= null
    p_debug=[LEVEL9, LEVEL9]
    {p_md5_checksum=, p_page_submission_id=[8493461183923, 35145982114211], p_debug=[LEVEL9, LEVEL9], p_page_checksum=C2302553B43577579FF77585749CA016, p_request=[LOGIN, ], p_t02=sssssssss, p_t01=karen.x.cannell, p_flow_id=[440, 440], p_instance=[1712832201985, 1712832201985], p_flow_step_id=[101, 101], p_arg_names=[13616030313099104709, 13616030522289104711]}
    p_t01= karen.x.cannell
    p_t01=karen.x.cannell
    {p_md5_checksum=, p_page_submission_id=[8493461183923, 35145982114211], p_debug=[LEVEL9, LEVEL9], p_page_checksum=C2302553B43577579FF77585749CA016, p_request=[LOGIN, ], p_t02=sssssssss, p_t01=karen.x.cannell, p_flow_id=[440, 440], p_instance=[1712832201985, 1712832201985], p_flow_step_id=[101, 101], p_arg_names=[13616030313099104709, 13616030522289104711]}
    p_t02= sssssssss
    p_t02=sssssssss
    {p_md5_checksum=, p_page_submission_id=[8493461183923, 35145982114211], p_debug=[LEVEL9, LEVEL9], p_page_checksum=C2302553B43577579FF77585749CA016, p_request=[LOGIN, ], p_t02=sssssssss, p_t01=karen.x.cannell, p_flow_id=[440, 440], p_instance=[1712832201985, 1712832201985], p_flow_step_id=[101, 101], p_arg_names=[13616030313099104709, 13616030522289104711]}
    p_page_checksum= C2302553B43577579FF77585749CA016
    p_page_checksum=C2302553B43577579FF77585749CA016
    Exec: 37 ms
    ==== Headers from Results ====
    Setting Content-Type (Content-type): text/html; charset=UTF-8
    Got results length: 307
    Processed PL/SQL Gateway request
    ==== Request Processed ====
    It just stops ...
    Any ideas?
    I have tried all of the Compatibility settings, no difference.
    If it is something I can change in the app, that would be great.
    The app that does not work was imported from an APEX 4.1 instance.
    The app that does work was imported from an APEX 4..3 instance (Windows, APEX 4.2.3, APEX Listener 2.0.3, recently upgraded from APEX 4.2.2 and APEX Listener 2.0.2).
    Any help or suggestions will be greatly appreciated,
    Karen

  • Email receiver qpac-SAX Parsing Error

    Hi,
    Iam working on a project which needs to receive email from an
    external person and the workflow will continue from that point.
    >>I have put a email receiver qpac to accomplish the
    above task. I use the sender's(from) email address as a
    filter for incoming mails and the starting 4 letters of the form
    name to fetch the XDP attachment. The process works just fine
    when tested by sending a mail from Outlook express. But, in
    the case of Lotus Notes, the click of email submit button in
    the form opens up a new mail with the XDP Data file as
    attachment and names it weirdly with some numbers unlike
    outlook express client where in the attachment gets named as
    the form name "_data.xdp".
    Thus, my email receiver does not pick
    this email and the process gets stalled giving some SAX
    parser error. Is there any way to customise form/ lotus notes
    clients to make it work?
    Regards,
    Raghava Kumar VSS

    Hi Raghava
    Just drop the 4 starting letters, and look for the first attachment.
    There should only ever be 1 attachment, so you shouldn't have a problem.
    Howard
    http://www.avoka.com

  • Unable to bind 10.8.2 to AD domain. Daemon encountered an error processing request

    When attempting to join a new MacBook Air to the AD domain, I get the error "The daemon encountered an error processing request."
    When this error comes up, I have to force quit out of the Directory Utility to get back into it. See below for error.
    Note: When bringing up the Directory Utility to attempt to bind it to the domain, the "Computer ID' that auto-populates the field is a "subn-xx-xxx:" number. Not sure where this comes from as it isn't a naming scheme we use.
    Errors shown below
    Process:         opendirectoryd [891]
    Path:            /usr/libexec/opendirectoryd
    Identifier:      opendirectoryd
    Version:         197.14.6
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [1]
    User ID:         0
    Date/Time:       2012-09-27 17:21:13.482 -0600
    OS Version:      Mac OS X 10.8.2 (12C54)
    Report Version:  10
    Crashed Thread:  7  Dispatch queue: com.apple.opendirectoryd.pidinfo.893.requests
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    VM Regions Near 0:
    -->
        __TEXT                 0000000102919000-000000010297b000 [  392K] r-x/rwx SM=COW  /usr/libexec/opendirectoryd
    Thread 0:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib        0x00007fff8f6d7d16 kevent + 10
    1   libdispatch.dylib             0x00007fff8ccc1dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib             0x00007fff8ccc19ee _dispatch_mgr_thread + 54
    Thread 1:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib        0x00007fff8f6d7566 __sigsuspend_nocancel + 10
    1   libdispatch.dylib             0x00007fff8ccbeda1 _dispatch_sigsuspend + 28
    2   libdispatch.dylib             0x00007fff8ccbed85 _dispatch_sig_thread + 45
    Thread 2:: Dispatch queue: com.apple.opendirectoryd.module.SystemCache.kauth_workq
    0   libsystem_kernel.dylib        0x00007fff8f6d75de __syscall + 10
    1   com.apple.opendirectoryd.module.SystemCache0x00000001032a31e3 ___kernel_kauth_listener_block_invoke_090 + 477
    2   libdispatch.dylib             0x00007fff8ccc2f01 _dispatch_call_block_and_release + 15
    3   libdispatch.dylib             0x00007fff8ccbf0b6 _dispatch_client_callout + 8
    4   libdispatch.dylib             0x00007fff8ccc4317 _dispatch_async_f_redirect_invoke + 117
    5   libdispatch.dylib             0x00007fff8ccbf0b6 _dispatch_client_callout + 8
    6   libdispatch.dylib             0x00007fff8ccc01fa _dispatch_worker_thread2 + 304
    7   libsystem_c.dylib             0x00007fff9017fcab _pthread_wqthread + 404
    8   libsystem_c.dylib             0x00007fff9016a171 start_wqthread + 13
    Thread 3:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib        0x00007fff8f6d7386 __semwait_signal + 10
    1   libsystem_c.dylib             0x00007fff90207800 nanosleep + 163
    2   libsystem_c.dylib             0x00007fff9020768a sleep + 61
    3   opendirectoryd                0x0000000102933e5e 0x102919000 + 110174
    4   libdispatch.dylib             0x00007fff8ccc2f01 _dispatch_call_block_and_release + 15
    5   libdispatch.dylib             0x00007fff8ccbf0b6 _dispatch_client_callout + 8
    6   libdispatch.dylib             0x00007fff8ccc01fa _dispatch_worker_thread2 + 304
    7   libsystem_c.dylib             0x00007fff9017fcab _pthread_wqthread + 404
    8   libsystem_c.dylib             0x00007fff9016a171 start_wqthread + 13
    Thread 4:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib        0x00007fff8f6d5686 mach_msg_trap + 10
    1   libsystem_kernel.dylib        0x00007fff8f6d4c42 mach_msg + 70
    2   libsystem_kernel.dylib        0x00007fff8f6d5405 mach_msg_server + 289
    3   com.apple.opendirectoryd.module.SystemCache0x00000001032aa6cb __systemcache_mig_initialize_block_invoke_0 + 39
    4   libdispatch.dylib             0x00007fff8ccc2f01 _dispatch_call_block_and_release + 15
    5   libdispatch.dylib             0x00007fff8ccbf0b6 _dispatch_client_callout + 8
    6   libdispatch.dylib             0x00007fff8ccc01fa _dispatch_worker_thread2 + 304
    7   libsystem_c.dylib             0x00007fff9017fcab _pthread_wqthread + 404
    8   libsystem_c.dylib             0x00007fff9016a171 start_wqthread + 13
    Thread 5:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib        0x00007fff8f6d5686 mach_msg_trap + 10
    1   libsystem_kernel.dylib        0x00007fff8f6d4c42 mach_msg + 70
    2   libsystem_kernel.dylib        0x00007fff8f6d5405 mach_msg_server + 289
    3   com.apple.opendirectoryd.module.SystemCache0x00000001032aa7a5 __systemcache_mig_initialize_block_invoke_026 + 39
    4   libdispatch.dylib             0x00007fff8ccc2f01 _dispatch_call_block_and_release + 15
    5   libdispatch.dylib             0x00007fff8ccbf0b6 _dispatch_client_callout + 8
    6   libdispatch.dylib             0x00007fff8ccc01fa _dispatch_worker_thread2 + 304
    7   libsystem_c.dylib             0x00007fff9017fcab _pthread_wqthread + 404
    8   libsystem_c.dylib             0x00007fff9016a171 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib        0x00007fff8f6d76d6 __workq_kernreturn + 10
    1   libsystem_c.dylib             0x00007fff9017feec _pthread_workq_return + 25
    2   libsystem_c.dylib             0x00007fff9017fcb3 _pthread_wqthread + 412
    3   libsystem_c.dylib             0x00007fff9016a171 start_wqthread + 13
    Thread 7 Crashed:: Dispatch queue: com.apple.opendirectoryd.pidinfo.893.requests
    0   libsystem_c.dylib             0x00007fff9016b330 strcmp + 80
    1   com.apple.opendirectoryd.module.ActiveDirectory0x00000001031e5a9f 0x1031da000 + 47775
    2   com.apple.opendirectoryd.module.ActiveDirectory0x00000001031dcab7 0x1031da000 + 10935
    3   com.apple.opendirectoryd.module.ActiveDirectory0x00000001031dc410 odm_NodeCustomCall + 3802
    4   opendirectoryd                0x0000000102938982 0x102919000 + 129410
    5   opendirectoryd                0x0000000102942c7a 0x102919000 + 171130
    6   opendirectoryd                0x0000000102938888 0x102919000 + 129160
    7   opendirectoryd                0x000000010293c5cf 0x102919000 + 144847
    8   opendirectoryd                0x0000000102933ab4 0x102919000 + 109236
    9   libdispatch.dylib             0x00007fff8ccc2f01 _dispatch_call_block_and_release + 15
    10  libdispatch.dylib             0x00007fff8ccbf0b6 _dispatch_client_callout + 8
    11  libdispatch.dylib             0x00007fff8ccc4317 _dispatch_async_f_redirect_invoke + 117
    12  libdispatch.dylib             0x00007fff8ccbf0b6 _dispatch_client_callout + 8
    13  libdispatch.dylib             0x00007fff8ccc01fa _dispatch_worker_thread2 + 304
    14  libsystem_c.dylib             0x00007fff9017fcab _pthread_wqthread + 404
    15  libsystem_c.dylib             0x00007fff9016a171 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib        0x00007fff8f6d76d6 __workq_kernreturn + 10
    1   libsystem_c.dylib             0x00007fff9017feec _pthread_workq_return + 25
    2   libsystem_c.dylib             0x00007fff9017fcb3 _pthread_wqthread + 412
    3   libsystem_c.dylib             0x00007fff9016a171 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib        0x00007fff8f6d76d6 __workq_kernreturn + 10
    1   libsystem_c.dylib             0x00007fff9017feec _pthread_workq_return + 25
    2   libsystem_c.dylib             0x00007fff9017fcb3 _pthread_wqthread + 412
    3   libsystem_c.dylib             0x00007fff9016a171 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib        0x00007fff8f6d76d6 __workq_kernreturn + 10
    1   libsystem_c.dylib             0x00007fff9017feec _pthread_workq_return + 25
    2   libsystem_c.dylib             0x00007fff9017fcb3 _pthread_wqthread + 412
    3   libsystem_c.dylib             0x00007fff9016a171 start_wqthread + 13
    Thread 7 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000662  rbx: 0x0000000000000000  rcx: 0x00000000000fc080  rdx: 0x0000000000000066
      rdi: 0x0000000000000000  rsi: 0x00000001031f199e  rbp: 0x0000000102a87930  rsp: 0x0000000102a872d8
       r8: 0x0000000000000007   r9: 0x00000000030733d4  r10: 0x0000000000000000  r11: 0x00000000030733d4
      r12: 0x00007fbcb992ce00  r13: 0x00007fbcb992cec0  r14: 0x00007fbcb8c18790  r15: 0x00007fbcb8e244b0
      rip: 0x00007fff9016b330  rfl: 0x0000000000010206  cr2: 0x0000000000000000
    Logical CPU: 2
    Binary Images:
           0x102919000 -        0x10297afff  opendirectoryd (197.14.6)  /usr/libexec/opendirectoryd
           0x102ea3000 -        0x102ea4fff  com.apple.heimdalodpac (10.8 - 198)  /System/Library/KerberosPlugins/KerberosFrameworkPlugins/heimdalodpac.bundle/Co ntents/MacOS/heimdalodpac
           0x102ea9000 -        0x102eabfff  com.apple.KerberosHelper.LKDCLocate (4.0 - 1.0) <6276FDFA-EB44-374C-9BFC-2AB5F68F2145> /System/Library/KerberosPlugins/KerberosFrameworkPlugins/LKDCLocate.bundle/Cont ents/MacOS/LKDCLocate
           0x102eaf000 -        0x102eb0ff7  com.apple.kerberos.reachability (3.0 - 2.0) <8DC5EA50-F572-31C7-9443-5F6C9363A58D> /System/Library/KerberosPlugins/KerberosFrameworkPlugins/Reachability.bundle/Co ntents/MacOS/Reachability
           0x102eb4000 -        0x102eb5ff7  com.apple.kerberos.sckerberosconfig (3.0 - 1) <6981ADC2-C901-3F8A-A3D0-7334DE61BF3E> /System/Library/KerberosPlugins/KerberosFrameworkPlugins/SCKerberosConfig.bundl e/Contents/MacOS/SCKerberosConfig
           0x102eb9000 -        0x102ebbfff  apop.so (169) <2A1CAD32-5734-3D4E-868B-E773DCD192B5> /usr/lib/sasl2/apop.so
           0x102ebf000 -        0x102ed3fff  dhx.so (169) <3C4D7E51-F30B-3A5B-9BB6-4426EC607E10> /usr/lib/sasl2/dhx.so
           0x102edf000 -        0x102ee8ff7  digestmd5WebDAV.so (169)  /usr/lib/sasl2/digestmd5WebDAV.so
           0x102eed000 -        0x102eeffff  libanonymous.2.so (166) <6417EA9E-4202-31DA-A086-B58F1E92C931> /usr/lib/sasl2/libanonymous.2.so
           0x102ef4000 -        0x102ef7fff  libcrammd5.2.so (166) <866C8DD4-5086-376A-BFC7-897A40327DB4> /usr/lib/sasl2/libcrammd5.2.so
           0x102efc000 -        0x102f05ff7  libdigestmd5.2.so (166)  /usr/lib/sasl2/libdigestmd5.2.so
           0x102f0a000 -        0x102f0ffff  libgssapiv2.2.so (166) <83A21AF3-FB42-3ACC-B6ED-26B23388C4F4> /usr/lib/sasl2/libgssapiv2.2.so
           0x102f14000 -        0x102f16fff  login.so (166) <1F868238-FB26-3477-B31C-67DB400D6F68> /usr/lib/sasl2/login.so
           0x102f1a000 -        0x102f1ffff  libntlm.so (166) <82608FB8-E225-39FF-BC83-B9D3F89D7CEC> /usr/lib/sasl2/libntlm.so
           0x102fa9000 -        0x102fb0fff  libotp.2.so (166) <2AE53E63-A826-3E20-9B4D-476CC712410D> /usr/lib/sasl2/libotp.2.so
           0x102fb9000 -        0x102fbbfff  libplain.2.so (166) <074D7604-3435-3E01-A86B-FF102001FC5B> /usr/lib/sasl2/libplain.2.so
           0x102fbf000 -        0x102fc3fff  libpps.so (169) <3C150ECF-0D94-3DBE-8AB6-7B0070700699> /usr/lib/sasl2/libpps.so
           0x102fc8000 -        0x102fcbfff  mschapv2.so (169) <9DAC741E-6BB8-3DFA-85AD-532EB20E780B> /usr/lib/sasl2/mschapv2.so
           0x102fd0000 -        0x102ffdfff  com.apple.DirectoryService.PasswordServerFramework (10.8 - 27) <4D67D74D-9200-3838-87D6-5E1968C81019> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
           0x103013000 -        0x103015fff  pwauxprop.so (387) <02EC8AD8-70F5-3512-8026-B41832050634> /usr/lib/sasl2/pwauxprop.so
           0x10301a000 -        0x10301dfff  shadow_auxprop.so (169)  /usr/lib/sasl2/shadow_auxprop.so
           0x103022000 -        0x103024fff  smb_nt.so (169)  /usr/lib/sasl2/smb_nt.so
           0x10302c000 -        0x10302efff  com.apple.opendirectoryd.module.legacy (10.8 - 197.14.6) <450222B3-A588-3E39-BA83-28B59EF72D53> /System/Library/OpenDirectory/Modules/legacy.bundle/Contents/MacOS/legacy
           0x103035000 -        0x10303aff7  com.apple.opendirectoryd.module.configure (10.8 - 197.14.6)  /System/Library/OpenDirectory/Modules/configure.bundle/Contents/MacOS/configure
           0x103043000 -        0x103044fff  com.apple.opendirectoryd.module.keychain (10.8 - 197.14.6) <73DA2C39-76C4-368F-9BD7-BDE2AE16C90D> /System/Library/OpenDirectory/Modules/keychain.bundle/Contents/MacOS/keychain
           0x10304a000 -        0x103051ff7  com.apple.opendirectoryd.module.search (10.8 - 197.14.6) <8F20F4EC-EB07-3970-BEB5-A2EEBC44541D> /System/Library/OpenDirectory/Modules/search.bundle/Contents/MacOS/search
           0x1030dd000 -        0x1030f4fff  com.apple.opendirectoryd.module.PlistFile (10.8 - 197.14.6) <0E1F8D7C-35DF-3BC3-AE57-B18576DE01FA> /System/Library/OpenDirectory/Modules/PlistFile.bundle/Contents/MacOS/PlistFile
           0x103107000 -        0x103108fff  com.apple.opendirectoryd.module.FDESupport (10.7 - 18)  /System/Library/OpenDirectory/Modules/FDESupport.bundle/Contents/MacOS/FDESuppo rt
           0x10310e000 -        0x103115ff7  com.apple.HeimODAdmin (3.0 - 2.0) <76E290B1-31BB-3CCA-8837-8F6F43FB5BF5> /System/Library/PrivateFrameworks/HeimODAdmin.framework/HeimODAdmin
           0x10311d000 -        0x103120ff7  com.apple.opendirectoryd.module.ConfigurationProfiles (10.8.2 - 546)  /System/Library/OpenDirectory/Modules/ConfigurationProfiles.bundle/Contents/Mac OS/ConfigurationProfiles
           0x103125000 -        0x103154ff7  com.apple.framework.ConfigurationProfiles (5.2 - 546)  /System/Library/PrivateFrameworks/ConfigurationProfiles.framework/Versions/A/Co nfigurationProfiles
           0x1031bd000 -        0x1031ccfff  com.apple.opendirectoryd.module.ldap (10.8 - 197.14.6) <2B18FA46-1452-39FB-BE48-155F89CBBBD4> /System/Library/OpenDirectory/Modules/ldap.bundle/Contents/MacOS/ldap
           0x1031da000 -        0x1031f5fff  com.apple.opendirectoryd.module.ActiveDirectory (10.8 - 72.7.1) <56DEE6F8-7799-34D3-82DF-6D21BB953344> /System/Library/OpenDirectory/Modules/ActiveDirectory.bundle/Contents/MacOS/Act iveDirectory
           0x103206000 -        0x10321fff7  com.apple.SMBClient (1.8 - 1.8)  /System/Library/PrivateFrameworks/SMBClient.framework/Versions/A/SMBClient
           0x10328b000 -        0x1032bbfff  com.apple.opendirectoryd.module.SystemCache (10.8 - 197.14.6) <42594DFB-FCF9-3D6C-B6D1-CC4912D7A3E7> /System/Library/OpenDirectory/Modules/SystemCache.bundle/Contents/MacOS/SystemC ache
           0x103322000 -        0x103325fff  smb_ntlmv2.so (169)  /usr/lib/sasl2/smb_ntlmv2.so
        0x7fff62519000 -     0x7fff6254d93f  dyld (210.2.3)  /usr/lib/dyld
        0x7fff8682f000 -     0x7fff86a64ff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff86ca1000 -     0x7fff86ca4ff7  libdyld.dylib (210.2.3)  /usr/lib/system/libdyld.dylib
        0x7fff86ca5000 -     0x7fff86caafff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff86cab000 -     0x7fff86ceffff  libcups.2.dylib (327) <9B3F3321-D2BC-3195-BF20-4008FC52A390> /usr/lib/libcups.2.dylib
        0x7fff86cf0000 -     0x7fff86cf4ff7  com.apple.CommonPanels (1.2.5 - 94)  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff86cf5000 -     0x7fff86d5dff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff86d97000 -     0x7fff86dcbfff  com.apple.securityinterface (6.0 - 55024.4) <614C9B8E-2056-3A41-9A01-DAF74C97CC43> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff86dcc000 -     0x7fff86dd6fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5)  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff86dd7000 -     0x7fff86debfff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff86dec000 -     0x7fff86e46fff  com.apple.print.framework.PrintCore (8.1 - 387.1) <1FA17B75-33E6-35BD-9198-35F92E37B248> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff86e62000 -     0x7fff86eb3ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2)  /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff872ff000 -     0x7fff87305ff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff87306000 -     0x7fff87384ff7  com.apple.securityfoundation (6.0 - 55115.4)  /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff87385000 -     0x7fff87386ff7  libdnsinfo.dylib (453.18)  /usr/lib/system/libdnsinfo.dylib
        0x7fff873c4000 -     0x7fff873e6ff7  libxpc.dylib (140.41)  /usr/lib/system/libxpc.dylib
        0x7fff873f8000 -     0x7fff8756cfff  com.apple.CFNetwork (596.2.3 - 596.2.3) <6A16C2BD-1035-30F9-AE96-D9E3BB54A976> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff8756f000 -     0x7fff8768ffff  com.apple.desktopservices (1.7.2 - 1.7.2)  /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff87690000 -     0x7fff87aadfff  FaceCoreLight (2.4.1)  /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff87aae000 -     0x7fff87bfffff  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <833DA682-A3C1-39E7-AEC3-9EDC734DE2A9> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff87c00000 -     0x7fff87c9afff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff87d5f000 -     0x7fff87d6cfff  libbz2.1.0.dylib (29)  /usr/lib/libbz2.1.0.dylib
        0x7fff87d6d000 -     0x7fff87d74fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff8810e000 -     0x7fff88110ff7  com.apple.EFILogin (2.0 - 2) <51A470D7-1F72-3369-AF0F-AD2340B42C12> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff88386000 -     0x7fff883ddff7  com.apple.ScalableUserInterface (1.0 - 1)  /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff88438000 -     0x7fff8843bfff  libutil.dylib (30)  /usr/lib/libutil.dylib
        0x7fff8843c000 -     0x7fff88466ff7  com.apple.CoreVideo (1.8 - 99.3)  /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff88467000 -     0x7fff8848ffff  libJPEG.dylib (845)  /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff88dac000 -     0x7fff88db8ff7  com.apple.DirectoryService.Framework (10.8 - 151.10)  /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff88db9000 -     0x7fff88dc4fff  libsystem_notify.dylib (98.5)  /usr/lib/system/libsystem_notify.dylib
        0x7fff88dc5000 -     0x7fff88fc5fff  libicucore.A.dylib (491.11.1)  /usr/lib/libicucore.A.dylib
        0x7fff88fc6000 -     0x7fff89296fff  com.apple.security (7.0 - 55179.1) <639641EF-8156-3190-890C-1053658E044A> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff89297000 -     0x7fff8933dff7  com.apple.CoreServices.OSServices (557.4 - 557.4) <841878A8-6F3E-300D-8F01-444B3CC1F41D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff89396000 -     0x7fff89447fff  com.apple.LaunchServices (539.7 - 539.7)  /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff89448000 -     0x7fff89452fff  libcsfde.dylib (274.7) <77562CC6-3D42-34BF-BAAB-660140479D55> /usr/lib/libcsfde.dylib
        0x7fff89454000 -     0x7fff895dafff  libBLAS.dylib (1073.4)  /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff895db000 -     0x7fff8961aff7  com.apple.QD (3.42 - 285) <8DF36FCA-C06B-30F4-A631-7BE2FF7E56D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff89647000 -     0x7fff89749fff  libcrypto.0.9.8.dylib (47) <74F165AD-4572-3B26-B0E2-A97477FE59D0> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8974a000 -     0x7fff897a7ff7  com.apple.AE (645.3 - 645.3)  /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff897b2000 -     0x7fff897ddfff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff8982c000 -     0x7fff89929ff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
        0x7fff8992c000 -     0x7fff89962fff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
        0x7fff89963000 -     0x7fff89a20ff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff89dcc000 -     0x7fff89dd0fff  libpam.2.dylib (20)  /usr/lib/libpam.2.dylib
        0x7fff89e07000 -     0x7fff89e0bfff  com.apple.IOSurface (86.0.3 - 86.0.3)  /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff89e0c000 -     0x7fff89f0efff  libJP2.dylib (845) <405CAF25-0AA5-3C6B-A4A6-94471A1EDD2F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff89f67000 -     0x7fff89faaff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff89fab000 -     0x7fff89fd2fff  com.apple.framework.familycontrols (4.1 - 410)  /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff89fd3000 -     0x7fff89ffcfff  libsandbox.1.dylib (220)  /usr/lib/libsandbox.1.dylib
        0x7fff89ffd000 -     0x7fff8a004fff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8a7ae000 -     0x7fff8a82eff7  com.apple.ApplicationServices.ATS (332 - 341.1)  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8a8d2000 -     0x7fff8a8f2fff  libPng.dylib (845)  /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8a8f3000 -     0x7fff8b520ff7  com.apple.AppKit (6.8 - 1187.34) <1FF64844-EB62-3F96-AED7-6525B7CCEC23> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8b5af000 -     0x7fff8b605ff7  com.apple.opencl (2.1.20 - 2.1.20)  /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8b60b000 -     0x7fff8b657ff7  libauto.dylib (185.1) <73CDC482-16E3-3FC7-9BB4-FBA2DA44DBC2> /usr/lib/libauto.dylib
        0x7fff8b658000 -     0x7fff8b65dfff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8b6a7000 -     0x7fff8b6a7fff  libkeymgr.dylib (25)  /usr/lib/system/libkeymgr.dylib
        0x7fff8b708000 -     0x7fff8b708fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8)  /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8bb46000 -     0x7fff8bb48fff  libquarantine.dylib (52) <4BE2E642-A14F-340A-B482-5BD2AEFD9C24> /usr/lib/system/libquarantine.dylib
        0x7fff8bb49000 -     0x7fff8bba6fff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0)  /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8bc98000 -     0x7fff8bd8dfff  libiconv.2.dylib (34)  /usr/lib/libiconv.2.dylib
        0x7fff8bddb000 -     0x7fff8be09ff7  libsystem_m.dylib (3022.6)  /usr/lib/system/libsystem_m.dylib
        0x7fff8be0a000 -     0x7fff8be1efff  libGL.dylib (8.6.1) <2E00615F-97F5-34EB-BE07-75A24F3C18D7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8be28000 -     0x7fff8be3efff  com.apple.MultitouchSupport.framework (235.28 - 235.28)  /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8be3f000 -     0x7fff8be3ffff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8be4d000 -     0x7fff8be55ff7  libsystem_dnssd.dylib (379.32.1) <62AA0B84-188A-348B-8F9E-3E2DB08DB93C> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8be56000 -     0x7fff8be64ff7  libkxld.dylib (2050.18.24) <7027CE49-007D-3553-8FFA-3E3B428B2316> /usr/lib/system/libkxld.dylib
        0x7fff8be65000 -     0x7fff8be66fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff8be76000 -     0x7fff8be7afff  libMatch.1.dylib (17)  /usr/lib/libMatch.1.dylib
        0x7fff8be7b000 -     0x7fff8be81fff  libmacho.dylib (829)  /usr/lib/system/libmacho.dylib
        0x7fff8becb000 -     0x7fff8bed9fff  libcommonCrypto.dylib (60026) <2D6537F5-1B5E-305C-A1CF-D1FA80CA3939> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8bf89000 -     0x7fff8c05bff7  com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8c05c000 -     0x7fff8c05eff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff8c179000 -     0x7fff8c1c8ff7  libcorecrypto.dylib (106.2)  /usr/lib/system/libcorecrypto.dylib
        0x7fff8c411000 -     0x7fff8c438ff7  com.apple.PerformanceAnalysis (1.16 - 16)  /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8c439000 -     0x7fff8c48eff7  libTIFF.dylib (845)  /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8c48f000 -     0x7fff8c495fff  com.apple.DiskArbitration (2.5.1 - 2.5.1)  /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8c496000 -     0x7fff8c7adff7  com.apple.CoreServices.CarbonCore (1037.3 - 1037.3)  /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8c7ae000 -     0x7fff8c7aefff  com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff8c7af000 -     0x7fff8c805fff  com.apple.HIServices (1.20 - 417)  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8c806000 -     0x7fff8c887fff  com.apple.Metadata (10.7.0 - 707.3)  /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8ccbd000 -     0x7fff8ccd2ff7  libdispatch.dylib (228.23)  /usr/lib/system/libdispatch.dylib
        0x7fff8cfa8000 -     0x7fff8d02afff  com.apple.Heimdal (3.0 - 2.0) <660A6C64-4912-32C8-A332-B64164032A2D> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8d02b000 -     0x7fff8d214fff  com.apple.CoreFoundation (6.8 - 744.12)  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8d215000 -     0x7fff8d23aff7  libc++abi.dylib (24.4)  /usr/lib/libc++abi.dylib
        0x7fff8d25e000 -     0x7fff8d264fff  libGFXShared.dylib (8.6.1)  /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8d265000 -     0x7fff8d282fff  com.apple.openscripting (1.3.6 - 148.2) <33B87CFB-CACC-3EBC-893D-38AECB94FB8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8d9ca000 -     0x7fff8d9ddff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8d9de000 -     0x7fff8d9f3fff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8d9f4000 -     0x7fff8db7efff  com.apple.WebKit (8536 - 8536.26.14) <7C4D5DE6-7153-3E54-8D4F-BB2E9AE74878> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff8db7f000 -     0x7fff8db7ffff  libOpenScriptingUtil.dylib (148.2)  /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8db80000 -     0x7fff8dbb6fff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8dc03000 -     0x7fff8dc3dfff  com.apple.GSS (3.0 - 2.0) <0BDF8090-5EF4-3759-94DE-8521D74188AA> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8dc66000 -     0x7fff8dcb0ff7  libGLU.dylib (8.6.1)  /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8dcb1000 -     0x7fff8dcb2ff7  libsystem_sandbox.dylib (220) <3C3B03CF-C525-3CB3-8557-62E91B93AC95> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8dcb3000 -     0x7fff8dcb7fff  libCoreVMClient.dylib (24.4) <55F71158-ADEE-3863-92E9-4772DCEA8E31> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8dcb8000 -     0x7fff8dcb8fff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8dcb9000 -     0x7fff8dce1ff7  com.apple.SystemConfiguration.EAP8021X (12.0.0 - 12.0) <1BCC05B1-1E08-377C-A01D-4F421E63868B> /System/Library/PrivateFrameworks/EAP8021X.framework/Versions/A/EAP8021X
        0x7fff8dd20000 -     0x7fff8dd2dfff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8dd2e000 -     0x7fff8dedcfff  com.apple.QuartzCore (1.8 - 304.0)  /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8dedd000 -     0x7fff8dee5fff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
        0x7fff8df76000 -     0x7fff8df77fff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8dfd8000 -     0x7fff8dfd9ff7  libSystem.B.dylib (169.3) <365477AB-D641-389D-B8F4-A1FAE9657EEE> /usr/lib/libSystem.B.dylib
        0x7fff8e0f7000 -     0x7fff8e134fe7  libGLImage.dylib (8.6.1) <7F31DD61-3110-3541-A9BB-035CD1262E50> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8e135000 -     0x7fff8e170fff  com.apple.LDAPFramework (2.4.28 - 194.5) <0190B746-F684-3F43-B4D0-148EFE386CA4> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff8e171000 -     0x7fff8e30cfef  com.apple.vImage (6.0 - 6.0)  /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8e30d000 -     0x7fff8e42592f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff8e426000 -     0x7fff8e42aff7  com.apple.TCC (1.0 - 1)  /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8e42b000 -     0x7fff8e437fff  com.apple.CrashReporterSupport (10.8.2 - 414.3)  /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8e984000 -     0x7fff8e989fff  com.apple.OpenDirectory (10.8 - 151.10)  /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8e9b9000 -     0x7fff8ea15ff7  com.apple.Symbolication (1.3 - 93)  /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8ea16000 -     0x7fff8ea1afff  libGIF.dylib (845) <2690CE83-E934-3EF8-A30A-996EDADCE3E4> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8eaef000 -     0x7fff8eb8dff7  com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8eb8e000 -     0x7fff8eba1ff7  libbsm.0.dylib (32)  /usr/lib/libbsm.0.dylib
        0x7fff8eba2000 -     0x7fff8ebb9fff  com.apple.CFOpenDirectory (10.8 - 151.10)  /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8ec34000 -     0x7fff8ec43ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff8ec45000 -     0x7fff8ec67ff7  com.apple.Kerberos (2.0 - 1)  /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8ecc3000 -     0x7fff8ecd0ff7  com.apple.NetAuth (4.0 - 4.0)  /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8ecd1000 -     0x7fff8ed96ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8ed97000 -     0x7fff8ed97ffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <29E2C990-3617-3FA2-BDD7-DB7DF493E443> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8eef6000 -     0x7fff8ef5efff  libvDSP.dylib (380.6)  /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8efb5000 -     0x7fff8f03cff7  libCoreStorage.dylib (274.7) <8E13133C-1198-3555-9518-2BCC09C66C97> /usr/lib/libCoreStorage.dylib
        0x7fff8f03d000 -     0x7fff8f10bfff  com.apple.Bluetooth (4.0.9 - 4.0.9f33) <3F57E1F3-08E8-3EDF-8DE0-E3855EB4D74B> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff8f10c000 -     0x7fff8f115fff  com.apple.CommerceCore (1.0 - 26) <997CD214-BC78-3C61-A1B8-813EA1CB9997> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8f116000 -     0x7fff8f221fff  libFontParser.dylib (84.5) <617A7D30-C7BC-39FC-A1FE-59367B4A5719> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8f222000 -     0x7fff8f224fff  libCVMSPluginSupport.dylib (8.6.1) <7EFDA31E-E463-3897-A8DC-7FD266EB713E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8f55f000 -     0x7fff8f639ff7  com.apple.backup.framework (1.4.1 - 1.4.1)  /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8f63a000 -     0x7fff8f64bff7  libsasl2.2.dylib (166) <649CAE0E-8FFE-3C60-A849-BE6300E4B726> /usr/lib/libsasl2.2.dylib
        0x7fff8f68d000 -     0x7fff8f6c4ff7  libssl.0.9.8.dylib (47) <923945E6-C489-3406-903B-A362410753F8> /usr/lib/libssl.0.9.8.dylib
        0x7fff8f6c5000 -     0x7fff8f6e0ff7  libsystem_kernel.dylib (2050.18.24)  /usr/lib/system/libsystem_kernel.dylib
        0x7fff8f6f3000 -     0x7fff8f724ff7  com.apple.DictionaryServices (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8fa53000 -     0x7fff8fa5eff7  com.apple.bsd.ServiceManagement (2.0 - 2.0)  /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8fa5f000 -     0x7fff8fb5cfff  libsqlite3.dylib (138.1)  /usr/lib/libsqlite3.dylib
        0x7fff8fbd9000 -     0x7fff8fbebff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff8fc5c000 -     0x7fff8fc5cfff  com.apple.ApplicationServices (45 - 45)  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8fee9000 -     0x7fff8ff83fff  com.apple.CoreSymbolication (3.0 - 87) <75F2C0DD-549A-36F6-BD9E-FB40A924344F> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff9003f000 -     0x7fff9003ffff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff90040000 -     0x7fff900a9fff  libstdc++.6.dylib (56)  /usr/lib/libstdc++.6.dylib
        0x7fff900b0000 -     0x7fff900b3fff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff90169000 -     0x7fff90235fe7  libsystem_c.dylib (825.25) <8CBCF9B9-EBB7-365E-A3FF-2F3850763C6B> /usr/lib/system/libsystem_c.dylib
        0x7fff90236000 -     0x7fff9024dfff  com.apple.GenerationalStorage (1.1 - 132.2) <3F5C87BD-D866-3732-8CB9-D23ED9784D6E> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff9024e000 -     0x7fff9026ffff  com.apple.Ubiquity (1.2 - 243.10)  /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff903b9000 -     0x7fff90426fff  com.apple.datadetectorscore (4.0 - 269.1)  /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff90431000 -     0x7fff906d5fff  com.apple.CoreImage (8.2.2 - 1.0.1) <930B0B23-DD84-3B0C-B5A9-C09B7068A6F0> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff906d6000 -     0x7fff90acdfff  libLAPACK.dylib (1073.4)  /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff90ad0000 -     0x7fff90ad3fff  libRadiance.dylib (845)  /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff90b1a000 -     0x7fff90b1cff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff90b1d000 -     0x7fff90b60fff  com.apple.RemoteViewServices (2.0 - 80.5)  /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff90b90000 -     0x7fff90bdfff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff90c72000 -     0x7fff90c7dfff  com.apple.CommonAuth (3.0 - 2.0) <74A86DDD-57D0-3178-AB74-E1F31DBFFC39> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff90c9a000 -     0x7fff90ca7fff  com.apple.KerberosHelper (4.0 - 1.0) <6815439D-1A03-3251-99FE-CC24CF4C93C5> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
        0x7fff90ca8000 -     0x7fff90cb6ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff90e3f000 -     0x7fff917cfc67  com.apple.CoreGraphics (1.600.0 - 324.6)  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff91a54000 -     0x7fff91a73ff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
        0x7fff91aa5000 -     0x7fff91aa7fff  com.apple.TrustEvaluationAgent (2.0 - 23)  /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff91aa8000 -     0x7fff91ac7ff7  com.apple.ChunkingLibrary (2.0 - 133.2)  /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff91b0d000 -     0x7fff91e69fff  com.apple.Foundation (6.8 - 945.11)  /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff91e6a000 -     0x7fff91e75fff  com.apple.CoreBluetooth (100.6 - 1) <8166B68C-3AA7-30F9-8454-CA2AA03F50E4> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/Frameworks/CoreBlue tooth.framework/Versions/A/CoreBluetooth
        0x7fff91ec2000 -     0x7fff91ec3ff7  libremovefile.dylib (23.1)  /usr/lib/system/libremovefile.dylib
        0x7fff91ec4000 -     0x7fff91ec4fff  com.apple.Carbon (154 - 155) <372716D2-6FA1-3611-8501-3DD1D4A6E8C8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff91ec5000 -     0x7fff91ee6ff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
        0x7fff91f1a000 -     0x7fff921b4ff7  com.apple.JavaScriptCore (8536 - 8536.26.7)  /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff921b5000 -     0x7fff921c4ff7  com.apple.opengl (1.8.6 - 1.8.6) <720CC06C-0D01-37AE-BB3D-D7F0242B262A> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff921c5000 -     0x7fff922deff7  com.apple.ImageIO.framework (3.2.0 - 845) <553B9828-A7D9-3AE4-A214-1C33417545FD> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff9233c000 -     0x7fff9266cff7  com.apple.HIToolbox (2.0 - 625) <317F75F7-4B0F-35F5-89A7-F20BA60AC944> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff926c8000 -     0x7fff92735ff7  com.apple.framework.IOKit (2.0 - 755.18.10) <142E19DD-1C8D-3D61-ABC8-83994A73279F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff92762000 -     0x7fff92763fff  libsystem_blocks.dylib (59)  /usr/lib/system/libsystem_blocks.dylib
        0x7fff92764000 -     0x7fff9371dfff  com.apple.WebCore (8536 - 8536.26.14) <60029E1A-C1DB-3A1F-8528-4970058D8B3D> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff9371e000 -     0x7fff93720fff  com.apple.securityhi (4.0 - 55002) <34E45C60-DC7E-3FCC-A1ED-EBF48B77C559> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff93721000 -     0x7fff937aeff7  com.apple.SearchKit (1.4.0 - 1.4.0)  /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 819
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=169.5M resident=112.8M(67%) swapped_out_or_unallocated=56.7M(33%)
    Writable regions: Total=64.6M written=2000K(3%) resident=3748K(6%) swapped_out=0K(0%) unallocated=61.0M(94%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    MALLOC                             50.2M
    MALLOC guard page                    80K
    Mach message (reserved)              80K        reserved VM address space (unallocated)
    SQLite page cache                    96K
    STACK GUARD                          44K
    Stack                              69.6M
    VM_ALLOCATE                          68K
    __DATA                             13.4M
    __IMAGE                             528K
    __LINKEDIT                         54.1M
    __TEXT                            115.4M
    __UNICODE                           544K
    mapped file                          32K
    shared memory                        12K
    ===========                      =======
    TOTAL                             304.2M
    TOTAL, minus reserved VM space    304.1M

    Hi There
    What Operating System was the Active Directory server running?  I got exactly the same symptoms connecting to an Active Directory Domain running on a Windows 2000 Server.  I have not seen any information as to if connections are still supported from Mountain Lion to Windows 2000 servers.
    I saw this document for Lion but have not seen anything for Mountain Lion yet.
    http://training.apple.com/pdf/wp_integrating_active_directory.pdf
    Search for "Windows Server Versions" it shows Windows 2000 still supported for Lion
    Philip
    Message was edited by: Philip Sullivan

  • Error processing request - APEX 4.2.0.00.27

    Hi,
    In application that I'm working on, there is possibility to create a new system user.
    After the user is created, user manages to log-in and system asks for new password.
    After you change the password for the first time, you are redirected to page that just says „Changed password“ and there is only one button „Return“.
    I presume that this is some APEX internal/system page.
    When you click on that button, it shows error:
         Error processing request.
         ORA-01403: no data found
    This happens only when trying log-in for the first time!
    Can someone  help with this error?
    Is that some APEX internal error/bug?
    many thanks
    regards,
    Danijel

    Hi Tward,
    I'm doing some JQuery ToolTip stuff for an Interactive Report... It always works for the first page, but if I search on something.. After pressing the "GO" button the tooltips no longer workWhen you press 'Go' button, the report region refreshes via AJAX. So any 'bind's you made on page load are gone. So you should use 'live' instead of 'bind'
    See http://api.jquery.com/live/
    If you view the Source (and it says "Original Source" in the titlebar of Internet Explorer), the Source appears to be the same as the original Interactive Report.
    Does that make sense... What is being displayed on the screen is not what is in the "View Source" window...IE is not for Developers. 'Inspect the report' using Firebug in Firefox. You can see exactly what is happening.
    Regards,
    Hari

  • Error processing request  ORACLE-01403:no data found (pt.2)

    Hi, all.
    We've experienced the problem that seems to be resolved in topic
    Error processing request  ORACLE-01403:no data found
    I followed the lead but didn't found problem they were talking about - no two #FORM_OPEN# directive in page template.
    We have Apex 4.2.2.00.11 patchset installed
    I cannot tell Apex Listner version for now because our sysadmin who installed it is absent
    And problem appears in different versions of Internet Expolrer, but application is working fine in Firefox

    Hi, all.
    We've experienced the problem that seems to be resolved in topic
    Error processing request  ORACLE-01403:no data found
    I followed the lead but didn't found problem they were talking about - no two #FORM_OPEN# directive in page template.
    We have Apex 4.2.2.00.11 patchset installed
    I cannot tell Apex Listner version for now because our sysadmin who installed it is absent
    And problem appears in different versions of Internet Expolrer, but application is working fine in Firefox

  • SAX Parser error when installing Oracle CCG 5.5.1

    I am trying to install Oracle CCG on Windows 2008. I already have my PeopleSoft system installed on the same box, running weblogic and jdk1.7.0_03.
    After setting the required environment variables, when I run the command "install.bat -f ccg-551-install.apf" from ccg_install folder, I get the following error:
    Starting Oracle Installation Engine 1.2.1
    Running from working directory C:\CCG\ccg_stage\
    ORACLE_HOME is C:\app\Administrator\product\11.2.0\dbhome_1
    JAVA_HOME is C:\Program Files\Java\jdk1.7.0_03
    LAUNCH_CLASSPATH is C:\app\Administrator\product\11.2.0\dbhome_1\jdbc\lib\classe
    s12.jar;C:\CCG\ccg_stage\install.jar;"C:\app\Administrator\product\11.2.0\dbhome
    _1\lib";C:\Program Files\Java\jdk1.7.0_03\lib;C:\app\Administrator\product\11.2.
    0\dbhome_1\lib;%CLASSPATH%
    Oracle CCG Installer -- Version 1.2.1 Build(installer12-Maint-1.2.1.2)
    Copyright 2009 Oracle. All rights reserved.
    Initializing. Please wait...
    FileParser: Parse error occurred: Could not load default SAX parser: org.apache.
    xerces.parsers.SAXParser: SAX2 driver class org.apache.xerces.parsers.SAXParser
    not found: org.apache.xerces.parsers.SAXParser
    Could not load default SAX parser: org.apache.xerces.parsers.SAXParser: SAX2 dri
    ver class org.apache.xerces.parsers.SAXParser not found: org.apache.xerces.parse
    rs.SAXParser
    I have tried downloading xerces.jar file and placed in the CLASSPATH folder but it did not help either. I do not have much knowledge about java and need help from someone who has installed CCG on windows.
    Thank you in advance

    Several things I would recommend here:
    1. Use JDK 1.5 instead of 1.7, I'm pretty sure 1.7 isn't supported (Don't ask why) - [http://www.oracle.com/technetwork/java/javasebusiness/downloads/java-archive-downloads-javase5-419410.html|http://www.oracle.com/technetwork/java/javasebusiness/downloads/java-archive-downloads-javase5-419410.html]
    2. Make sure to exit out all DOS command windows, then open a new one then go through setting all the environment variables, and using the same DOS command run the install command, otherwise all environment variables will be lost.
    I hope that helps.

Maybe you are looking for

  • Problem uploading Flash in DW cs3

    This Flash site previews well in DW, but stays blank after upload. It played fine online in a previous version, can anyone tell what's wrong by the code? (Looks like its cut off at the bottom, the site is doghouselords.com. Thanks in advance): <html

  • Read the content of a file (via socket)

    Hi, I need to read the content of a file (.txt, or better, .jpg) and to write it again in another file. I have this code (in Javascript):     conn = new Socket;     conn.encoding = "BINARY";     if (conn.open ("127.0.0.1:8888")) {     conn.timeout=30

  • Issue in Unicode Conversion

    Hi, We are doing Unicode Conversion activity in one of our system. After running through UCCHECK transaction, we got around 80 programs in which most of them were resolved manually. kindly find the below screenshot when we are trying to edit one obje

  • Lightroom Problem: HELP!

    It displays this message: "Adobe Lightroom 5 Cannot be opened because of a problem" - "check with developer to make sure adobe photoshop lightroom 5 works with this version of OS X. You may need to reinstall the application. Be sure to install any av

  • ITunes won't open after downloading version 8.0.2

    I downloaded the 8.0.2 version of iTunes on Nov 25 and ever since I have not been able to open iTunes. Every time I try I get "The application iTunes quit unexpectedly". If I click relaunch the same message pops up. Reporting it to Apple does nothing