Http server cannot start after running the following JSP

Hi,
I have 9iAS 1.0.2.2 and it has been working fine.
My http server was running fine until I ran the following Jsp. Now I cannot start the Http server at all.
I check the Oracle home and the path and make sure they match (i.e. if my Oracle Home is iSuites, I have the PATH variable: c:\oracle\isuites\bin as the 1st one. And I reboot the system after I changed the Oracle Home, check the PATH variable etc.)
I also check the oci.dll files, and I have the oci.dll file in the following directories:
c:\oracle\ora81\BIN 87KB
c:\oracle\806\BIN 38KB
c:\oracle\iSuites\BIN 87KB
I check the Registry (regedit) and found that I have ORACLE_HOME_KEY for ora81 home, iSuites home, but not
806 home. And there are oracle.key files in c:\oracle\ora81\bin, c:\oracle\806\bin, c:\oracle\isuites\bin .
The contents of oracle.key in c:\oracle\ora81\bin and c:\oracle\isuites\bin are correct (i.e. "Software\ORACLE\HOME0" "Software\ORACLE\HOME2" respectively.) However, the content in c:\oracle\806\bin is "Software\ORACLE" .
Will this be a problem because there is no corresponding ORACLE_HOME_KEY for 806 in regedit?
OR
the OCI.DLL file is corrupted in one of the above directory.
Below is the JSP code that I ran. Before that, my HTTP server is started correctly.
I really appreciate if someone could give me some pointers about this.
Thanks;
Kelly.
<%@ page language="sqlj"
import="sqlj.runtime.ref.DefaultContext,oracle.sqlj.runtime.Oracl
e" %>
<HTML>
<HEAD> <TITLE> The SQLJQuery JSP </TITLE> </HEAD>
<BODY BGCOLOR="white">
<% String empno = request.getParameter("empno");
if (empno != null) { %>
<H3> Employee # <%=empno %> Details: </H3>
<%= runQuery(empno) %>
<HR><BR>
<% } %>
<B>Enter an employee number:</B>
<FORM METHOD="get">
<INPUT TYPE="text" NAME="empno" SIZE=10>
<INPUT TYPE="submit" VALUE="Ask Oracle");
</FORM>
</BODY>
</HTML>
<%!
private String runQuery(String empno) throws
java.sql.SQLException {
DefaultContext dctx = null;
String ename = null; double sal = 0.0; String hireDate = null;
StringBuffer sb = new StringBuffer();
try {
dctx = Oracle.getConnection("jdbc:oracle:oci8:@", "scott",
"tiger");
#sql [dctx] {
select ename, sal, TO_CHAR(hiredate,'DD-MON-YYYY')
INTO :ename, :sal, :hireDate
FROM scott.emp WHERE UPPER(empno) = UPPER(:empno)
sb.append("<BLOCKQUOTE><BIG><B><PRE>\n");
sb.append("Name : " + ename + "\n");
sb.append("Salary : " + sal + "\n");
sb.append("Date hired : " + hireDate);
sb.append("</PRE></B></BIG></BLOCKQUOTE>");
} catch (java.sql.SQLException e) {
sb.append("<P> SQL error: <PRE> " + e + " </PRE> </P>\n");
} finally {
if (dctx!= null) dctx.close();
return sb.toString();
%>

Hi Jim,
I have the same environment with almost similar problem, no IIS services being started, but HTTP_Server still failed to start. Below log:
+10/09/28 23:35:04 Start process+
+[Tue Sep 28 23:35:06 2010] [warn] pid file c:/oracle/frhome_1/apache/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous+
Apache run?
ap_spawn_child: Bad file descriptor
Couldn't fork child for piped log process
Regards,
Chai
Edited by: user13350226 on Sep 28, 2010 9:14 AM

Similar Messages

  • Re Post: Http server cannot start after running the following JSP

    Hi,
    I have 9iAS 1.0.2.2 and it has been working fine.
    My http server was running fine until I ran the following Jsp. Now I cannot start the Http server at all.
    I check the Oracle home and the path and make sure they match (i.e. if my Oracle Home is iSuites, I have the PATH variable: c:\oracle\isuites\bin as the 1st one. And I reboot the system after I changed the Oracle Home, check the PATH variable etc.)
    I also check the oci.dll files, and I have the oci.dll file in the following directories:
    c:\oracle\ora81\BIN 87KB
    c:\oracle\806\BIN 38KB
    c:\oracle\iSuites\BIN 87KB
    I check the Registry (regedit) and found that I have ORACLE_HOME_KEY for ora81 home, iSuites home, but not
    806 home. And there are oracle.key files in c:\oracle\ora81\bin, c:\oracle\806\bin, c:\oracle\isuites\bin .
    The contents of oracle.key in c:\oracle\ora81\bin and c:\oracle\isuites\bin are correct (i.e. "Software\ORACLE\HOME0" "Software\ORACLE\HOME2" respectively.) However, the content in c:\oracle\806\bin is "Software\ORACLE" .
    Will this be a problem because there is no corresponding ORACLE_HOME_KEY for 806 in regedit?
    OR
    the OCI.DLL file is corrupted in one of the above directory.
    Below is the JSP code that I ran. Before that, my HTTP server is started correctly.
    I really appreciate if someone could give me some pointers about this.
    I also suspect that when the HTTP server was brought down for some reasons and it was not a clean shutdown.
    So how can I shutdown the http server cleanly before restarting that?
    Thanks;
    Kelly.
    <%@ page language="sqlj"
    import="sqlj.runtime.ref.DefaultContext,oracle.sqlj.runtime.Oracl
    e" %>
    <HTML>
    <HEAD> <TITLE> The SQLJQuery JSP </TITLE> </HEAD>
    <BODY BGCOLOR="white">
    <% String empno = request.getParameter("empno");
    if (empno != null) { %>
    <H3> Employee # <%=empno %> Details: </H3>
    <%= runQuery(empno) %>
    <HR><BR>
    <% } %>
    <B>Enter an employee number:</B>
    <FORM METHOD="get">
    <INPUT TYPE="text" NAME="empno" SIZE=10>
    <INPUT TYPE="submit" VALUE="Ask Oracle");
    </FORM>
    </BODY>
    </HTML>
    <%!
    private String runQuery(String empno) throws
    java.sql.SQLException {
    DefaultContext dctx = null;
    String ename = null; double sal = 0.0; String hireDate = null;
    StringBuffer sb = new StringBuffer();
    try {
    dctx = Oracle.getConnection("jdbc:oracle:oci8:@", "scott",
    "tiger");
    #sql [dctx] {
    select ename, sal, TO_CHAR(hiredate,'DD-MON-YYYY')
    INTO :ename, :sal, :hireDate
    FROM scott.emp WHERE UPPER(empno) = UPPER(:empno)
    sb.append("<BLOCKQUOTE><BIG><B><PRE>\n");
    sb.append("Name : " + ename + "\n");
    sb.append("Salary : " + sal + "\n");
    sb.append("Date hired : " + hireDate);
    sb.append("</PRE></B></BIG></BLOCKQUOTE>");
    } catch (java.sql.SQLException e) {
    sb.append("<P> SQL error: <PRE> " + e + " </PRE> </P>\n");
    } finally {
    if (dctx!= null) dctx.close();
    return sb.toString();
    %>

    I had this problem and the pkgchk mentioned above helped to get the admin server going (thanks!) but I could not run the admin console. I saw:
    Exception in thread "main" java.lang.UnsupportedClassVersionError: org/GNOME/Accessibility/JavaBridge (Unsupported major.minor version 49.0)
    It turned out that something (I suspect the patch) had replaced my java1.5.0_06 binary with a java1.4.2_03 binary - but left the java1.5 directory structure alone! i.e. looking in /usr/jdk would have indicated that java1.5 was installed, but when I ran jdk1.5.0_06/bin/java -version , it reported java version "1.4.2_03". I was unimpressed.
    I ended up removing all the SUNWj5* packages and reinstalling them and then I could start the admin console.
    Now to find out what other damage this patch might have caused.....

  • The graph dose not shown after running the Customize JSP Page.

    Hi All,
    While creating customize JSP I am facing one problem - The graph dose not shown after running the Customize JSP Page.
    What are the possibilities ? any body has any Idea Please help me

    Hi all,
    I have the same issue! Any solution??
    Thanks
    BI Beans Diagnostics(v1.0.2.0) 11/10/06
    =========================================================
    JDEV_ORACLE_HOME .......................... = D:\jdev1012b1913
    JAVA_HOME ................................. = D:\ORDB10gR2Home\jdk
    JDeveloper version ........................ = 10.1.2.1.0.1913
    BI Beans release description .............. = BI Beans 10.1.2 Production Release
    BI Beans component number ................. = 10.1.2.67.0
    BI Beans internal version ................. = 3.2.2.0.24.2
    Connect to database ....................... = Successful
    JDBC driver version ....................... = 10.1.0.4.2
    JDBC JAR file location .................... = D:\jdev1012b1913\jdbc\lib
    Database version .......................... = 10.2.0.2.0
    OLAP Catalog version ...................... = 10.2.0.2.0
    OLAP AW Engine version .................... = 10.2.0.2.0
    OLAP API Server version ................... = 10.2.0.2.0
    BI Beans Catalog version .................. = 3.2.2.0.24
    OLAP API JAR file version ................. = "10.1.0.5.0"
    OLAP API JAR file location ................ = D:\jdev1012b1913\jdev\lib\ext
    Load OLAP API metadata .................... = Successful
    Number of metadata folders ................ = 1
    Number of metadata measures ............... = 23
    Number of metadata dimensions ............. = 8

  • Application Server cannot start after restart

    Dear all,
    I have a database cluster with SAP CI running on 2 servers(on SAN), plus 4 applications.
    Today we have restarted all the servers, and found that only 1 server with database server and application server (w/CI) can start.  All other applications servers cannot start, and in SAP Management Console, it does not show the SAP Instance.
    Another problem is that the database cluster cannot move to another server, with error:
    "initerrlog: Could not open error log file 'M:\Microsoft SQL Server\MSSQL.1\MSSQL\LOG\ERRORLOG'. Operating system error = 3(The system cannot find the path specified.)."
    Can anyone provide any assistant?  Many thanks!
    Regards,
    Daniel

    Hi Yaroslav,
    In Application Server, Not started.
    Log(1):
    The description for Event ID ( 0 ) in Source ( SAP???_?? ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the /AUXSOURCE= flag to retrieve this description; see Help and Support for details. The following information is part of the event: SAP Service SAP???_?? has been stopped successfully..
    Log(2):
    The description for Event ID ( 0 ) in Source ( SAP???_?? ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the /AUXSOURCE= flag to retrieve this description; see Help and Support for details. The following information is part of the event: Initialization failed. Service not started. [ntservmain.cpp 1269].
    Log(3):
    The description for Event ID ( 0 ) in Source ( SAP???_?? ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the /AUXSOURCE= flag to retrieve this description; see Help and Support for details. The following information is part of the event: Cannot open Profile
    sapgrp\sapmnt\PRD\SYS\profile\START_D21_sapapp1. (Error 53 ERROR_BAD_NETPATH: The network path was not found. ) [ntservstart.cpp 902].
    For SQL Server(The one which Cluster cannot move group to):
    Log(1):
    The description for Event ID ( 35712 ) in Source ( SAPPRD_01 ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the /AUXSOURCE= flag to retrieve this description; see Help and Support for details. The following information is part of the event:  ,  ,  ,  ,  ,  ,  ,  ,  ,  , r, e, c, v, 1, 0, 0, 5, 4,  ,  ,  ,  ,  ,  ,  ,  ,  ,  ,  ,  ,  ,  ,  ,  ,  ,  ,  , N, i, I, R, e, a, d, r, e, c, v,  ,  ,  , n, i, x, x, i, ., c, p, 4, 2, 4, 5, , , , , , , , , , , , , , , , , , , , , , , , , , ,           recv10054                   NiIReadrecv   nixxi.cp4245.
    Log(2):
    The description for Event ID ( 0 ) in Source ( SAP???_?? ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the /AUXSOURCE= flag to retrieve this description; see Help and Support for details. The following information is part of the event: SAP Service SAP???_?? has been stopped successfully..
    Log(3):
    The description for Event ID ( 0 ) in Source ( SAP???_?? ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the /AUXSOURCE= flag to retrieve this description; see Help and Support for details. The following information is part of the event: Initialization failed. Service not started. [ntservmain.cpp 1269].
    Log(4):
    The description for Event ID ( 0 ) in Source ( SAP???_?? ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the /AUXSOURCE= flag to retrieve this description; see Help and Support for details. The following information is part of the event: Cannot open Profile
    sapgrp\sapmnt\PRD\SYS\profile\START_D20_sapdb2. (Error 53 ERROR_BAD_NETPATH: The network path was not found. ) [ntservstart.cpp 902].
    Regards,
    Daniel

  • Getting exception: Unknown SMTP-- after running the following

    Dear Sir,
    I am running the demo example of the javamail api but I am getting the following message.
    D:\Sots\Java\javamail-1.3.3_01\demo>java msgsend -o [email protected] -M SMTP.Server [email protected]
    To: [email protected]
    Subject: Hi
    Welcome
    ^Z
    javax.mail.MessagingException: Unknown SMTP host: SMTP.Server;
    nested exception is:
    java.net.UnknownHostException: SMTP.Server
    at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1225)
    at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:32
    2)
    at javax.mail.Service.connect(Service.java:236)
    at javax.mail.Service.connect(Service.java:137)
    at javax.mail.Service.connect(Service.java:86)
    at javax.mail.Transport.send0(Transport.java:150)
    at javax.mail.Transport.send(Transport.java:80)
    at msgsend.main(msgsend.java:165)
    Thanks and Regards.
    Narendra Mohan

    Dear Sir,
    I am running the demo example of the javamail api but I am getting the following message.
    D:\Sots\Java\javamail-1.3.3_01\demo>java msgsend -o [email protected] -M SMTP.Server [email protected]
    To: [email protected]
    Subject: Hi
    Welcome
    ^Z
    javax.mail.MessagingException: Unknown SMTP host: SMTP.Server;
    nested exception is:
    java.net.UnknownHostException: SMTP.Server
    at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1225)
    at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:32
    2)
    at javax.mail.Service.connect(Service.java:236)
    at javax.mail.Service.connect(Service.java:137)
    at javax.mail.Service.connect(Service.java:86)
    at javax.mail.Transport.send0(Transport.java:150)
    at javax.mail.Transport.send(Transport.java:80)
    at msgsend.main(msgsend.java:165)
    Thanks and Regards.
    Narendra Mohan

  • Error starting HTTP-Server: Cannot assign requested address: JVM_Bind

    Hi.
    Anyone know how to configure the Oracle HTTP server within Jdeveloper9i to work?
    When I try run a JSP page, I get the following error:
    C:\Oracle9iDS\jdk\bin\javaw.exe -ojvm -classpath C:\Oracle9iDS\j2ee\home\oc4j.jar com.evermind.server.OC4JServer -config C:\Oracle9iDS\jdev\system\oc4j-config\server.xml
    [Starting OC4J using the following ports: HTTP=8888, RMI=23891, JMS=9227.]
    [waiting for the server to complete its initialization...]
    Error starting HTTP-Server: Cannot assign requested address: JVM_Bind
    Oracle9iAS (9.0.2.0.0) Containers for J2EE initialized
    Please contact me at [email protected]
    cheers paul

    A JVM_Bind error means that the port is already in use. This is an unusual error message to get because JDev scans the ports ahead of time to make sure they are free before launching the server.
    Check if you have any processes running that might be holding port 8888. There might be a previous instance of the OC4J server running that hasn't released port 8888 yet. On Windows, at a command prompt, you can use "netstat -a" to see local ports that are in use.

  • Multiple LV instances, web server cannot start, port already in use

    Hi there,
    I have a general question about webserving VIs in case either
    a) multiple instances of the LV development environment are running (this is possible in windows XP for instance when "switch users" is allowed and each user launches LV)
    b) multiple compiled LV executables are run by the same user
    c) any mixture of the two above
    I have an application case when either of the three above would be a very good solution, was not for the problem encountered. Say, b): the user is given two deployed executables, and can decide to run either or both concurrently. Moreover, I want these applications to be visible on the web, so they are compiled with the webserver turned on, default settings.
    The problem I've seen (LV8.5.1, winXp for sure, but I think I've seen it as well in linux and other versions as well) is that each new instance of the LV engine tries to get hold of the tcp port (default 80), so that all instances beyond the first complain about "The Web Server cannot start. Is the Web Server port already in use?"
    While I can understand the origin of the message, and found some posts on the forums somehow related to it, I don't like it too much. 
    I could think only of two workarounds here: 1) set different web server ports for each LV instance, and instruct the remote users to direct their browsers to a webserverort link to access each VI; 2) run all the applications from the same instance of the LV dev system. The latter is not so convenient for me, due to conflicts in global VIs between all instances of the applications [compiling executables IS a way to privatize memory spaces in this case, AND global variables are imho well justified for the fairly complex application I have in mind here].
    Is there a third, more elegant solution perhaps, which I'm missing?
    Thanks, Enrico

    NathanK wrote:
    What is it in particular that you dislike about the message?
    How would you like LabVIEW to behave in this case?
    No problem with the message, but I'd just be very happy if a single
    web server would serve all my instances of the executables on the same
    port. I.e., if 2.exe is open and wants to start another server on the
    same port used already by 1.exe, then 2.exe becomes served by the
    server already opened. Am I demanding too much? Am I missing some
    necessary logic?
    At the moment, anyway, I'm stuck with the vi being served correctly,
    but not the compiled application, and I can't figure out why. It's
    LV8.5.1, and yes, I have in the .ini
    WebServer.DirectoryIndex="index.htm"
    WebServer.LogPath=C:\Program Files\National Instruments\LabVIEW 8.5\www.log
    WebServer.MimeTypes="htm;text/html;gif;image/gif;j​pg;image/jpeg;png;image/png;txt;text/plain;html;te​xt/html;jpeg;image/jpeg;css;text/css;llb;applicati​on/x-labview-llb;vi;application/x-labview-vi;doc;a​pplication/msword;dot;application/msword;bin;appli​cation/octet-stream;exe;application/octet-stream;r​tf;application/rtf;pdf;application/pdf;ai;applicat​ion/postscript;eps;application/postscript;ps;appli​cation/postscript;csh;application/x-csh;gtar;appli​cation/x-gtar;gz;application/x-gz;sh;application/x​-sh;tar;application/x-tar;zip;application/zip;hqx;​application/mac-binhex40;ua;audio/basic;wav;audio/​wav;tif;image/tiff;tiff;image/tiff;xbm;image/x-xbi​tmap;rtx;text/richtext;qt;video/quicktime;mov;vide​o/quicktime;avi;video/x-msvideo;movie;video/x-sgi-​movie;aif;audio/aif;aifc;audio/aif;aiff;audio/aif;​aim;application/x-aim;dif;video/x-dv;div;video/x-d​v;js;application/x-javascript;pntg;image/x-macpain​t;xlb;application/vnd.ms-excel;xls;application/vnd​.ms-excel;ppa;application/vnd.ms-powerpoint;ppt;ap​plication/vnd.ms-powerpoint;pps;application/vnd.ms​-powerpoint;pot;application/vnd.ms-powerpoint;pwz;​application/vnd.ms-powerpoint;mid;audio/mid;midi;a​udio/mid;enc;video/mpeg;m1v;video/mpeg;mp2;video/m​peg;mpa;video/mpeg;mpe;video/mpeg;mpeg;video/mpeg;​mpg;video/mpeg;psd;image/x-photoshop;bmp;image/bmp​;pic;image/pic;ra;audio/vnd.rn-realaudio;rf;image/​vnd.rf-realflash;rm;application/vnd.rn-realmedia;r​p;image/vnd.rn-realpix;ram;audio/x-pn-realaudio;rm​m;audio/x-pn-realaudio;rnx;application/vnd.rn-real​player;rt;text/vnd.rn-realtext;rv;video/vnd.rn-rea​lvideo;smi;application/smil;ssm;application/stream​ingmedia;sithqx;application/mac-binhex40;sit;appli​cation/x-stuffit"
    WebServer.Port=80  [### or 8000]
    WebServer.Enabled=True
    WebServer.RootPath=C:\Program Files\National Instruments\LabVIEW 8.5\www
    WebServer.TcpAccess="c+*"
    WebServer.ViAccess="+*"
     [hints welcome here]. That is, I'm at the moment unable to use even my workaround 1 above.
    Enrico

  • I cannot install creative cloud after running the cleanup tool can any one help

    I cannot install creative cloud after running the cleanup tool can any one help?

    Hi len@iostudios,
    Please follow the link https://helpx.adobe.com/download-install.html to install creative cloud.
    Incase you have any issue
    Please let us know with the exact error or attach the screenshot if possible.
    Regards

  • RW_SERVER_JOB_QUEUE  table empty after running the report in 11g

    Hello,
    I set up Job StatusRepository in our environment ( Fusion Middleware 11.1.1.4 Win 2008 x32) as explained in Oracle Support note "How to Setup jobStatusRepository Feature in Reports 11g? [ID 858200.1]"
    The table RW_SERVER_JOB_QUEUE is always empty after running the report.
    I have checked another note "RW_SERVER_JOB_QUEUE table is empty [ID 1200613.1]" but the user who is running the report is the same as the user who " the user name where you run $ORACLE_HOME\reports\admin\sql\rw_server.sql script" so there is no grant problem to write to this table.
    Here is the excerpt of rwserver.conf file:
    <demo:jobStatusRepository class="oracle.reports.server.JobRepositoryDB">
    <demo:property value="csf:reports:repo" name="dbpassword"/>
    <demo:property value="blvdev" name="dbconn"/>
    <demo:property value="pdmain" name="dbuser"/>
    </demo:jobStatusRepository>
    I n log file there is an error:
    Apr 11, 2012 10:29:13 AM oracle.security.jps.internal.credstore.ssp.CsfWalletManager openWallet
    WARNING: Opening of wallet based credential store failed. Reason java.io.IOException: PKI-02002: Unable to open the wallet. Check password.
    Have anybody had the same issue in 11g?
    Thanks,
    Alex

    Here is the solution I found and I would like to share if anybody is interested :
    Check the following Oracle Support Notes:
    ALERT - After Applying Patchset 11.1.1.4, Fusion Middleware Control Inserts "demo:" Tags in Conf Files of Reports Server- ENVID Section Stops Working [ID 1298701.1]
         After applying patchset 11.1.1.4 to Reports Server, any configuration changes through Fusion Middleware Control inserts "demo:" tags in the beginning of each line in conf file of Report Server.
         The behaviour is described in the following bug :
         Bug:11784251 MBEAN BROWSER ADDS A DEMO TAG IN RWSERVER.CONF AT EACH LINE
    So you I removed all demo tags in rwserver.conf
    <jobStatusRepository class="oracle.reports.server.JobRepositoryDB">
    <property value="csf:reports:jobrepo" name="dbpassword"/>
    <property value="repteam.us.oracle.com" name="dbconn"/>
    <property value="jobrep11g" name="dbuser"/>
    </jobStatusRepository>
    Regarding : PKI-02002 error:
    Error PKI-02002: Unable to open the wallet. Check password When Starting a Reports Server [ID 1316651.1]
    Temporary file cannot be created in temporary directory.
    After checking the wallet I simply changed the following lines
         <variable id="TEMP" value="C:\Users\oracle\AppData\Local\Temp\2"/>
         <variable id="TMP" value="C:\Users\oracle\AppData\Local\Temp\2"/>
    to
         <variable id="TEMP" value="C:\TEMP"/>
         <variable id="TMP" value="C:\TEMP"/>
    because the folder C:\Users\oracle\AppData\Local\Temp\2 was not created.
    Regards,
    Alex
    Edited by: user12019587 on 11-Apr-2012 2:50 PM

  • Got an exception after run the import script in the command prompt

    Hi,
    I got an exception after running the import script in the command prompt.
    import script run successfully in the command prompt with apps user.
    But when i am opening the page in the front end oracle applications, i got the below exception.
    JBO-30003: The application pool (cph-oadb-tst22.dk.flsmidth.netTST221543flsm.oracle.apps.po.per.server.FlsmrootAM) failed to checkout an application module due to the following exception:
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: oracle.jbo.NoDefException, msg=JBO-25002: Definition flsm.oracle.apps.po.per.server.FlsmrootAM of type ApplicationModule not found
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:2002)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453)
         at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:233)
         at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.useApplicationModule(OAHttpSessionCookieImpl.java:508)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:208)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1297)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:543)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:431)
         at OA.jspService(_OA.java:212)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
         at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)
         at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
         at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:395)
         at RF.jspService(_RF.java:225)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:735)
    ## Detail 0 ##
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.NoDefException, msg=JBO-25002: Definition flsm.oracle.apps.po.per.server.FlsmrootAM of type ApplicationModule not found
         at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:545)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2094)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1961)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453)
         at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:233)
         at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.useApplicationModule(OAHttpSessionCookieImpl.java:508)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:208)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1297)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:543)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:431)
         at OA.jspService(_OA.java:212)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
         at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)
         at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
         at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:395)
         at RF.jspService(_RF.java:225)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:735)
    ## Detail 0 ##
    oracle.jbo.NoDefException: JBO-25002: Definition flsm.oracle.apps.po.per.server.FlsmrootAM of type ApplicationModule not found
         at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:441)
         at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:358)
         at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:340)
         at oracle.jbo.server.MetaObjectManager.findMetaObject(MetaObjectManager.java:700)
         at oracle.jbo.server.ApplicationModuleDefImpl.findDefObject(ApplicationModuleDefImpl.java:232)
         at oracle.jbo.server.ApplicationModuleImpl.createRootApplicationModule(ApplicationModuleImpl.java:401)
         at oracle.jbo.server.ApplicationModuleHomeImpl.create(ApplicationModuleHomeImpl.java:91)
         at oracle.jbo.common.ampool.DefaultConnectionStrategy.createApplicationModule(DefaultConnectionStrategy.java:139)
         at oracle.jbo.common.ampool.DefaultConnectionStrategy.createApplicationModule(DefaultConnectionStrategy.java:80)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.instantiateResource(ApplicationPoolImpl.java:2468)
         at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:536)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2094)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1961)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453)
         at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:233)
         at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.useApplicationModule(OAHttpSessionCookieImpl.java:508)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:208)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1297)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:543)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:431)
         at OA.jspService(_OA.java:212)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
         at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)
         at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
         at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:395)
         at RF.jspService(_RF.java:225)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:735)
    JBO-30003: The application pool (cph-oadb-tst22.dk.flsmidth.netTST221543flsm.oracle.apps.po.per.server.FlsmrootAM) failed to checkout an application module due to the following exception:
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: oracle.jbo.NoDefException, msg=JBO-25002: Definition flsm.oracle.apps.po.per.server.FlsmrootAM of type ApplicationModule not found
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:2002)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453)
         at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:233)
         at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.useApplicationModule(OAHttpSessionCookieImpl.java:508)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:208)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1297)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:543)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:431)
         at OA.jspService(_OA.java:212)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
         at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)
         at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
         at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:395)
         at RF.jspService(_RF.java:225)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:735)
    ## Detail 0 ##
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.NoDefException, msg=JBO-25002: Definition flsm.oracle.apps.po.per.server.FlsmrootAM of type ApplicationModule not found
         at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:545)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2094)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1961)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453)
         at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:233)
         at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.useApplicationModule(OAHttpSessionCookieImpl.java:508)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:208)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1297)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:543)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:431)
         at OA.jspService(_OA.java:212)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
         at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)
         at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
         at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:395)
         at RF.jspService(_RF.java:225)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:735)
    could yopu please,help me on this.
    Regards,
    Muthu

    Hi Kali,
    After import completed successfully,i have bounce the apache server by connecting functional administrator and clear the cache(it si fine or not),
    it is working fine,actually i never do this,i directly bounce the apache.
    i am also got the same exception.
    JBO-30003: The application pool (cph-oadb-tst22.dk.flsmidth.netTST221543flsm.oracle.apps.po.per.server.FlsmrootAM) failed to checkout an application module due to the following exception:
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: oracle.jbo.NoDefException, msg=JBO-25002: Definition flsm.oracle.apps.po.per.server.FlsmrootAM of type ApplicationModule not found
    please,can you help me is there any mistakes,i checked all my l class files in the server top,it is ok all are correct.
    but why i got this error,i didn,t find it.
    Regards,
    Muthu

  • I cannot open iPhoto and the following message appears.

    I cannot open iPhoto and the following message appears. Why is this happening and, most importantly, what can I do. Thanks.
    Process:         iPhoto [609]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.4.3 (9.4.3)
    Build Info:      iPhotoProject-720091000000000~1
    App Item ID:     408981381
    App External ID: 15017489
    Code Type:       X86 (Native)
    Parent Process:  launchd [194]
    User ID:         501
    Date/Time:       2013-06-07 21:37:52.521 +0700
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:          78070 sec
    Crashes Since Last Report:           4
    Per-App Interval Since Last Report:  50 sec
    Per-App Crashes Since Last Report:   4
    Anonymous UUID:                      ECEB4715-02D1-34E7-F877-665AA15F8B30
    Crashed Thread:  6  Dispatch queue: com.apple.root.default-priority
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[NSPathStore2 substringWithRange:]: Range or index out of bounds'
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x92610e8b __raiseError + 219
    1   libobjc.A.dylib                     0x962fe52e objc_exception_throw + 230
    2   CoreFoundation                      0x9257060b +[NSException raise:format:] + 139
    3   Foundation                          0x95800382 -[NSString substringWithRange:] + 116
    4   RedRock                             0x027810b0 +[RKFileNamingPolicy fileSafeName:] + 149
    5   RedRock                             0x029658a3 -[RKVersion(Imaging) proxyWritePath:] + 473
    6   RedRock                             0x02966137 -[RKVersion(Imaging) recordOldThumbnailPreviewPathIfPresent] + 123
    7   iPhoto                              0x003d246f iPhoto + 3224687
    8   iPhoto                              0x002f354b iPhoto + 2311499
    9   iPhoto                              0x002f38dd iPhoto + 2312413
    10  Foundation                          0x95848f27 -[NSBlockOperation main] + 188
    11  Foundation                          0x9581c259 -[__NSOperationInternal start] + 740
    12  Foundation                          0x9581bf64 -[NSOperation start] + 67
    13  Foundation                          0x95824039 __block_global_6 + 135
    14  libdispatch.dylib                   0x96975f8f _dispatch_call_block_and_release + 15
    15  libdispatch.dylib                   0x96971c82 _dispatch_client_callout + 46
    16  libdispatch.dylib                   0x96972f02 _dispatch_worker_thread2 + 285
    17  libsystem_c.dylib                   0x971dbe72 _pthread_wqthread + 441
    18  libsystem_c.dylib                   0x971c3d2a start_wqthread + 30
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x96c5d7d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x96c5ccb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x92506f79 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x9250c95f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x9250c01a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x9250be8b CFRunLoopRunInMode + 123
    6   com.apple.HIToolbox                     0x9777af5a RunCurrentEventLoopInMode + 242
    7   com.apple.HIToolbox                     0x9777acc9 ReceiveNextEventCommon + 374
    8   com.apple.HIToolbox                     0x9777ab44 BlockUntilNextEventMatchingListInMode + 88
    9   com.apple.AppKit                        0x92ae893a _DPSNextEvent + 724
    10  com.apple.AppKit                        0x92ae816c -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    11  com.apple.AppKit                        0x92ade5cc -[NSApplication run] + 855
    12  com.apple.AppKit                        0x92a815f6 NSApplicationMain + 1053
    13  com.apple.iPhoto                        0x000cf0b9 0xbf000 + 65721
    14  com.apple.iPhoto                        0x000ce705 0xbf000 + 63237
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x96c609ae kevent + 10
    1   libdispatch.dylib                       0x96974c71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x969747a9 _dispatch_mgr_thread + 53
    Thread 2:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x96c5d7d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x96c5ccb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x92506f79 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x9250c95f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x9250c01a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x9250be8b CFRunLoopRunInMode + 123
    6   com.apple.CFNetwork                     0x975952a7 CFURLConnectionSendSynchronousRequest + 444
    7   com.apple.Foundation                    0x957a3e62 +[NSURLConnection sendSynchronousRequest:returningResponse:error:] + 332
    8   com.apple.iPhoto.FacebookPublisher          0x13bcd41f 0x13bb7000 + 91167
    9   com.apple.iPhoto.FacebookPublisher          0x13bbcd1c 0x13bb7000 + 23836
    10  com.apple.iphoto.AccountConfigurationPlugin          0x0142e994 -[AccountConfigurationProfileInformationDownloadOperation main] + 234
    11  com.apple.Foundation                    0x9581c259 -[__NSOperationInternal start] + 740
    12  com.apple.Foundation                    0x9581bf64 -[NSOperation start] + 67
    13  com.apple.Foundation                    0x95824039 __block_global_6 + 135
    14  libdispatch.dylib                       0x96975f8f _dispatch_call_block_and_release + 15
    15  libdispatch.dylib                       0x96971c82 _dispatch_client_callout + 46
    16  libdispatch.dylib                       0x96972f02 _dispatch_worker_thread2 + 285
    17  libsystem_c.dylib                       0x971dbe72 _pthread_wqthread + 441
    18  libsystem_c.dylib                       0x971c3d2a start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x96c600ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x971dc0ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x971dbe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x971c3d2a start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x96c600ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x971dc0ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x971dbe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x971c3d2a start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib                  0x96c600ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x971dc0ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x971dbe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x971c3d2a start_wqthread + 30
    Thread 6 Crashed:: Dispatch queue: com.apple.root.default-priority
    0   com.apple.CoreFoundation                0x926116a7 ___TERMINATING_DUE_TO_UNCAUGHT_EXCEPTION___ + 7
    1   libobjc.A.dylib                         0x962fe52e objc_exception_throw + 230
    2   com.apple.iPhoto                        0x003d2776 0xbf000 + 3225462
    3   com.apple.iPhoto                        0x002f354b 0xbf000 + 2311499
    4   com.apple.iPhoto                        0x002f38dd 0xbf000 + 2312413
    5   com.apple.Foundation                    0x95848f27 -[NSBlockOperation main] + 188
    6   com.apple.Foundation                    0x9581c259 -[__NSOperationInternal start] + 740
    7   com.apple.Foundation                    0x9581bf64 -[NSOperation start] + 67
    8   com.apple.Foundation                    0x95824039 __block_global_6 + 135
    9   libdispatch.dylib                       0x96975f8f _dispatch_call_block_and_release + 15
    10  libdispatch.dylib                       0x96971c82 _dispatch_client_callout + 46
    11  libdispatch.dylib                       0x96972f02 _dispatch_worker_thread2 + 285
    12  libsystem_c.dylib                       0x971dbe72 _pthread_wqthread + 441
    13  libsystem_c.dylib                       0x971c3d2a start_wqthread + 30
    Thread 7:
    0   libsystem_kernel.dylib                  0x96c5f8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x971de2e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x971de572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x95851636 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x9585145d -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x95856990 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x02072a42 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x02071b19 -[XTThread run:] + 412
    8   com.apple.Foundation                    0x95823448 -[NSThread main] + 45
    9   com.apple.Foundation                    0x958233cb __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x971d95b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x971c3d4e thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x96c5f8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x971de2e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x971de572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x95851636 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x9585145d -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x95856990 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x02072a42 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x02071b19 -[XTThread run:] + 412
    8   com.apple.Foundation                    0x95823448 -[NSThread main] + 45
    9   com.apple.Foundation                    0x958233cb __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x971d95b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x971c3d4e thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x96c5f8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x971de2e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x971de572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x95851636 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x9585145d -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x95856990 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x02072a42 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x02071b19 -[XTThread run:] + 412
    8   com.apple.Foundation                    0x95823448 -[NSThread main] + 45
    9   com.apple.Foundation                    0x958233cb __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x971d95b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x971c3d4e thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x96c5f8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x971de2e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x971de572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x95851636 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x9585145d -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x95856990 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x02072a42 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x02071b19 -[XTThread run:] + 412
    8   com.apple.Foundation                    0x95823448 -[NSThread main] + 45
    9   com.apple.Foundation                    0x958233cb __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x971d95b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x971c3d4e thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x96c5f8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x971de2e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x971de572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x95851636 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x9585145d -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x95856990 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x02072a42 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x02071b19 -[XTThread run:] + 412
    8   com.apple.Foundation                    0x95823448 -[NSThread main] + 45
    9   com.apple.Foundation                    0x958233cb __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x971d95b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x971c3d4e thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x96c5f8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x971de2e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x971de572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x95851636 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x9585145d -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x95856990 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x02072a42 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x02071b19 -[XTThread run:] + 412
    8   com.apple.Foundation                    0x95823448 -[NSThread main] + 45
    9   com.apple.Foundation                    0x958233cb __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x971d95b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x971c3d4e thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x96c5f8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x971de2e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x971de572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x95851636 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x9585145d -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x95856990 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x02072a42 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x02071b19 -[XTThread run:] + 412
    8   com.apple.Foundation                    0x95823448 -[NSThread main] + 45
    9   com.apple.Foundation                    0x958233cb __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x971d95b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x971c3d4e thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x96c5f8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x971de2e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x971de572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x95851636 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x9585145d -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x95856990 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.RedRock                       0x026cd2bf -[RKAsyncImageRenderer _backgroundRenderThread:] + 173
    7   libobjc.A.dylib                         0x9630b586 -[NSObject performSelector:] + 62
    8   com.apple.proxtcore                     0x0207bab2 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    9   libobjc.A.dylib                         0x9630b5d3 -[NSObject performSelector:withObject:] + 70
    10  com.apple.proxtcore                     0x02073e59 -[XTSubscription postMessage:] + 191
    11  com.apple.proxtcore                     0x0207371f -[XTDistributor distributeMessage:] + 681
    12  com.apple.proxtcore                     0x02072f42 -[XTThread handleMessage:] + 515
    13  com.apple.proxtcore                     0x02071b2f -[XTThread run:] + 434
    14  com.apple.Foundation                    0x95823448 -[NSThread main] + 45
    15  com.apple.Foundation                    0x958233cb __NSThread__main__ + 1396
    16  libsystem_c.dylib                       0x971d95b7 _pthread_start + 344
    17  libsystem_c.dylib                       0x971c3d4e thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib                  0x96c600ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x971dc0ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x971dbe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x971c3d2a start_wqthread + 30
    Thread 16:
    0   libsystem_kernel.dylib                  0x96c600ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x971dc0ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x971dbe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x971c3d2a start_wqthread + 30
    Thread 17:
    0   libsystem_kernel.dylib                  0x96c600ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x971dc0ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x971dbe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x971c3d2a start_wqthread + 30
    Thread 18:
    0   libsystem_kernel.dylib                  0x96c600ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x971dc0ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x971dbe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x971c3d2a start_wqthread + 30
    Thread 19:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x96c5d7d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x96c5ccb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x92506f79 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x9250c95f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x9250c01a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x9250be8b CFRunLoopRunInMode + 123
    6   com.apple.Foundation                    0x957bf37a +[NSURLConnection(Loader) _resourceLoadLoop:] + 395
    7   com.apple.Foundation                    0x95823448 -[NSThread main] + 45
    8   com.apple.Foundation                    0x958233cb __NSThread__main__ + 1396
    9   libsystem_c.dylib                       0x971d95b7 _pthread_start + 344
    10  libsystem_c.dylib                       0x971c3d4e thread_start + 34
    Thread 20:
    0   libsystem_kernel.dylib                  0x96c600ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x971dc0ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x971dbe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x971c3d2a start_wqthread + 30
    Thread 21:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x96c5fc72 __semwait_signal + 10
    1   libsystem_c.dylib                       0x97263a55 nanosleep$UNIX2003 + 189
    2   com.apple.Foundation                    0x95824935 +[NSThread sleepForTimeInterval:] + 151
    3   com.apple.iPhoto                        0x0068dc94 0xbf000 + 6089876
    4   com.apple.CoreFoundation                0x925627bd __invoking___ + 29
    5   com.apple.CoreFoundation                0x925626f7 -[NSInvocation invoke] + 279
    6   com.apple.Foundation                    0x958249ad -[NSInvocationOperation main] + 81
    7   com.apple.Foundation                    0x9581c259 -[__NSOperationInternal start] + 740
    8   com.apple.Foundation                    0x9581bf64 -[NSOperation start] + 67
    9   com.apple.Foundation                    0x95824039 __block_global_6 + 135
    10  libdispatch.dylib                       0x96975f8f _dispatch_call_block_and_release + 15
    11  libdispatch.dylib                       0x96971c82 _dispatch_client_callout + 46
    12  libdispatch.dylib                       0x96972f02 _dispatch_worker_thread2 + 285
    13  libsystem_c.dylib                       0x971dbe72 _pthread_wqthread + 441
    14  libsystem_c.dylib                       0x971c3d2a start_wqthread + 30
    Thread 22:
    0   libsystem_kernel.dylib                  0x96c600ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x971dc0ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x971dbe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x971c3d2a start_wqthread + 30
    Thread 23:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x96c5fbe6 __select + 10
    1   com.apple.CoreFoundation                0x92550650 __CFSocketManager + 1632
    2   libsystem_c.dylib                       0x971d95b7 _pthread_start + 344
    3   libsystem_c.dylib                       0x971c3d4e thread_start + 34
    Thread 24:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x96c5fc72 __semwait_signal + 10
    1   libsystem_c.dylib                       0x97263a55 nanosleep$UNIX2003 + 189
    2   com.apple.Foundation                    0x95824935 +[NSThread sleepForTimeInterval:] + 151
    3   com.apple.iPhoto                        0x0068dc94 0xbf000 + 6089876
    4   com.apple.CoreFoundation                0x925627bd __invoking___ + 29
    5   com.apple.CoreFoundation                0x925626f7 -[NSInvocation invoke] + 279
    6   com.apple.Foundation                    0x958249ad -[NSInvocationOperation main] + 81
    7   com.apple.Foundation                    0x9581c259 -[__NSOperationInternal start] + 740
    8   com.apple.Foundation                    0x9581bf64 -[NSOperation start] + 67
    9   com.apple.Foundation                    0x95824039 __block_global_6 + 135
    10  libdispatch.dylib                       0x96975f8f _dispatch_call_block_and_release + 15
    11  libdispatch.dylib                       0x96971c82 _dispatch_client_callout + 46
    12  libdispatch.dylib                       0x96972f02 _dispatch_worker_thread2 + 285
    13  libsystem_c.dylib                       0x971dbe72 _pthread_wqthread + 441
    14  libsystem_c.dylib                       0x971c3d2a start_wqthread + 30
    Thread 25:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x96c5fc72 __semwait_signal + 10
    1   libsystem_c.dylib                       0x97263a55 nanosleep$UNIX2003 + 189
    2   com.apple.Foundation                    0x95824935 +[NSThread sleepForTimeInterval:] + 151
    3   com.apple.iPhoto                        0x0068dc94 0xbf000 + 6089876
    4   com.apple.CoreFoundation                0x925627bd __invoking___ + 29
    5   com.apple.CoreFoundation                0x925626f7 -[NSInvocation invoke] + 279
    6   com.apple.Foundation                    0x958249ad -[NSInvocationOperation main] + 81
    7   com.apple.Foundation                    0x9581c259 -[__NSOperationInternal start] + 740
    8   com.apple.Foundation                    0x9581bf64 -[NSOperation start] + 67
    9   com.apple.Foundation                    0x95824039 __block_global_6 + 135
    10  libdispatch.dylib                       0x96975f8f _dispatch_call_block_and_release + 15
    11  libdispatch.dylib                       0x96971c82 _dispatch_client_callout + 46
    12  libdispatch.dylib                       0x96972f02 _dispatch_worker_thread2 + 285
    13  libsystem_c.dylib                       0x971dbe72 _pthread_wqthread + 441
    14  libsystem_c.dylib                       0x971c3d2a start_wqthread + 30
    Thread 26:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x96c5fc72 __semwait_signal + 10
    1   libsystem_c.dylib                       0x97263a55 nanosleep$UNIX2003 + 189
    2   com.apple.Foundation                    0x95824935 +[NSThread sleepForTimeInterval:] + 151
    3   com.apple.iPhoto                        0x0068dc94 0xbf000 + 6089876
    4   com.apple.CoreFoundation                0x925627bd __invoking___ + 29
    5   com.apple.CoreFoundation                0x925626f7 -[NSInvocation invoke] + 279
    6   com.apple.Foundation                    0x958249ad -[NSInvocationOperation main] + 81
    7   com.apple.Foundation                    0x9581c259 -[__NSOperationInternal start] + 740
    8   com.apple.Foundation                    0x9581bf64 -[NSOperation start] + 67
    9   com.apple.Foundation                    0x95824039 __block_global_6 + 135
    10  libdispatch.dylib                       0x96975f8f _dispatch_call_block_and_release + 15
    11  libdispatch.dylib                       0x96971c82 _dispatch_client_callout + 46
    12  libdispatch.dylib                       0x96972f02 _dispatch_worker_thread2 + 285
    13  libsystem_c.dylib                       0x971dbe72 _pthread_wqthread + 441
    14  libsystem_c.dylib                       0x971c3d2a start_wqthread + 30
    Thread 27:
    0   libsystem_kernel.dylib                  0x96c600ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x971dc0ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x971dbe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x971c3d2a start_wqthread + 30
    Thread 28:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x96c5f8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x971de280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x97264095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreVideo                     0x982a715a CVDisplayLink::runIOThread() + 912
    4   com.apple.CoreVideo                     0x982a6db2 startIOThread(void*) + 160
    5   libsystem_c.dylib                       0x971d95b7 _pthread_start + 344
    6   libsystem_c.dylib                       0x971c3d4e thread_start + 34
    Thread 6 crashed with X86 Thread State (32-bit):
      eax: 0x00000001  ebx: 0xb030abe0  ecx: 0x00000000  edx: 0x00000000
      edi: 0x962fe459  esi: 0x842702f0  ebp: 0xb030a3a8  esp: 0xb030a3a0
       ss: 0x00000023  efl: 0x00000286  eip: 0x926116a7   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
      cr2: 0x84271000
    Logical CPU: 2
    Binary Images:
       0xbf000 -   0xdb4ff3  com.apple.iPhoto (9.4.3 - 9.4.3) <74A545E6-1EB2-315F-82FA-3344B599F490> /Applications/iPhoto.app/Contents/MacOS/iPhoto
      0xf49000 -  0x1023ffc  org.python.python (2.6.7 - 2.6.7) <FA305A16-14DB-3062-BB61-3944ED836202> /System/Library/Frameworks/Python.framework/Versions/2.6/Python
    0x106d000 -  0x1075ffb  com.apple.PhotoFoundation (1.0 - 20.12) <6DEFC232-B843-3848-908E-25AF929E9026> /Applications/iPhoto.app/Contents/Frameworks/PhotoFoundation.framework/Versions /A/PhotoFoundation
    0x10e3000 -  0x12c0ffb  com.apple.geode (1.5.3 - 280.22) <887FF540-8A00-3AED-9C17-C99856E7A6F4> /Applications/iPhoto.app/Contents/Frameworks/Geode.framework/Versions/A/Geode
    0x134f000 -  0x1354ff7  com.apple.iLifePhotoStreamConfiguration (3.4 - 2.5) <6B675B59-ED97-35F8-89CB-79F387A05EA5> /Applications/iPhoto.app/Contents/Frameworks/iLifePhotoStreamConfiguration.fram ework/Versions/A/iLifePhotoStreamConfiguration
    0x135c000 -  0x138bff7  com.apple.iLifeAssetManagement (2.7 - 45.19) <C30AF8E5-51DB-3912-B58C-41988B396209> /Applications/iPhoto.app/Contents/Frameworks/iLifeAssetManagement.framework/Ver sions/A/iLifeAssetManagement
    0x13af000 -  0x13d6ff3  com.apple.iPhoto.Tessera (1.1 - 90.10) <143B4B05-6F39-3C83-A927-E4B5A53D2344> /Applications/iPhoto.app/Contents/Frameworks/Tessera.framework/Versions/A/Tesse ra
    0x13e9000 -  0x140dffb  com.apple.iPhoto.Tellus (1.3 - 90.10) <88853EBB-0C48-3A68-91B7-ED078C953CBD> /Applications/iPhoto.app/Contents/Frameworks/Tellus.framework/Versions/A/Tellus
    0x1426000 -  0x1431fff  com.apple.iphoto.AccountConfigurationPlugin (1.2 - 1.2) <39466D2B-2583-3407-96F2-69ADCF11ECB9> /Applications/iPhoto.app/Contents/Frameworks/AccountConfigurationPlugin.framewo rk/Versions/A/AccountConfigurationPlugin
    0x143f000 -  0x1454ffb  com.apple.iLifeFaceRecognition (1.0 - 30.11) <5ADCA81F-5D7B-340F-9F44-B261ED19BBB2> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/iLifeFaceRecognition
    0x1462000 -  0x148bff3  com.apple.DiscRecordingUI (7.0 - 7000.2.4) <A766D0C9-883D-3422-A61B-D7F9CC68D5A0> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x14a5000 -  0x14a7fff  com.apple.ExceptionHandling (1.5 - 10) <435C80BD-F463-360B-86CA-5E001CACD421> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x14ad000 -  0x14b8ff7  com.apple.UpgradeChecker (9.2 - 9.2) <39176044-B0CF-3C25-AF8D-A2BD8540A025> /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0x14c1000 -  0x1541fff  com.apple.iLifeMediaBrowser (2.7.4 - 546.7) <130581CE-0699-3524-B487-726353FDDF96> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x1585000 -  0x16a4ffb  com.apple.WebKit (8536 - 8536.30.1) <4A5E9136-681F-3AB1-AD69-B59F2B9126E7> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x1756000 -  0x176bff7  com.apple.iChat.InstantMessage (7.0.1 - 3306) <E2512D5F-4151-3ED4-BB9A-748B0B5F21BE> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x1779000 -  0x1b12ff3  com.apple.iLifeSlideshow (3.1 - 1151.4) <BBC17D76-255B-3135-92A6-886AD68BEB3F> /Applications/iPhoto.app/Contents/Frameworks/iLifeSlideshow.framework/Versions/ A/iLifeSlideshow
    0x1c0e000 -  0x1ea1ffb  com.apple.iLifePageLayout (1.3 - 210.38) <12AF048A-AAEE-39D3-B25C-383E9C5FB855> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/iLifePageLayout
    0x1f7a000 -  0x2011ff7  com.apple.MobileMe (13 - 1.0.4) <38D8679A-1862-373C-BF4F-EB47200EDF08> /Applications/iPhoto.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
    0x206e000 -  0x20d6ff3  com.apple.proxtcore (1.4.1 - 270.13) <E71FA444-D69B-3395-8F99-0DA367E6CF22> /Applications/iPhoto.app/Contents/Frameworks/ProXTCore.framework/Versions/A/Pro XTCore
    0x2119000 -  0x2218ff3  com.apple.iLifeSQLAccess (1.7.1 - 70.30) <081DDD36-ADA7-3329-8265-BE6AD5AB4E5F> /Applications/iPhoto.app/Contents/Frameworks/iLifeSQLAccess.framework/Versions/ A/iLifeSQLAccess
    0x2262000 -  0x228dffb  com.apple.ProUtils (1.1 - 220.17) <3D8B203C-20D3-30FA-9A22-C88C11B60C41> /Applications/iPhoto.app/Contents/Frameworks/ProUtils.framework/Versions/A/ProU tils
    0x22a7000 -  0x2312fff  com.apple.iLifeKit (1.3.1 - 180.8) <C193C15D-7EA7-30CA-82ED-189192298D2A> /Applications/iPhoto.app/Contents/Frameworks/iLifeKit.framework/Versions/A/iLif eKit
    0x2357000 -  0x2590ff3  com.apple.prokit (7.3.2 - 1944.10) <5276C99B-E10E-3B92-AB06-1B546A6291D1> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x26aa000 -  0x2c0cfff  com.apple.RedRock (1.9.4 - 321.1) <7D29E84D-9336-3912-BA5C-EA8125553945> /Applications/iPhoto.app/Contents/Frameworks/RedRock.framework/Versions/A/RedRo ck
    0x2e27000 -  0x2e4bfff  com.apple.AOSAccounts (1.1.2 - 1.1.95) <6C931BC9-7C14-3F67-86F5-EBE2916E0670> /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/AOSAccounts
    0x2e66000 -  0x2e66fff  com.apple.SafariServices.framework (8536 - 8536.30.1) <3078D35C-62DE-343E-AFE9-5418230836B9> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer vices
    0x2e6d000 -  0x2e74ff7  com.apple.AOSNotification (1.7.0 - 636.3) <520524D9-B14F-3DED-9281-8FAFEFFBA863> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x2e80000 -  0x2e80ffc  com.apple.SafariDAVNotifier (1.1.1 - 1) <4173B9EB-A1C5-31BD-955B-E9D3CAB862C4> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
    0x2e87000 -  0x30f7ff7  com.apple.CalendarStore (6.0 - 1252) <C592854F-17BC-380A-B73B-3510A36B0325> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x31fd000 -  0x3259ffb  com.apple.corelocation (1239.40 - 1239.40) <DF504BBD-A9D5-3AF0-AAF7-F7C06753A13C> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x3288000 -  0x32baff3  com.apple.GeoServices (1.0 - 1) <2E4033FA-18BD-3E73-B00E-CBFEE0ACCB6A> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x32ce000 -  0x32d7fff  com.apple.ProtocolBuffer (2 - 104) <BFA598AA-2E77-3578-B079-2C89796811B3> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x32e1000 -  0x32e9ffb  com.apple.AppSandbox (2.1 - 1) <00FF2E6E-B400-37A5-A9DC-4FEFF854E959> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x32f3000 -  0x3337ff3  com.apple.CalDAV (6.0 - 112.6) <EF9166E6-A80B-3C8D-BD22-F1555DB0649D> /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV
    0x3369000 -  0x3372ff3  com.apple.CalendarAgentLink (1.0 - 38) <73072AA3-0AD8-3CA7-A057-A6FBBD9DA82A> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink
    0x3382000 -  0x3393fff  com.apple.CalendarFoundation (1.0 - 29) <D8714276-78B5-35A5-8C34-694E51AD9EB6> /System/Library/PrivateFrameworks/CalendarFoundation.framework/Versions/A/Calen darFoundation
    0x33a5000 -  0x3407fff  com.apple.coredav (1.0.1 - 179.7) <FE9A6204-03DA-3183-A793-3FA8EEBFA1C4> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
    0x3443000 -  0x3490ffb  com.apple.ExchangeWebServices (3.0.1 - 158) <3D65B6B4-6B1D-3338-8D12-369B842A579B> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0x34e5000 -  0x3533fff  com.apple.iCalendar (6.0 - 126.5) <D682D4AA-B640-356E-A141-845A64295A02> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x355e000 -  0x356bffb  com.apple.KerberosHelper (4.0 - 1.0) <6CB4B091-3415-301A-87B2-D9D374D0FC17> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x3575000 -  0x36c1ff7  com.apple.syncservices (7.1 - 713.1) <0A9790C9-1D95-3B46-84FA-43848FCB476E> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x3740000 -  0x37adffb  com.apple.WhitePagesFramework (10.7.0 - 141.0) <6879CD26-8E35-315B-897C-D52B6EB741F6> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x37db000 -  0x37dbfff +cl_kernels (???) <069E4D36-6E04-400E-94C9-72194B2CAB86> cl_kernels
    0x37dd000 -  0x3804ffb  libsandbox.1.dylib (220.3) <F382A5D6-36C4-3DBD-AA6F-BD68BAAA103C> /usr/lib/libsandbox.1.dylib
    0x380d000 -  0x3820ff7  com.apple.AppContainer (2.1 - 1) <201D693C-63E6-3771-BAF8-946B49F1420A> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
    0x3831000 -  0x3835fff  com.apple.SecCodeWrapper (2.1 - 1) <AF713AD0-6A88-3F90-81F4-F3CB9F7B4624> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
    0x383e000 -  0x3842ffe  libMatch.1.dylib (17) <29090908-32A9-3087-B197-00128F5954CD> /usr/lib/libMatch.1.dylib
    0x3848000 -  0x384bffb  com.apple.LibraryRepair (1.0 - 1) <C6A079B1-1FD5-39FF-B141-E6C99ECBAA77> /System/Library/PrivateFrameworks/LibraryRepair.framework/Versions/A/LibraryRep air
    0x3854000 -  0x38aefff  com.apple.proapps.MIO (1.0.6 - 512) <599BE7F3-9169-33AF-8CCA-423CA4699E42> /Applications/iPhoto.app/Contents/Frameworks/MIO.framework/Versions/A/MIO
    0x38c7000 -  0x455cff3  com.apple.WebCore (8536 - 8536.30.2) <D644997F-5F1A-34B4-AF32-DD427E9043E2> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x4ce1000 -  0x4ce2fff +eOkaoCom.dylib (1) <2DE16B47-23E7-73DB-1297-C928E40DFC31> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoCom.dylib
    0x4ce7000 -  0x4d0cff2 +eOkaoPt.dylib (1) <831D49D0-43A0-21A0-2662-2207E3BE0FF6> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoPt.dylib
    0x4d15000 -  0x4d49fe7 +eOkaoDt.dylib (1) <5693A28E-8C94-0F5F-150E-3B17CF753F64> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoDt.dylib
    0x4d50000 -  0x4eb7fff +eOkaoFr.dylib (1) <E355FB47-C5EF-50CF-621A-9B17A50E2850> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoFr.dylib
    0x4ebe000 -  0x4f1afff  com.apple.NyxAudioAnalysis (12.4 - 12.4) <DC8444CC-FAAB-3DCA-A644-8712001A5F2E> /Library/Frameworks/NyxAudioAnalysis.framework/Versions/A/NyxAudioAnalysis
    0x4f31000 -  0x4f32ff5 +cl_kernels (???) <D19CE18C-8EEA-4495-8E0C-A04F9E8CC607> cl_kernels
    0x4f34000 -  0x504effb  com.apple.avfoundation (2.0 - 361.40) <BFC9959C-7F41-3D1B-B108-F4245E4D9311> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x50ed000 -  0x5125ff3  com.apple.CoreMediaIOServicesPrivate (52.0 - 3311.1) <1F651752-FD09-3CF5-BCCC-5C1366DDFACD> /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x5142000 -  0x5169ff7  com.apple.CoreMediaPrivate (20.0 - 20.0) <D963392A-4B4C-3B81-A873-E1C06C6829E6> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x517e000 -  0x51afff3  com.apple.FWAVCPrivate (52.47 - 47) <14C9A9D3-4065-3395-A8BC-C0535162017E> /System/Library/PrivateFrameworks/FWAVCPrivate.framework/Versions/A/FWAVCPrivat e
    0x51c6000 -  0x520effb  com.apple.CoreMediaIOServices (171.0 - 3244) <9563BB38-F23A-3FC6-855D-05487E700465> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x5231000 -  0x52d0ff7  com.apple.imcore (8.0 - 900) <84135788-E567-309E-AAFE-F27FA8FE3F15> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
    0x52f8000 -  0x534cff7  com.apple.imfoundation (8.0 - 900) <F4A3047B-9170-358C-A5F0-09CC0B20F093> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
    0x5378000 -  0x5380ff7  com.apple.marco (8.0 - 900) <C4323670-6B35-39A9-B84A-5E182D05E6A1> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
    0x5388000 -  0x53afff7  com.apple.ExpressCheckout (1.0 - 1.0) <B6F86CF1-D6EA-312E-9758-CAFA1654CC6F> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/Frameworks/ExpressCheckout.framework/Versions/A/ExpressCheckout
    0x53ca000 -  0x53f8ffb  com.apple.iLifeImageAnalysis (3.0 - 3) <93C42285-7982-3A15-ABDA-EDF416DF6B22> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/Frameworks/iLifeImageAnalysis.framework/Versions/A/iLifeImageAnalysis
    0x69c4000 -  0x69c5ffe  com.apple.AddressBook.LocalSourceBundle (2.1 - 1170) <ABD37289-2DF8-3F89-A208-C11BE80EA69D> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0xcf3e000 -  0xcf4bff3  com.apple.Librarian (1.1 - 1) <68F8F983-5F16-3BA5-BDA7-1A5451CC02BB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x12874000 - 0x12877ffe  com.apple.DirectoryServicesSource (2.1 - 1170) <69A0CC43-41DB-3D3F-9D97-8D4741C29823> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
    0x1289d000 - 0x12a31ffa  GLEngine (8.9.2) <73F967E8-16C2-3FB2-8C04-293EB038952D> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x12a68000 - 0x12be9fff  libGLProgrammability.dylib (8.9.2) <B7AFCCD1-7FA5-3071-9F11-5161FFA2076C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x12c1b000 - 0x12ee4fff  com.apple.AMDRadeonX3000GLDriver (1.8.18 - 1.0.8) <0F84A3D7-FF9A-3266-89D3-FFD84FC151EA> /System/Library/Extensions/AMDRadeonX3000GLDriver.bundle/Contents/MacOS/AMDRade onX3000GLDriver
    0x12f23000 - 0x12f27fff  com.apple.IOAccelerator (74.5.1 - 74.5.1) <CB7CDE62-DAEC-35AF-8ADB-3271AA2DF921> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelera tor
    0x12f2e000 - 0x12f38fff  libGPUSupportMercury.dylib (8.9.2) <302EC167-66A3-3E12-8416-F03F50CA96D9> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupportMercury.dylib
    0x1333f000 - 0x1336aff7  GLRendererFloat (8.9.2) <96FF25EA-1BC3-3FBA-85B6-08CC9F1D2077> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x13373000 - 0x1337bffd  libcldcpuengine.dylib (2.2.16) <0BE2D018-66CC-3F69-B8F1-7A81EEEE09F4> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0x13397000 - 0x1339cffe  com.apple.iphoto.accountconfig.Email (9.2 - 9.2) <EE015CC9-7D9B-387A-AD57-36033C906188> /Applications/iPhoto.app/Contents/PlugIns/Email.accountconfigplugin/Contents/Ma cOS/Email
    0x13821000 - 0x138b3fff  unorm8_bgra.dylib (2.2.16) <1298D118-0B14-3F3D-B2CA-348A1C67183E> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0x138c5000 - 0x13907fff  com.apple.facetimeservices (8.0 - 900) <30E06383-BF04-32AD-9A11-DDC08E1D58A9> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
    0x1391f000 - 0x13970ff7  com.apple.AddressBook.CardDAVPlugin (10.8 - 333) <A8099206-0C6D-3114-A908-F8992CA5CA88> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
    0x1398d000 - 0x1399cffd  com.apple.NSServerNotificationCenter (5.0 - 5.0) <15DBF5C3-6E2E-3ADA-B5B8-0825EC830658> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x13adb000 - 0x13ae2fff  com.apple.iPhoto.RSSPublisher (1.1 - 1.1) <20E24AC8-D589-3CAF-ACB0-800CD2747559> /Applications/iPhoto.app/Contents/PlugIns/RSSPublisher.publisher/Contents/MacOS /RSSPublisher
    0x13bb7000 - 0x13bdeff3  com.apple.iPhoto.FacebookPublisher (1.2 - 1.2) <602FC581-430F-3C31-BB8B-F16BC25407F5> /Applications/iPhoto.app/Contents/PlugIns/FacebookPublisher.publisher/Contents/ MacOS/FacebookPublisher
    0x15cd7000 - 0x15d95ff3  ColorSyncDeprecated.dylib (400) <35E3054C-5DF1-30D4-A368-C4FDB0992373> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x15f33000 - 0x15f52ffb  com.apple.iPhoto.FlickrPublisher (1.2 - 1.2) <59CD840A-81FA-31EC-B145-C86D5B3BB95C> /Applications/iPhoto.app/Contents/PlugIns/FlickrPublisher.publisher/Contents/Ma cOS/FlickrPublisher
    0x15f5c000 - 0x15f5ffff  com.apple.iphoto.accountconfig.Facebook (1.2 - 1.2) <8E384045-21E8-305C-A83B-EA307AE34BF6> /Applications/iPhoto.app/Contents/PlugIns/Facebook.accountconfigplugin/Contents /MacOS/Facebook
    0x15f65000 - 0x15f68fff  com.apple.iphoto.accountconfig.Flickr (1.1 - 1) <C1432242-CA83-3C06-BEE8-B80E8FBF1BA4> /Applications/iPhoto.app/Contents/PlugIns/Flickr.accountconfigplugin/Contents/M acOS/Flickr
    0x15f6e000 - 0x15f73ff8  com.apple.iphoto.accountconfig.MobileMe (1.1 - 1) <5122BF37-F638-3A37-B0E7-5C042DC3B8A2> /Applications/iPhoto.app/Contents/PlugIns/MobileMe.accountconfigplugin/Contents /MacOS/MobileMe
    0x15fd1000 - 0x16007ffb  com.apple.iPhoto.MobileMePublisher (1.2 - 1.2) <D2064089-2D14-3267-A3A0-CF2CD8D6EFA0> /Applications/iPhoto.app/Contents/PlugIns/MobileMePublisher.publisher/Contents/ MacOS/MobileMePublisher
    0x16016000 - 0x1602afff  com.apple.iPhoto.SharedPhotoStreamPublisher (1.0 - 1.0) <EEAC77E3-56B0-3E97-877E-FBB191620629> /Applications/iPhoto.app/Contents/PlugIns/SharedPhotoStreamPublisher.publisher/ Contents/MacOS/SharedPhotoStreamPublisher
    0x16082000 - 0x16083ffd  com.apple.textencoding.unicode (2.5 - 2.5) <4E2ABBEB-1F0D-3C06-BA0C-C3CEDDF17BD2> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x8febe000 - 0x8fef0e57  dyld (210.2.3) <4D38DEED-9837-3202-B8E9-41272D01EA2C> /usr/lib/dyld
    0x90007000 - 0x90008fff  libremovefile.dylib (23.2) <9813B2DB-2374-3AA2-99B6-AA2E9897B249> /usr/lib/system/libremovefile.dylib
    0x90009000 - 0x902a3ff7  com.apple.AddressBook.framework (7.1 - 1170) <9A7DDF7F-5081-3708-8965-E564953EEE39> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x902a4000 - 0x902e6ffb  com.apple.RemoteViewServices (2.0 - 80.6) <AE962502-4539-3893-A2EB-9D384652AEAC> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x9032d000 - 0x9038efff  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <A3B911DB-77DF-3037-A47A-634B08E5727D> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9038f000 - 0x90414ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <454E950F-291C-3E95-8F35-05CA0AD6B327> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x90415000 - 0x904b5ff7  com.apple.QD (3.42.1 - 285.1) <BAAC13D2-1312-33C0-A255-FAB1D314C324> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x904b6000 - 0x9050ffff  com.apple.QuickLookFramework (4.0 - 555.5) <4E381B7B-7EB5-37FD-9BA7-517DB48D07A7> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x90510000 - 0x90514ffe  libcache.dylib (57) <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
    0x90515000 - 0x90911feb  com.apple.VideoToolbox (1.0 - 926.104) <4275B89E-F826-3F65-ACE1-89052A9CAC6B> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x90912000 - 0x90952fff  com.apple.MediaKit (14 - 687) <8735A76E-7766-33F5-B3D2-86630070A1BA> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x90953000 - 0x90bacff5  com.apple.JavaScriptCore (8536 - 8536.30) <24A2ACA7-6E51-30C6-B9AE-17A77E511735> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x90bad000 - 0x90c07ffb  com.apple.AE (645.6 - 645.6) <44556FF7-A869-399A-AEBB-F4E9263D9152> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x90c08000 - 0x90cfcff3  com.apple.QuickLookUIFramework (4.0 - 555.5) <5A62C87F-5F74-380B-8B86-8CE3D8788603> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x90cfd000 - 0x90d16fff  com.apple.Kerberos (2.0 - 1) <9BDE8F4D-DBC3-34D1-852C-898D3655A611> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x90d17000 - 0x90d1bfff  com.apple.IOSurface (86.0.4 - 86.0.4) <6431ACB6-561B-314F-9A2A-FAC1578FCC86> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x90d1c000 - 0x90d2afff  com.apple.opengl (1.8.9 - 1.8.9) <1872D2CD-00A8-30D1-8ECC-B663F4E4C530> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90d2b000 - 0x90dffff3  com.apple.backup.framework (1.4.3 - 1.4.3) <6EA22ED3-BA18-3A37-AE05-5D6FDA3F372F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x90e00000 - 0x90e45ff7  com.apple.NavigationServices (3.7 - 200) <F6531764-6E43-3AF3-ACDD-8A5551EF016A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x90e94000 - 0x90f8cff9  libsqlite3.dylib (138.1) <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
    0x90f8d000 - 0x90fb2ff7  com.apple.quartzfilters (1.8.0 - 1.7.0) <F6A88D89-AB4A-3217-9D65-C2C259B5F09B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x90fb3000 - 0x90fbdffe  com.apple.bsd.ServiceManagement (2.0 - 2.0) <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x90fbe000 - 0x91022ff3  libstdc++.6.dylib (56) <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
    0x91023000 - 0x910e1ff3  com.apple.ColorSync (4.8.0 - 4.8.0) <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x910e2000 - 0x911edff7  libJP2.dylib (850) <3FFCEFA6-317A-34AF-8D99-AEBB017543C5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x911ee000 - 0x91204fff  com.apple.CFOpenDirectory (10.8 - 151.10) <CDA91E5D-6F99-3001-BD31-82585FCF5CA2> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x91205000 - 0x9125ffff  com.apple.Symbolication (1.3 - 93) <227F64A9-FC28-3680-BE92-FFAE86FD4866> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x91260000 - 0x912cfffb  com.apple.Heimdal (3.0 - 2.0) <964D9952-B0F2-34F6-8265-1823C0D5EAB8> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x91649000 - 0x9167eff7  com.apple.framework.internetaccounts (2.1 - 210) <553BF1E7-B26F-3BE7-BAA9-D80E53E73B0D> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
    0x9167f000 - 0x916fbff3  com.apple.Metadata (10.7.0 - 707.11) <F9BB5BBE-69D0-3309-8280-2303EB1DC455> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x916fc000 - 0x91709ff7  com.apple

    That was only a test.  If the new library didn't crash it means your old library is damaged and needs repairing.  Therefore apply the two fixes below in order as needed: 
    Fix #1
    Launch iPhoto with the Command+Option keys held down and rebuild the library.
    Since only one option can be run at a time start with
    Option #3, followed by #4 and then #1 as needed.
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    1 - download iPhoto Library Manager and launch.
    2 - click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option.
    4 - In the next  window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments.  However, books, calendars, cards and slideshows will be lost. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • DNS server cannot be created because the authoritative parent zone

    I am working in 2008r2sp1.  I tried adding DNS Server and DHCP Roles first.  Then under DNS Forward Lookup Zones I added "mysite.com" as a New Zone.
    Also I searched my computer for a "NTDS" folder and the only on I found was "C:\Windows\inf\NTDS".
    A delegation for this DNS server cannot be created because the authoritative parent zone cannot be found or it does not run Windows DNS server. If you are integrating with an existing DNS infrastructure, you should manually create a delegation to this DNS server in the parent zone to ensure reliable name resolution from outside the domain "artisdextri.com". Otherwise, no action is required.
    The folder C:\Windows\inf\NTDS> is not valid. Specify a valid path, including drive letter. For example: C:\NTDS.
    dcpromo /unattend:"C:\Users\Administrator\Documents\ForestAdd.txt"
    ForestAdd.txt
    [DCINSTALL]
    InstallDNS="yes"
    NewDomain="forest"
    NewDomainDNSName="mysite.com"
    DomainNetBiosName="MYSITE"
    ReplicaOrNewDomain="domain"
    ForestLevel="4"
    DomainLevel="4"
    DatabasePath="C:\Windows\inf\NTDS>"
    LogPath="C:\Windows\inf\NTDS"
    SYSVOLPath="c:\Windows\SYSVOL"
    SafeModeAdminPassword="pass1"

    Hello,
    If this is the first forest root DC, just ignore the information.
    Check the blog:
    A delegation for this DNS server cannot be created because the authoritative parent zone cannot be found or it does not run Windows DNS server.
    http://blogs.technet.com/b/activedirectoryua/archive/2011/07/07/a-delegation-for-this-dns-server-cannot-be-created-because-the-authoritative-parent-zone-cannot-be-found-or-it-does-not-run-windows-dns-server.aspx
    Hope this helps.

  • Existing HTTP server stops working after installing OWB10g

    Hi,
    I have upgraded an existing OWB target installation on a Win2000 server to 10G by installing the OWB SW on the server as described in the installation documentation. The target database is still v9.2.0.4. After installing OWB and restarting the server, the 9.2 HTTP server no longer starts. The error logs show that the HTTP server is trying to find some Perl libs in the new OWB home.
    From what I can see, the OWB 10g installation creates a new environment variable; PERL5LIB, pointing to various catalogues in the OWB 10g home. If I remove this from the system, the HTTP server again starts normally, but I suppose this has some negative impact on OWB?
    How can I get the Oracle database 9.2 HTTP server to work alongside OWB 10g?
    Roald

    Roald,
    OWB 10g 'inherited' this bug from Oracle database 10g Bug 3585410. OWB 10g install includes 'Oracle Perl Interpreter' from Oracle 10g which creates this ENV. OWB 10g does not need this and PERL5LIB can safely be renamed without affecting OWB 10g functionality.
    Nikolai Rochnik

  • Fixbspflvr_nt64.exe cannot start or run due to incompatibility with 64-bit

    Hello Folks,
    Before doing an upgrade from DB2 9.5 FP 4 to 9.7 FP 2, when executed fixbspflvr_nt64.exe as per SAP Note 1332109  got
    the following message:
    "The program or feature fixbspflvr\fixbspflvr_nt64.exe" cannot start or run due to incompatibility with 64-bit versions of Windows. Please contact the software vendor to ask if a 64-bit Windows copatible version is available"
    We are using AMD64 hardware. Did some one had the same issue and got resolution, please share...
    Thanks,
    Shyam

    Hi Shyam,
    Did you get any solution from SAP?
    I am facing the same problem. I am unable to start my upgrade. I have raised SAP OSS message but I am yet to recieve a reply.
    The tool is no longer available on IBM website too as they have released Fix pack 3.
    Yuur help will be appreciated.
    Thanks and Regards,
    Karan Shah

  • Strip group problem in Meta area, after running the Cvfsck.

    After running the Cvfsck, the strip group has problems in Meta area, how can i recovery this problem ?
    and let me know, good solution to solve this problems.
    Configuration:
    DiskTypes-12
    Disks-12
    StripeGroups-4
    ForceStripeAlignment-1
    MaxConnections-139
    ThreadPoolSize-256
    StripeAlignSize-256
    FsBlockSize-4096
    BufferCacheSize-32M
    InodeCacheSize-8192
    RestoreJournal-Disabled
    RestoreJournalDir-None
    [0727 07:51:22] 0xa0545720 (Info) Self (10.0.1.10) IP address is 10.0.1.10.
    [0727 07:51:22.600206] 0xa0545720 (Debug) No fsports file - port range enforcement disabled.
    [0727 07:51:22] 0xa0545720 (Info) Listening on TCP socket 10.0.1.10:57800
    [0727 07:51:22] 0xa0545720 (Info) Node [0] [10.0.1.10:57800] File System Manager Login.
    [0727 07:51:22] 0xa0545720 (Info) Service standing by on host '10.0.1.10:57800'.
    [0727 07:51:27.656266] 0xa0545720 (Debug) Standby service - NSS ping from 10.0.1.102:51893.
    [0727 07:51:27.656645] 0xa0545720 (Debug) FOUsurpCheck: read ARB info (pass 1): host (10.0.1.10:57713) conns 0 age 1280184528.00 secs his delta 0.00 secs my delta 4.00 secs.
    [0727 07:51:27.656652] 0xa0545720 (Debug) FOUsurpCheck: ARB is already mine.
    [0727 07:51:27] 0xa0545720 (Info) Branding Arbitration Block (attempt 1) votes 3.
    [0727 07:51:29.658136] 0xa0545720 (Debug) Cannot find fail over script [/Library/Filesystems/Xsan/bin/cvfail.10.0.1.10] - looking for generic script.
    [0727 07:51:29] 0xa0545720 (Info) Launching fail over script ["/Library/Filesystems/Xsan/bin/cvfail" 10.0.1.10 57800 Xsan_Vol]
    [0727 07:51:29.668487] 0xa0545720 (Debug) Starting journal log recovery.
    [0727 07:51:29.861000] 0xa0545720 (Debug) Completed journal log recovery.
    [0727 07:51:29.861332] 0xa0545720 (Debug) Inodeinit_postactivation: FsStatus 0x921, Brl_ResyncState 1
    [0727 07:51:29] 0xa0545720 (*FATAL*) PANIC: /Library/Filesystems/Xsan/bin/fsm "Cannot open stripe group 'MDJ' [0(3)] - No such file or directory.
    " file alloc.c, line 3023
    [0727 07:51:29] 0xa0545720 (*FATAL*) PANIC: wait 3 secs for journal to flush
    [0727 07:51:32] 0xa0545720 (*FATAL*) PANIC: aborting threads now.
    Logger_thread: sleeps/21 signals/0 flushes/4 writes/4 switches 0
    Logger_thread: logged/22 clean/22 toss/0 signalled/0 toss_message/0
    Logger_thread: waited/0 awakened/0

    After running the Cvfsck, the strip group has problems in Meta area, how can i recovery this problem ?
    and let me know, good solution to solve this problems.
    Configuration:
    DiskTypes-12
    Disks-12
    StripeGroups-4
    ForceStripeAlignment-1
    MaxConnections-139
    ThreadPoolSize-256
    StripeAlignSize-256
    FsBlockSize-4096
    BufferCacheSize-32M
    InodeCacheSize-8192
    RestoreJournal-Disabled
    RestoreJournalDir-None
    [0727 07:51:22] 0xa0545720 (Info) Self (10.0.1.10) IP address is 10.0.1.10.
    [0727 07:51:22.600206] 0xa0545720 (Debug) No fsports file - port range enforcement disabled.
    [0727 07:51:22] 0xa0545720 (Info) Listening on TCP socket 10.0.1.10:57800
    [0727 07:51:22] 0xa0545720 (Info) Node [0] [10.0.1.10:57800] File System Manager Login.
    [0727 07:51:22] 0xa0545720 (Info) Service standing by on host '10.0.1.10:57800'.
    [0727 07:51:27.656266] 0xa0545720 (Debug) Standby service - NSS ping from 10.0.1.102:51893.
    [0727 07:51:27.656645] 0xa0545720 (Debug) FOUsurpCheck: read ARB info (pass 1): host (10.0.1.10:57713) conns 0 age 1280184528.00 secs his delta 0.00 secs my delta 4.00 secs.
    [0727 07:51:27.656652] 0xa0545720 (Debug) FOUsurpCheck: ARB is already mine.
    [0727 07:51:27] 0xa0545720 (Info) Branding Arbitration Block (attempt 1) votes 3.
    [0727 07:51:29.658136] 0xa0545720 (Debug) Cannot find fail over script [/Library/Filesystems/Xsan/bin/cvfail.10.0.1.10] - looking for generic script.
    [0727 07:51:29] 0xa0545720 (Info) Launching fail over script ["/Library/Filesystems/Xsan/bin/cvfail" 10.0.1.10 57800 Xsan_Vol]
    [0727 07:51:29.668487] 0xa0545720 (Debug) Starting journal log recovery.
    [0727 07:51:29.861000] 0xa0545720 (Debug) Completed journal log recovery.
    [0727 07:51:29.861332] 0xa0545720 (Debug) Inodeinit_postactivation: FsStatus 0x921, Brl_ResyncState 1
    [0727 07:51:29] 0xa0545720 (*FATAL*) PANIC: /Library/Filesystems/Xsan/bin/fsm "Cannot open stripe group 'MDJ' [0(3)] - No such file or directory.
    " file alloc.c, line 3023
    [0727 07:51:29] 0xa0545720 (*FATAL*) PANIC: wait 3 secs for journal to flush
    [0727 07:51:32] 0xa0545720 (*FATAL*) PANIC: aborting threads now.
    Logger_thread: sleeps/21 signals/0 flushes/4 writes/4 switches 0
    Logger_thread: logged/22 clean/22 toss/0 signalled/0 toss_message/0
    Logger_thread: waited/0 awakened/0

Maybe you are looking for