Granting & reverting previlages at runtime

hello ...
i'm trying to migrate an applet currently implemented netscape and microsoft security packages(com.ms.security & netscape.security) using Javas plug-ins. But during the life time of this applet permissions are granted and revoked dynamically.
like....
if (miBrowserSecurity == MyClass.NETSCAPE)
               PrivilegeManager.enablePrivilege("UniversalSystemClipboardAccess");
          if (miBrowserSecurity == MyClass.NETSCAPE)
               PrivilegeManager.revertPrivilege("UniversalSystemClipboardAccess");
How to implement this functionality using java2 plug-ins. Do i need to implement
custom policy ?
Please help

If you use a certificate from a certificate authority such as Verisign or Thawte, the user will be prompted to to grant permission and then your applet will have AllPermission. See http://java.sun.com/j2se/1.4.2/docs/guide/plugin/developer_guide/rsa_how.html for details ... the important paragraph being -
"If Plug-in can verify the certificate chain all the way up to its Root CA certificate, it checks if that Root CA certificate is contained in the database of trusted Root CA certificates. If so, Plug-in will display the certificate chain of the authenticated signer and ask the user whether or not to grant AllPermission to code signed by that principal. Java code that is assigned the AllPermission permission is treated the same as system code, meaning it has all the privileges that system code has. The user can then choose whether or not to grant AllPermission to code signed by that principal, and whether such permission should be granted to any code signed by that principal for all subsequent sessions or for the current session only. "

Similar Messages

  • Grant V$LOCKED_OBJECT

    Dear friends,
    Can the users be granted SELECT previlage on V$LOCKED_OBJECT or DBA_OBJECTS ? How? From which users?
    with thanks in adv.
    Rathnakumar RJD

    hi
    connect sys as sysdba and grant it.
    hope it helps you.
    check out the following link.
    http://www.kods.net/stag/grant-select-on-dba-objects-to-public/
    sarah
    Edited by: SaRaH on Jul 6, 2010 2:30 AM

  • Error accessing EJB bean on ias 10.1.2 from Jdev 10.1.3

    I have deployed an ADF Application Module from Jdev 10.1.3 to Oracle Application Server 10.1.2 as an EJB.
    Then I made að sample java client (by right clicking the EJB).
    When I run the client I get the following exception (which is thrown at the Application Server):
    java.lang.NoClassDefFoundError: javax/servlet/jsp/el/VariableResolver
         at oracle.jbo.mom.DefinitionManager.getCurrentDefinitionContext(DefinitionManager.java:1592)
         at oracle.jbo.mom.DefinitionManager.loadProjectDefinition(DefinitionManager.java:874)
         at oracle.jbo.server.SessionImpl.init(SessionImpl.java:143)
         at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.createSession(AbstractRemoteApplicationModuleImpl.java:343)
         at oracle.jbo.server.remote.ejb.ServerApplicationModuleImpl.createSession(ServerApplicationModuleImpl.java:118)
         at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.createRootApplicationModule(AbstractRemoteApplicationModuleImpl.java:208)
         at oracle.jbo.server.remote.ejb.ServerApplicationModuleImpl.initAsRoot(ServerApplicationModuleImpl.java:138)
         at oracle.jbo.server.remote.ejb.ServerApplicationModuleImpl.createInstance(ServerApplicationModuleImpl.java:55)
         at oracle.jbo.server.ejb.SessionBeanImpl.createApplicationModule(SessionBeanImpl.java:400)
         at is.fiskistofa.ask.vigtun.bc4j.appmod.server.ejb.beanmanaged.VigtunAppModuleServer.ejbCreate(VigtunAppModuleServer.java:73)
         at VigtunAppModuleHome_StatefulSessionHomeWrapper7.create(VigtunAppModuleHome_StatefulSessionHomeWrapper7.java:90)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.evermind.server.rmi.RMICallHandler.run(RMICallHandler.java:124)
         at com.evermind.server.rmi.RMICallHandler.run(RMICallHandler.java:48)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:534)
    I have installed the ADF runtime libraries at the application server so why won't it find this class ?

    We installed the ias again completely deployed our application and were able to run this simple test without errors. Then we installed the ADF Runtime (from JDev 10.1.3, without errors) and then the error in our application came again.
    We reverted the ADF Runtime installation so I don't currently have the 10.1.3 runtime installed on the Application Server.
    A simple test case would be:
    1. create new business components project
    2. define a database connection (e.g. scott)
    3. generate business components from tables (e.g. scott.emp), make a entity, a view object and an applicationmodule
    4. define a connection to an application server (in our case it is ias 10.1.2 on solaris)
    5. right click the appmodule and select "business components deployment"
    6. select EJB session beans (not simple archive)
    7. in the next step select the application module and create new local configuration
    8. deploy to appserver (using enterprise manager, I think direct deployment from JDev 10.1.3. to ias 10.1.2 is not possible)
    9. right click the EJB (in JDev) that was created after step 7 and select "new sample java client"
    10. uncomment the line where create is called.
    11. run the sample client

  • Erro in  connection

    hi
    im new to this ,when i execute the below program, im getting error message
    package com.stardeveloper.example;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.SQLException;
    public class sampleconn {
    public static void main(String args[]) {
    Connection con = null;
    try {
    Class.forName("com.mysql.jdbc.Driver").newInstance();
    con = DriverManager.getConnection("jdbc:mysql:///lux1",
    "luxmi","luxmi");
    if(!con.isClosed())
    System.out.println("Successfully connected to " +
    "MySQL server using TCP/IP...");
    } catch(Exception e) {
    System.err.println("Exception: " + e.getMessage());
    } finally {
    try {
    if(con != null)
    con.close();
    } catch(SQLException e) {}
    error message:
    Exception:syntax error or access voilation message from server:"Access denied for user 'luxmi'@'localhost' to database 'lux1' "
    i grant all previlages to the user:
    mysql>GRANT USAGE ON *.* TO 'luxmi'@'localhost' IDENTIFIED BY 'luxmi';
    query OK 0 rows affected.....
    but im still getting error message
    Exception:syntax error or access voilation message from server:"Access denied for user 'luxmi'@'localhost' to database 'lux1' "
    plz help me out,if any body knows........
    thanks
    ramesh

    try the following sql statement:
    GRANT ALL ON luxi.* TO 'luxmi'@'localhost' IDENTIFIED BY 'luxmi';I think this is more effictive.
    Ahmad Elsafty.

  • Problems with running of workbooks

    Dear members,
    We have a workbook which one user can run and the other user cannot.
    Suppose we have UserA and UserB. UserA has created a workbook and even shared the workbook with UserB using Discoverer Desktop. Both UserA and UserB have an database account through which they login to discoverer desktop to run the reports.
    UserA can run the reports normally but where as userB cannot run the report. When UserB opens the report it says missing item or join condition. Does UserB need to have any grants or previlages.
    It would be great if some body guides me.
    Thanks
    Sandeep

    Sandeep,
    There is normally two possible causes.
    1. Used does hot have access to the business area
    2. User does not have select privs to the underlying db objects.
    Regards
    Roelie Viviers

  • How to give grants on runtime objects

    Hi,
    I have created read only apps user,but i want to have a trigger/procedure which should give grant at runtime when the object i.e synnonym/view created in apps user.
    I have tried the anil passi read only apps user-trigger but it is throwing errors in alert log.
    the trigger need to be corrected can any one help on this as it became an urgent issue.
    with regards,
    Surya

    Hi,
    Can anyone help on this,
    (A)
    The command which am using is
    Create a Trigger on the apps schema to issue select only grants for all new views and synonyms. Please note that I am excluding grants for sequences. SELECT grants for views and synonyms will be provided to apps_query as and when such objects are created in APPS. Please note that, all the APPS objects (views and synonyms) that existed in APPS schema prior to the implementation of this design, would have been granted read-only access to apps_query in Step 2.
    conn apps/&1 ;
    PROMPT CREATE OR REPLACE TRIGGER xx_grant_apps_query
    CREATE OR REPLACE TRIGGER xx_grant_apps_query
    AFTER CREATE ON APPS.SCHEMA
    DECLARE
    l_str VARCHAR2(255);
    l_job NUMBER;
    BEGIN
    IF (ora_dict_obj_type IN ('SYNONYM', 'VIEW'))
    AND (ora_dict_obj_name NOT LIKE '%_S')
    THEN
    l_str := 'execute immediate "grant select on ' || ora_dict_obj_name ||
    ' to apps_query";';
    dbms_job.submit(l_job, REPLACE(l_str, '"', ''''));
    END IF;
    END;
    (b)
    The error in alert log as follows---------
    Errors in file /db002/oracle/dnddb/9.2.0/admin/dnd_cdx16/bdump/dnd_j001_15164.trc:
    ORA-12012: error on auto execute of job 2290
    ORA-01031: insufficient privileges
    ORA-06512: at line 1
    as this job trying to "grant select on read only apps user".
    2)For testing i have created a synonym in apps where i have encountered this type of errors in the alertlog.
    The way i have checked the trigger,
    a) I have created a custom schema (user A) after that i have created a table in the custom schema.
    b)Based on the object of user A i have created a synonym on that table in apps(user B).
    After that i have tried to retrive the same synonym in read only apps user(user C).
    as am able to see the data in user C.But there is errors as above in alert log.
    Plz help in this situation.
    with regards,
    Surya
    Edited by: SuryaSrinivas on Jul 6, 2009 4:51 AM

  • Discovering apps granted permissions at runtime

    In the appmanifest of my app for SharePoint I request permissions on a document library in the host web:
    <AppPermissionRequest Scope="http://sharepoint/content/sitecollection/web/list" Right="Write">
    <Property Name="BaseTemplateId" Value="101"/>
    </AppPermissionRequest>
    What would be the way in CSOM and/or REST to discover later on in your app which document library the user has selected during installation? So the app knows in which library he is allowed to create the documents.

    As far as I know, there is no way to do this (unless something changed very late in the cycle). I think the idea is that the user installing the app would know that your app needs permissions on a specific library (e.g., "Shared Documents"). When your app
    runs, it should trap any errors here and specify that you are looking for a library of a specific name.
    The idea that the app could write to any library the user specifies is admittedly useful, but as far as I can tell not supported in the way that we would want.
    I would also point out that most apps probably don't need this type of functionality. In this scenario, it's probably better for the app to deploy it's own library so the target is well known.
    Scot
    Author,
    Microsoft SharePoint 2013 App Development
    Author,
    Professional Business Connectivity Services
    Author,
    Inside SharePoint 2013
    Blog, www.shillier.com
    Twitter, @ScotHillier
    SharePoint Trainer, Critical Path Training

  • Error while granting BPMOrganizationAdmin role to SOAOperator.

    Error Starting While starting SOA server. Please advise.
    <Mar 5, 2015 12:56:08 PM EST> <Error> <oracle.bpm.services.organization> <BEA-000000> <Exception
    exception.70692.type: error
    exception.70692.severity: 2
    exception.70692.name: Error while granting BPMOrganizationAdmin role to SOAOperator.
    exception.70692.description: Error occured while granting the application role BPMOrganizationAdmin to application role SOAOperator.
    exception.70692.fix: In the policy store, please add SOAOperator role as a member of BPMOrganizationAdmin role, if it is not already present.
    ORABPEL-10513
    Cannot get application roles from application identified by "{0}".
    An error occurred while getting application roles from application identified by "soa-infra".
    The underlying APIs threw an exception. Check the error stack and fix the cause of the error. Contact Oracle Support Services if error is not fixable.
            at oracle.tip.pc.services.identity.jps.JpsProvider$1.run(JpsProvider.java:920)
            at oracle.tip.pc.services.identity.jps.JpsProvider.lookupAppRole(JpsProvider.java:913)
            at oracle.bpm.bpmn.engine.runtime.DeploymentDescriptorUtil.grantBPMOrganizationAdminRoleToSOAOperator(DeploymentDescriptorUtil.java:294)
            at oracle.bpm.bpmn.engine.service.BPMNServiceEngine.stateChanged(BPMNServiceEngine.java:578)
            at oracle.integration.platform.blocks.mesh.FabricLifecycle.notifyListeners(FabricLifecycle.java:46)
            at oracle.integration.platform.blocks.mesh.FabricLifecycle.setState(FabricLifecycle.java:30)
            at oracle.integration.platform.blocks.mesh.MeshImpl.postDeployInit(MeshImpl.java:118)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
            at oracle.integration.platform.metrics.PhaseEventAspect.invoke(PhaseEventAspect.java:71)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
            at $Proxy307.postDeployInit(Unknown Source)
            at oracle.integration.platform.kernel.FabricKernelInitializerServlet$1.run(FabricKernelInitializerServlet.java:555)
            at oracle.integration.platform.blocks.executor.WorkManagerExecutor$1.run(WorkManagerExecutor.java:120)
            at weblogic.work.j2ee.J2EEWorkManager$WorkWithListener.run(J2EEWorkManager.java:183)
            at weblogic.work.DaemonWorkThread.run(DaemonWorkThread.java:30)
    Caused By: ORABPEL-10510
    Application role not found.
    Application role "BPMOrganizationAdmin" could not be found for application identified by "soa-infra".
    Check if the application role exists in the repository associated with the application. Check the error stack and fix the cause of the error. Contact Oracle Support Services if error is not fixable.
            at oracle.tip.pc.services.identity.jps.JpsProvider$9.run(JpsProvider.java:2338)
            at oracle.tip.pc.services.identity.jps.JpsProvider.lookupAppRoleEntry(JpsProvider.java:2333)
            at oracle.tip.pc.services.identity.jps.JpsProvider.access$000(JpsProvider.java:169)
            at oracle.tip.pc.services.identity.jps.JpsProvider$1.run(JpsProvider.java:917)
            at oracle.tip.pc.services.identity.jps.JpsProvider.lookupAppRole(JpsProvider.java:913)
            at oracle.bpm.bpmn.engine.runtime.DeploymentDescriptorUtil.grantBPMOrganizationAdminRoleToSOAOperator(DeploymentDescriptorUtil.java:294)
            at oracle.bpm.bpmn.engine.service.BPMNServiceEngine.stateChanged(BPMNServiceEngine.java:578)
            at oracle.integration.platform.blocks.mesh.FabricLifecycle.notifyListeners(FabricLifecycle.java:46)
            at oracle.integration.platform.blocks.mesh.FabricLifecycle.setState(FabricLifecycle.java:30)
            at oracle.integration.platform.blocks.mesh.MeshImpl.postDeployInit(MeshImpl.java:118)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
            at oracle.integration.platform.metrics.PhaseEventAspect.invoke(PhaseEventAspect.java:71)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
            at $Proxy307.postDeployInit(Unknown Source)
            at oracle.integration.platform.kernel.FabricKernelInitializerServlet$1.run(FabricKernelInitializerServlet.java:555)
            at oracle.integration.platform.blocks.executor.WorkManagerExecutor$1.run(WorkManagerExecutor.java:120)
            at weblogic.work.j2ee.J2EEWorkManager$WorkWithListener.run(J2EEWorkManager.java:183)
            at weblogic.work.DaemonWorkThread.run(DaemonWorkThread.java:30)
    >
    <Mar 5, 2015 12:56:08 PM EST> <Error> <oracle.bpm.common> <BEA-000000> <Exception
    BPM-70692
    Exception
    exception.70692.type: error
    exception.70692.severity: 2
    exception.70692.name: Error while granting BPMOrganizationAdmin role to SOAOperator.
    exception.70692.description: Error occured while granting the application role BPMOrganizationAdmin to application role SOAOperator.
    exception.70692.fix: In the policy store, please add SOAOperator role as a member of BPMOrganizationAdmin role, if it is not already present.
            at oracle.bpm.bpmn.engine.runtime.DeploymentDescriptorUtil.grantBPMOrganizationAdminRoleToSOAOperator(DeploymentDescriptorUtil.java:324)
            at oracle.bpm.bpmn.engine.service.BPMNServiceEngine.stateChanged(BPMNServiceEngine.java:578)
            at oracle.integration.platform.blocks.mesh.FabricLifecycle.notifyListeners(FabricLifecycle.java:46)
            at oracle.integration.platform.blocks.mesh.FabricLifecycle.setState(FabricLifecycle.java:29)
            at oracle.integration.platform.blocks.mesh.MeshImpl.postDeployInit(MeshImpl.java:118)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
            at oracle.integration.platform.metrics.PhaseEventAspect.invoke(PhaseEventAspect.java:71)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
            at $Proxy307.postDeployInit(Unknown Source)
            at oracle.integration.platform.kernel.FabricKernelInitializerServlet$1.run(FabricKernelInitializerServlet.java:555)
            at oracle.integration.platform.blocks.executor.WorkManagerExecutor$1.run(WorkManagerExecutor.java:120)
            at weblogic.work.j2ee.J2EEWorkManager$WorkWithListener.run(J2EEWorkManager.java:183)
            at weblogic.work.DaemonWorkThread.run(DaemonWorkThread.java:30)
    Caused By: ORABPEL-10513
    Cannot get application roles from application identified by "{0}".
    An error occurred while getting application roles from application identified by "soa-infra".
    The underlying APIs threw an exception. Check the error stack and fix the cause of the error. Contact Oracle Support Services if error is not fixable.
            at oracle.tip.pc.services.identity.jps.JpsProvider$1.run(JpsProvider.java:920)
            at oracle.tip.pc.services.identity.jps.JpsProvider.lookupAppRole(JpsProvider.java:913)
            at oracle.bpm.bpmn.engine.runtime.DeploymentDescriptorUtil.grantBPMOrganizationAdminRoleToSOAOperator(DeploymentDescriptorUtil.java:294)
            at oracle.bpm.bpmn.engine.service.BPMNServiceEngine.stateChanged(BPMNServiceEngine.java:578)
            at oracle.integration.platform.blocks.mesh.FabricLifecycle.notifyListeners(FabricLifecycle.java:46)
            at oracle.integration.platform.blocks.mesh.FabricLifecycle.setState(FabricLifecycle.java:30)
            at oracle.integration.platform.blocks.mesh.MeshImpl.postDeployInit(MeshImpl.java:118)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
            at oracle.integration.platform.metrics.PhaseEventAspect.invoke(PhaseEventAspect.java:71)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
            at $Proxy307.postDeployInit(Unknown Source)
            at oracle.integration.platform.kernel.FabricKernelInitializerServlet$1.run(FabricKernelInitializerServlet.java:555)
            at oracle.integration.platform.blocks.executor.WorkManagerExecutor$1.run(WorkManagerExecutor.java:120)
            at weblogic.work.j2ee.J2EEWorkManager$WorkWithListener.run(J2EEWorkManager.java:183)
            at weblogic.work.DaemonWorkThread.run(DaemonWorkThread.java:30)
    Caused By: ORABPEL-10510
    Application role not found.
    Application role "BPMOrganizationAdmin" could not be found for application identified by "soa-infra".
    Check if the application role exists in the repository associated with the application. Check the error stack and fix the cause of the error. Contact Oracle Support Services if error is not fixable.
            at oracle.tip.pc.services.identity.jps.JpsProvider$9.run(JpsProvider.java:2338)
            at oracle.tip.pc.services.identity.jps.JpsProvider.lookupAppRoleEntry(JpsProvider.java:2333)
            at oracle.tip.pc.services.identity.jps.JpsProvider.access$000(JpsProvider.java:169)
            at oracle.tip.pc.services.identity.jps.JpsProvider$1.run(JpsProvider.java:917)
            at oracle.tip.pc.services.identity.jps.JpsProvider.lookupAppRole(JpsProvider.java:913)
            at oracle.bpm.bpmn.engine.runtime.DeploymentDescriptorUtil.grantBPMOrganizationAdminRoleToSOAOperator(DeploymentDescriptorUtil.java:294)
            at oracle.bpm.bpmn.engine.service.BPMNServiceEngine.stateChanged(BPMNServiceEngine.java:578)
            at oracle.integration.platform.blocks.mesh.FabricLifecycle.notifyListeners(FabricLifecycle.java:46)
            at oracle.integration.platform.blocks.mesh.FabricLifecycle.setState(FabricLifecycle.java:30)
            at oracle.integration.platform.blocks.mesh.MeshImpl.postDeployInit(MeshImpl.java:118)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
            at oracle.integration.platform.metrics.PhaseEventAspect.invoke(PhaseEventAspect.java:71)
            at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
            at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
            at $Proxy307.postDeployInit(Unknown Source)
            at oracle.integration.platform.kernel.FabricKernelInitializerServlet$1.run(FabricKernelInitializerServlet.java:555)
            at oracle.integration.platform.blocks.executor.WorkManagerExecutor$1.run(WorkManagerExecutor.java:120)
            at weblogic.work.j2ee.J2EEWorkManager$WorkWithListener.run(J2EEWorkManager.java:183)
            at weblogic.work.DaemonWorkThread.run(DaemonWorkThread.java:30)
    >

    Hi user,
    Can you give us some information on the version you are using and your security setup? Are you using an external security provider? Because to me it sounds that you are using an external LDAP server.
    Antonis

  • Runtime error in distribution FM 'CVV5_EVENT_START_DISTRIBUTION'

    Dear All,
    I am facing an issue in document distribution. Business scenario: PR is created with a doument. PR goes through a release strategy which is designed through a Workflow. When PR is finally approved, Documnet distribution happens. Business object DRAW is called with event CHANGED and hence this FM CVV5_EVENT_START_DISTRIBUTION is called. However this results in a runtime error due to exception 'NO_RELATION_EXIST'. I am not able to debug and find if any necessary parameter is getting missed and i do not have too much information on DMS.
    Can somebody guide me in resolving this issue. If any other information is needed then please post it.
    Thanking you in advance. 
    Regards,
    Saud

    Thnaks a lot. That note is explicitly for this problem. I will take it forward now. Will revert back in case of any issue. Thanks again.
    Regards,
    Saud

  • Can not revert to Mavericks

    Hello all
    I have Yosemite and as you are all aware, WiFi issues are still there, my WiFi is completely off and would'n't turn on. Sometimes after my MacBook Air sleeps or is rebooted, the WiFi is magically on, but it's bound to cut off on the next sleep/reboot.
    So I decided to revert to Mavericks using a bootable USB drive since I don't have an available Time Machine backup.
    The installation process starts, then I get an error saying Installation can't be done and to look at the error log.
    In the error log, I see " Error opening package "OSInstall.mpkg"."
    The USB boot drive was created from my own Mavericks purchased in the apptore, however.
    Anyways, the error log is as follows:
    Jan 13 13:33:09 localhost opendirectoryd[101]: opendirectoryd (build 339.102.1) launched - installer mode
    Jan 13 13:33:09 localhost opendirectoryd[101]: Logging level limit changed to 'notice'
    Jan 13 13:33:10 localhost opendirectoryd[101]: Initialize trigger support
    Jan 13 13:33:10 localhost opendirectoryd[101]: created endpoint for mach service 'com.apple.private.opendirectoryd.rpc'
    Jan 13 13:33:10 localhost opendirectoryd[101]: set default handler for RPC 'reset_cache'
    Jan 13 13:33:10 localhost opendirectoryd[101]: set default handler for RPC 'reset_statistics'
    Jan 13 13:33:10 localhost opendirectoryd[101]: set default handler for RPC 'show'
    Jan 13 13:33:10 localhost opendirectoryd[101]: starting endpoint for service 'com.apple.private.opendirectoryd.rpc'
    Jan 13 13:33:10 localhost opendirectoryd[101]: no dynamic data found at '/System/Library/OpenDirectory/DynamicData/Configure.plist'
    Jan 13 13:33:10 localhost opendirectoryd[101]: Registered node with name '/Configure' as hidden
    Jan 13 13:33:10 localhost opendirectoryd[101]: no dynamic data found at '/System/Library/OpenDirectory/DynamicData/Local.plist'
    Jan 13 13:33:10 localhost opendirectoryd[101]: Registered node with name '/Local' as hidden
    Jan 13 13:33:20 localhost Unknown[352]: kern.boottime: { sec = 1421184783, usec = 0 } Tue Jan 13 13:33:03 2015
    Jan 13 13:33:21 localhost Unknown[363]: Launching the Language Chooser for an OS Install
    Jan 13 13:33:29 localhost Unknown[365]: Keyboard Layouts: duplicate keyboard layout identifier -16899.
    Jan 13 13:33:29 localhost Unknown[365]: Keyboard Layouts: keyboard layout identifier -16899 has been replaced with -28673.
    Jan 13 13:33:29 localhost Unknown[365]: Keyboard Layouts: duplicate keyboard layout identifier -16900.
    Jan 13 13:33:29 localhost Unknown[365]: Keyboard Layouts: keyboard layout identifier -16900 has been replaced with -28674.
    Jan 13 13:33:29 localhost Language Chooser[364]: Set keyboard to id: 0
    Jan 13 13:33:31 localhost Unknown[365]: Setting boot completed.
    Jan 13 13:33:31 localhost Language Chooser[364]: Found primary language hint "en"
    Jan 13 13:33:31 localhost Language Chooser[364]: Could not write to /var/log/CDIS.custom
    Jan 13 13:33:32 localhost Language Chooser[364]: Launching the Installer using language code "en"
    Jan 13 13:33:32 localhost OSInstaller[375]: LSExceptions [0x7fade2d2c4e0] loaded
    Jan 13 13:33:32 localhost OSInstaller[375]: OS X Installer application started
    Jan 13 13:33:32 localhost OSInstaller[375]: 1 display(s) found.
    Jan 13 13:33:32 localhost OSInstaller[375]: Display[1] is NOT using OpenGL acceleration.
    Jan 13 13:33:32 localhost OSInstaller[375]: @(#)PROGRAM:Install  PROJECT:Install-846
    Jan 13 13:33:32 localhost OSInstaller[375]: @(#)PROGRAM:OS X Installer  PROJECT:OSInstaller-525
    Jan 13 13:33:32 localhost OSInstaller[375]: Hardware: MacBookAir5,2 @ 1.80 GHz (x 4), 8192 MB RAM
    Jan 13 13:33:32 localhost OSInstaller[375]: Running OS Build: Mac OS X 10.9.5 (13F34)
    Jan 13 13:33:32 localhost OSInstaller[375]: Env: __CF_USER_TEXT_ENCODING=0x0:0:0
    Jan 13 13:33:32 localhost OSInstaller[375]: Env: PATH=/usr/bin:/bin:/usr/sbin:/sbin
    Jan 13 13:33:32 localhost OSInstaller[375]: Env: PWD=/
    Jan 13 13:33:32 localhost OSInstaller[375]: Env: SHLVL=1
    Jan 13 13:33:32 localhost OSInstaller[375]: Env: __OSINSTALL_ENVIRONMENT=1
    Jan 13 13:33:32 localhost OSInstaller[375]: Env: CI_DEFAULT_OPENCL_USAGE=0
    Jan 13 13:33:32 localhost OSInstaller[375]: Env: OS_INSTALL=1
    Jan 13 13:33:32 localhost OSInstaller[375]: Env: _=/System/Library/CoreServices/Language Chooser.app/Contents/MacOS/Language Chooser
    Jan 13 13:33:32 localhost OSInstaller[375]: Env: __CHECKFIX1436934=1
    Jan 13 13:33:33 localhost OSInstaller[375]: No mutable product specified in NVRAM.
    Jan 13 13:33:33 localhost OSInstaller[375]: We are not image source booted ignoring automation backup.
    Jan 13 13:33:33 localhost OSInstaller[375]: No mutable product specified on boot disk.
    Jan 13 13:33:33 localhost OSInstaller[375]: Opening OSInstall package '/System/Installation/Packages/OSInstall.mpkg'.
    Jan 13 13:33:33 localhost OSInstaller[375]: Using product <OSInstallRootProduct> at distance 5
    Jan 13 13:33:33 localhost configd[114]: subnet_route_if_index: can't get interface name
    Jan 13 13:33:34 localhost OSInstaller[375]: JS: installCheckScript threw exception TypeError: 'null' is not an object (evaluating 'my.target.systemVersion')
    Jan 13 13:33:34 localhost Unknown[365]: objc[375]: Class SleepTimerCallback is implemented in both /System/Installation/CDIS/OS X Installer.app/Contents/MacOS/OS X Installer and /System/Installation/CDIS/OS X Installer.app/Contents/Resources/OSXInstallAssistant.bundle/Contents/MacOS/OSXI nstallAssistant. One of the two will be used. Which one is undefined.
    Jan 13 13:33:34 localhost OSInstaller[375]: Memory statistics for 'Install OS X' pane:
    Jan 13 13:33:34 localhost OSInstaller[375]: Physical Memory Allocation:   569 MB wired,     4 MB trapped,   371 MB active,   110 MB inactive,  7138 MB free,  7619 MB usable,  8192 MB total
    Jan 13 13:33:35 localhost Unknown[365]: 2015-01-13 13:33:35.000 OS X Installer[375:303] *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Jan 13 13:33:35 localhost OSInstaller[375]: X Source too new: Source version: 10.10, Destination version: 10.9.5
    Jan 13 13:33:35 localhost Unknown[365]: Keyboard Layouts: duplicate keyboard layout identifier -16899.
    Jan 13 13:33:35 localhost Unknown[365]: Keyboard Layouts: keyboard layout identifier -16899 has been replaced with -28673.
    Jan 13 13:33:35 localhost Unknown[365]: Keyboard Layouts: duplicate keyboard layout identifier -16900.
    Jan 13 13:33:35 localhost Unknown[365]: Keyboard Layouts: keyboard layout identifier -16900 has been replaced with -28674.
    Jan 13 13:33:40 localhost OSInstaller[375]: Allowing machine sleep.
    Jan 13 13:33:40 localhost Unknown[365]: 2015-01-13 13:33:40.345 OS X Installer[375:303] *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Jan 13 13:33:40 localhost Unknown[365]: 2015-01-13 13:33:40.551 OS X Installer[375:303] *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Jan 13 13:33:40 localhost Unknown[365]: 2015-01-13 13:33:40.551 OS X Installer[375:303] *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Jan 13 13:33:40 localhost OSInstaller[375]: X Source too new: Source version: 10.10, Destination version: 10.9.5
    Jan 13 13:33:43 localhost OSInstaller[375]: LSExceptions [0x7fade2d2c4e0] unloaded
    Jan 13 13:33:50 localhost OSInstaller[375]: Preventing machine sleep.
    Jan 13 13:33:50 localhost OSInstaller[375]: InstallerStatusNotifications plugin loaded
    Jan 13 13:33:50 localhost OSInstaller[375]: =============================================================================== =
    Jan 13 13:33:50 localhost OSInstaller[375]: Choices selected for installation:
    Jan 13 13:33:50 localhost OSInstaller[375]: Install: "OS X"
    Jan 13 13:33:50 localhost OSInstaller[375]: BaseSystemBinaries.pkg : com.apple.pkg.BaseSystemBinaries : 10.9.0.1.1.1306847324
    Jan 13 13:33:50 localhost OSInstaller[375]: BaseSystemResources.pkg : com.apple.pkg.BaseSystemResources : 10.9.0.1.1.1306847324
    Jan 13 13:33:50 localhost OSInstaller[375]: OSInstall.mpkg : com.apple.mpkg.OSInstall : 10.9.0
    Jan 13 13:33:50 localhost OSInstaller[375]: Essentials.pkg : com.apple.pkg.Essentials : 10.9.0.1.1.1306847324
    Jan 13 13:33:50 localhost OSInstaller[375]: BSD.pkg : com.apple.pkg.BSD : 10.9.0.1.1.1306847324
    Jan 13 13:33:50 localhost OSInstaller[375]: JavaTools.pkg : com.apple.pkg.JavaTools : 10.9.0.1.1.1306847324
    Jan 13 13:33:50 localhost OSInstaller[375]: AdditionalEssentials.pkg : com.apple.pkg.AdditionalEssentials : 10.9.0.1.1.1306847324
    Jan 13 13:33:50 localhost OSInstaller[375]: AdditionalSpeechVoices.pkg : com.apple.pkg.AdditionalSpeechVoices : 10.9.0.1.1.1306847324
    Jan 13 13:33:50 localhost OSInstaller[375]: AsianLanguagesSupport.pkg : com.apple.pkg.AsianLanguagesSupport : 10.9.0.1.1.1306847324
    Jan 13 13:33:50 localhost OSInstaller[375]: MediaFiles.pkg : com.apple.pkg.MediaFiles : 10.9.0.1.1.1306847324
    Jan 13 13:33:50 localhost OSInstaller[375]: JavaEssentials.pkg : com.apple.pkg.JavaEssentials : 10.9.0.1.1.1306847324
    Jan 13 13:33:50 localhost OSInstaller[375]: OxfordDictionaries.pkg : com.apple.pkg.OxfordDictionaries : 10.9.0.1.1.1306847324
    Jan 13 13:33:50 localhost OSInstaller[375]: X11redirect.pkg : com.apple.pkg.X11redirect : 10.9.0.1.1.1306847324
    Jan 13 13:33:50 localhost OSInstaller[375]: OSInstall.pkg : com.apple.pkg.OSInstall : 10.9.0.1
    Jan 13 13:33:50 localhost OSInstaller[375]: =============================================================================== =
    Jan 13 13:33:50 localhost OSInstaller[375]: It took 0.00 seconds to summarize the package selections.
    Jan 13 13:33:50 localhost OSInstaller[375]: Memory statistics for 'Installing' pane:
    Jan 13 13:33:50 localhost OSInstaller[375]: Physical Memory Allocation:   570 MB wired,     3 MB trapped,   383 MB active,   112 MB inactive,  7124 MB free,  7619 MB usable,  8192 MB total
    Jan 13 13:33:50 localhost OSInstaller[375]: Remote Install Assistant found at 1024:(null)
    Jan 13 13:33:50 localhost OSInstaller[375]: No recovery image found relative to distribution
    Jan 13 13:33:50 localhost OSInstaller[375]: Set authorization level to root for session
    Jan 13 13:33:50 localhost runner[379]: Administrator authorization granted.
    Jan 13 13:33:50 localhost OSInstaller[375]: X Source too new: Source version: 10.10, Destination version: 10.9.5
    Jan 13 13:33:50 localhost OSInstaller[375]: PK will install package file://localhost/System/Installation/Packages/BaseSystemBinaries.pkg (556950528 b)
    Jan 13 13:33:50 localhost OSInstaller[375]: PK will install package file://localhost/System/Installation/Packages/BaseSystemResources.pkg (374965248 b)
    Jan 13 13:33:50 localhost OSInstaller[375]: IF will install package file://localhost/System/Installation/Packages/OSInstall.mpkg (0 b)
    Jan 13 13:33:50 localhost OSInstaller[375]: PK will install package file://localhost/System/Installation/Packages/Essentials.pkg (4720211968 b)
    Jan 13 13:33:50 localhost OSInstaller[375]: PK will install package file://localhost/System/Installation/Packages/BSD.pkg (736843776 b)
    Jan 13 13:33:50 localhost OSInstaller[375]: PK will install package file://localhost/System/Installation/Packages/JavaTools.pkg (94208 b)
    Jan 13 13:33:50 localhost OSInstaller[375]: IF will install package file://localhost/System/Installation/Packages/OSInstall.mpkg (0 b)
    Jan 13 13:33:50 localhost OSInstaller[375]: PK will install package file://localhost/System/Installation/Packages/AdditionalEssentials.pkg (163966976 b)
    Jan 13 13:33:50 localhost OSInstaller[375]: PK will install package file://localhost/System/Installation/Packages/AdditionalSpeechVoices.pkg (293543936 b)
    Jan 13 13:33:50 localhost OSInstaller[375]: PK will install package file://localhost/System/Installation/Packages/AsianLanguagesSupport.pkg (4018176 b)
    Jan 13 13:33:50 localhost OSInstaller[375]: PK will install package file://localhost/System/Installation/Packages/MediaFiles.pkg (235410432 b)
    Jan 13 13:33:50 localhost OSInstaller[375]: PK will install package file://localhost/System/Installation/Packages/JavaEssentials.pkg (6665216 b)
    Jan 13 13:33:50 localhost OSInstaller[375]: PK will install package file://localhost/System/Installation/Packages/OxfordDictionaries.pkg (102292480 b)
    Jan 13 13:33:50 localhost OSInstaller[375]: PK will install package file://localhost/System/Installation/Packages/X11redirect.pkg (3472384 b)
    Jan 13 13:33:50 localhost OSInstaller[375]: PK will install package file://localhost/System/Installation/Packages/OSInstall.pkg (0 b)
    Jan 13 13:33:50 localhost OSInstaller[375]: Total install size including padding: 8272177152 b + 0 b non-OS collection items
    Jan 13 13:33:50 localhost OSInstaller[375]: PFPackage::packageWithURL - can't instantiate package: /System/Installation/Packages/OSInstall.mpkg
    Jan 13 13:33:50 localhost OSInstaller[375]: Error opening package "OSInstall.mpkg".
    Jan 13 13:33:50 localhost OSInstaller[375]: X Source too new: Source version: 10.10, Destination version: 10.9.5
    Jan 13 13:33:51 localhost OSInstaller[375]: Starting installation:
    Jan 13 13:33:51 localhost OSInstaller[375]: Performing volume consistency check on 'Macintosh HD'.
    Jan 13 13:33:51 localhost Unknown[365]: 2015-01-13 13:33:51.165 OS X Installer[375:6907] staging failure request 'crash on OSVolumeFsckQueueElement at 0.'
    Jan 13 13:33:51 localhost OSInstaller[375]: Checking Volume
    Jan 13 13:33:51 localhost OSInstaller[375]: Checking storage system
    Jan 13 13:33:51 localhost OSInstaller[375]: The volume disk0s2 cannot be repaired when it is in use
    Jan 13 13:33:51 localhost OSInstaller[375]: Checking volume
    Jan 13 13:33:51 localhost OSInstaller[375]: disk0s2: Scan for Volume Headers
    Jan 13 13:33:51 localhost OSInstaller[375]: disk0s2: Scan for Disk Labels
    Jan 13 13:33:51 localhost OSInstaller[375]: Logical Volume Group A7CAA79F-A4E9-4611-AC0B-2E9824A3628C on 1 device
    Jan 13 13:33:51 localhost OSInstaller[375]: disk0s2: Scan for Metadata Volume
    Jan 13 13:33:51 localhost OSInstaller[375]: Logical Volume Group has a 24 MB Metadata Volume with double redundancy
    Jan 13 13:33:51 localhost OSInstaller[375]: Start scanning metadata for a valid checkpoint
    Jan 13 13:33:51 localhost OSInstaller[375]: Load and verify Segment Headers
    Jan 13 13:33:51 localhost OSInstaller[375]: Load and verify Checkpoint Payload
    Jan 13 13:33:51 localhost OSInstaller[375]: Load and verify Transaction Segment
    Jan 13 13:33:51 localhost OSInstaller[375]: Incorporate 0 newer non-checkpoint transactions
    Jan 13 13:33:51 localhost OSInstaller[375]: Load and verify Virtual Address Table
    Jan 13 13:33:51 localhost OSInstaller[375]: Load and verify Segment Usage Table
    Jan 13 13:33:51 localhost OSInstaller[375]: Load and verify Metadata Superblock
    Jan 13 13:33:51 localhost OSInstaller[375]: Load and verify Logical Volumes B-Trees
    Jan 13 13:33:51 localhost OSInstaller[375]: Logical Volume Group contains 1 Logical Volume
    Jan 13 13:33:51 localhost OSInstaller[375]: Load and verify 8932E80A-525C-4245-9FB5-72635418DDA0
    Jan 13 13:33:51 localhost OSInstaller[375]: Load and verify 4A31A160-FA79-4F8E-978A-1219DA56872A
    Jan 13 13:33:51 localhost OSInstaller[375]: Load and verify Freespace Summary
    Jan 13 13:33:51 localhost OSInstaller[375]: Load and verify Block Accounting
    Jan 13 13:33:51 localhost OSInstaller[375]: Load and verify Live Virtual Addresses
    Jan 13 13:33:51 localhost OSInstaller[375]: Newest transaction commit checkpoint is valid
    Jan 13 13:33:51 localhost OSInstaller[375]: Load and verify Segment Cleaning
    Jan 13 13:33:51 localhost OSInstaller[375]: The volume A7CAA79F-A4E9-4611-AC0B-2E9824A3628C appears to be OK
    Jan 13 13:33:51 localhost Unknown[365]: 2015-01-13 13:33:51.387 OS X Installer[375:6907] crashing now...
    Jan 13 13:33:57 localhost Language Chooser[364]: Child process exited 6
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.1 - Client: ReportCrash, UID: 0, EUID: 0, GID: 0, EGID: 0
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.1 - ODNodeCreateWithNameAndOptions request, SessionID: 00000000-0000-0000-0000-000000000000, Name: /Local/Default, Options: 0x0
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.1 - loading configuration for '/Local' from '/System/Library/OpenDirectory/Configurations/Local.plist'
    Jan 13 13:33:57 localhost opendirectoryd[101]: Loaded bundle at path '/System/Library/OpenDirectory/Modules/PlistFile.bundle'
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.1 - unable to find authentication module 'AppleID'
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.1 - unable to find authentication module 'ConfigurationProfiles'
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.1 - unable to find service discovery callback for module 'PlistFile'
    Jan 13 13:33:57 localhost opendirectoryd[101]: Registering for network changes
    Jan 13 13:33:57 localhost opendirectoryd[101]: Registered subnode with name '/Local/Default'
    Jan 13 13:33:57 localhost opendirectoryd[101]: 101.2 - Block: nodestate '/Local'
    Jan 13 13:33:57 localhost opendirectoryd[101]: failed to open local node for internal record copy
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.1.3 - Block: nodestate '/Local/Default'
    Jan 13 13:33:57 localhost opendirectoryd[101]: Registering for power changes
    Jan 13 13:33:57 localhost opendirectoryd[101]: 101.2 - nodestate - flagging '/Local' online
    Jan 13 13:33:57 localhost opendirectoryd[101]: Registering for network power changes
    Jan 13 13:33:57 localhost opendirectoryd[101]: 101.2 - Block completed
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.1.3, Module: PlistFile - Node is 10.7 or later
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.1.3 - nodestate - flagging '/Local/Default' online
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.1.3 - Block completed
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.1, Node: /Local/Default - node assigned UUID - 65108202-49AC-4953-BA99-AC6A730ACA38
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.1, Node: /Local/Default - ODNodeCreateWithNameAndOptions completed
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.4 - Client: ReportCrash, UID: 0, EUID: 0, GID: 0, EGID: 0
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.4 - ODNodeCopyDetails request, NodeID: 65108202-49AC-4953-BA99-AC6A730ACA38, Keys: dsAttrTypeStandard:NodePath
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.4, Node: /Local/Default, Module: PlistFile - ODNodeCopyDetails completed, delivered 1 result
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.5 - Client: ReportCrash, UID: 0, EUID: 0, GID: 0, EGID: 0
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.5 - ODNodeRelease request, NodeID: 65108202-49AC-4953-BA99-AC6A730ACA38
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.5, Node: /Local/Default - ODNodeRelease completed
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.6 - Client: ReportCrash, UID: 0, EUID: 0, GID: 0, EGID: 0
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.6 - ODNodeCreateWithNameAndOptions request, SessionID: 00000000-0000-0000-0000-000000000000, Name: /Search, Options: 0x0
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.6 - ODNodeCreateWithNameAndOptions failed with error 'Unknown node name' (2000)
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.7 - Client: ReportCrash, UID: 0, EUID: 0, GID: 0, EGID: 0
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.7 - ODNodeCreateWithNameAndOptions request, SessionID: 00000000-0000-0000-0000-000000000000, Name: /Search, Options: 0x0
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.7 - ODNodeCreateWithNameAndOptions failed with error 'Unknown node name' (2000)
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.8 - Client: ReportCrash, UID: 0, EUID: 0, GID: 0, EGID: 0
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.8 - ODNodeCreateWithNameAndOptions request, SessionID: 00000000-0000-0000-0000-000000000000, Name: /Local/Default, Options: 0x0
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.8, Node: /Local/Default - node assigned UUID - 18D64BF0-76A8-4361-A458-7076B4CB77AC
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.8, Node: /Local/Default - ODNodeCreateWithNameAndOptions completed
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.9 - Client: ReportCrash, UID: 0, EUID: 0, GID: 0, EGID: 0
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.9 - ODQueryCreateWithNode request, NodeID: 18D64BF0-76A8-4361-A458-7076B4CB77AC, RecordType(s): dsRecTypeStandard:Users, Attribute: dsAttrTypeStandard:RecordName, MatchType: Any, Equality: CaseIgnore, Value(s): dsRecordsAll, Requested Attributes: dsAttrTypeStandard:GeneratedUID,dsAttrTypeNative:LinkedIdentity,dsAttrTypeStand ard:RealName,dsAttrTypeStandard:GroupMembership,dsAttrTypeStandard:Picture,dsAtt rTypeStandard:UserCertificate,dsAttrTypeStandard:AppleMetaNodeLocation,dsAttrTyp eStandard:RecordType,dsAttrTypeStandard:Comment,dsAttrTypeStandard:NestedGroups, dsAttrTypeStandard:PrimaryGroupID,dsAttrTypeStandard:AuthenticationAuthority,dsA ttrTypeStandard:Keywords,dsAttrTypeStandard:RecordName,dsAttrTypeStandard:JPEGPh oto,dsAttrTypeNative:_guest,dsAttrTypeStandard:AppleMetaRecordName,dsAttrTypeSta ndard:UserShell,dsAttrTypeStandard:GroupMembers,dsAttrTypeStandard:UniqueID,dsAt trTypeStandard:EMailAddress,dsAttrTypeStandard:NFSHomeDirectory, Max Results: 2147483647
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.9, Node: /Local/Default, Module: PlistFile - ODQueryCreateWithNode completed, delivered 76 results
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.10 - Client: ReportCrash, UID: 0, EUID: 0, GID: 0, EGID: 0
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.10 - ODNodeRelease request, NodeID: 18D64BF0-76A8-4361-A458-7076B4CB77AC
    Jan 13 13:33:57 localhost opendirectoryd[101]: 382.10, Node: /Local/Default - ODNodeRelease completed
    Jan 13 13:33:57 localhost ReportCrash[382]: Process:         OS X Installer [375]
    Jan 13 13:33:57 localhost ReportCrash[382]: Path:            /Volumes/VOLUME/*/OS X Installer.app/Contents/MacOS/OS X Installer
    Jan 13 13:33:57 localhost ReportCrash[382]: Identifier:      OS X Installer
    Jan 13 13:33:57 localhost ReportCrash[382]: Version:         401 (525)
    Jan 13 13:33:57 localhost ReportCrash[382]: Code Type:       X86-64 (Native)
    Jan 13 13:33:57 localhost ReportCrash[382]: Parent Process:  Language Chooser [364]
    Jan 13 13:33:57 localhost ReportCrash[382]: Responsible:     sh [108]
    Jan 13 13:33:57 localhost ReportCrash[382]: User ID:         0
    Jan 13 13:33:57 localhost ReportCrash[382]: 
    Jan 13 13:33:57 localhost ReportCrash[382]: Date/Time:       2015-01-13 13:33:51.497 -0800
    Jan 13 13:33:57 localhost ReportCrash[382]: OS Version:      Mac OS X 10.9.5 (13F34)
    Jan 13 13:33:57 localhost ReportCrash[382]: Report Version:  11
    Jan 13 13:33:57 localhost ReportCrash[382]: Anonymous UUID:  065F97AD-088A-47D8-A98F-7FCD7926F4B8
    Jan 13 13:33:57 localhost ReportCrash[382]: 
    Jan 13 13:33:57 localhost ReportCrash[382]: 
    Jan 13 13:33:57 localhost ReportCrash[382]: Crashed Thread:  5
    Jan 13 13:33:57 localhost ReportCrash[382]: 
    Jan 13 13:33:57 localhost ReportCrash[382]: Exception Type:  EXC_CRASH (SIGABRT)
    Jan 13 13:33:57 localhost ReportCrash[382]: Exception Codes: 0x0000000000000000, 0x0000000000000000
    Jan 13 13:33:57 localhost ReportCrash[382]: 
    Jan 13 13:33:57 localhost ReportCrash[382]: Application Specific Information:
    Jan 13 13:33:57 localhost ReportCrash[382]: abort() called
    Jan 13 13:33:57 localhost ReportCrash[382]: 
    Jan 13 13:33:57 localhost ReportCrash[382]: Thread 0:: Dispatch queue: com.apple.main-thread
    Jan 13 13:33:57 localhost ReportCrash[382]: 0   libsystem_kernel.dylib         0x000000010caa3a1a mach_msg_trap + 10
    Jan 13 13:33:57 localhost ReportCrash[382]: 1   libsystem_kernel.dylib         0x000000010caa2d18 mach_msg + 64
    Jan 13 13:33:57 localhost ReportCrash[382]: 2   com.apple.CoreFoundation       0x000000010a561f15 __CFRunLoopServiceMachPort + 181
    Jan 13 13:33:57 localhost ReportCrash[382]: 3   com.apple.CoreFoundation       0x000000010a561539 __CFRunLoopRun + 1161
    Jan 13 13:33:57 localhost ReportCrash[382]: 4   com.apple.CoreFoundation       0x000000010a560e75 CFRunLoopRunSpecific + 309
    Jan 13 13:33:57 localhost ReportCrash[382]: 5   com.apple.HIToolbox           0x000000010df5aa0d RunCurrentEventLoopInMode + 226
    Jan 13 13:33:57 localhost ReportCrash[382]: 6   com.apple.HIToolbox           0x000000010df5a7b7 ReceiveNextEventCommon + 479
    Jan 13 13:33:57 localhost ReportCrash[382]: 7   com.apple.HIToolbox           0x000000010df5a5bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    Jan 13 13:33:57 localhost ReportCrash[382]: 8   com.apple.AppKit               0x000000010a87324e _DPSNextEvent + 1434
    Jan 13 13:33:57 localhost ReportCrash[382]: 9   com.apple.AppKit               0x000000010a87289b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    Jan 13 13:33:57 localhost ReportCrash[382]: 10  com.apple.AppKit               0x000000010a86699c -[NSApplication run] + 553
    Jan 13 13:33:57 localhost ReportCrash[382]: 11  com.apple.AppKit               0x000000010a851783 NSApplicationMain + 940
    Jan 13 13:33:57 localhost ReportCrash[382]: 12  com.apple.MacOSXInstaller     0x0000000108e8fdaa 0x108e89000 + 28074
    Jan 13 13:33:57 localhost ReportCrash[382]: 13  libdyld.dylib                 0x000000010c90f5fd start + 1
    Jan 13 13:33:57 localhost ReportCrash[382]: 
    Jan 13 13:33:57 localhost ReportCrash[382]: Thread 1:
    Jan 13 13:33:57 localhost ReportCrash[382]: 0   libsystem_kernel.dylib         0x000000010caa7a3a __semwait_signal + 10
    Jan 13 13:33:57 localhost ReportCrash[382]: 1   libsystem_c.dylib             0x000000010c9f5dc0 nanosleep + 200
    Jan 13 13:33:57 localhost ReportCrash[382]: 2   libsystem_c.dylib             0x000000010c9f5c1f sleep + 42
    Jan 13 13:33:57 localhost ReportCrash[382]: 3   com.apple.installframework     0x00000001090a7d47 do_log_watch + 43
    Jan 13 13:33:57 localhost ReportCrash[382]: 4   libsystem_pthread.dylib       0x000000010cbbf899 _pthread_body + 138
    Jan 13 13:33:57 localhost ReportCrash[382]: 5   libsystem_pthread.dylib       0x000000010cbbf72a _pthread_start + 137
    Jan 13 13:33:57 localhost ReportCrash[382]: 6   libsystem_pthread.dylib       0x000000010cbc3fc9 thread_start + 13
    Jan 13 13:33:57 localhost ReportCrash[382]: 
    Jan 13 13:33:57 localhost ReportCrash[382]: Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    Jan 13 13:33:57 localhost ReportCrash[382]: 0   libsystem_kernel.dylib         0x000000010caa8662 kevent64 + 10
    Jan 13 13:33:57 localhost ReportCrash[382]: 1   libdispatch.dylib             0x000000010c8db421 _dispatch_mgr_invoke + 239
    Jan 13 13:33:57 localhost ReportCrash[382]: 2   libdispatch.dylib             0x000000010c8db136 _dispatch_mgr_thread + 52
    Jan 13 13:33:57 localhost ReportCrash[382]: 
    Jan 13 13:33:57 localhost ReportCrash[382]: Thread 3:
    Jan 13 13:33:57 localhost ReportCrash[382]: 0   libsystem_kernel.dylib         0x000000010caa7e6a __workq_kernreturn + 10
    Jan 13 13:33:57 localhost ReportCrash[382]: 1   libsystem_pthread.dylib       0x000000010cbc0f08 _pthread_wqthread + 330
    Jan 13 13:33:57 localhost ReportCrash[382]: 2   libsystem_pthread.dylib       0x000000010cbc3fb9 start_wqthread + 13
    Jan 13 13:33:57 localhost ReportCrash[382]: 
    Jan 13 13:33:57 localhost ReportCrash[382]: Thread 4:
    Jan 13 13:33:57 localhost ReportCrash[382]: 0   libsystem_kernel.dylib         0x000000010caa7e6a __workq_kernreturn + 10
    Jan 13 13:33:57 localhost ReportCrash[382]: 1   libsystem_pthread.dylib       0x000000010cbc0f08 _pthread_wqthread + 330
    Jan 13 13:33:57 localhost ReportCrash[382]: 2   libsystem_pthread.dylib       0x000000010cbc3fb9 start_wqthread + 13
    Jan 13 13:33:57 localhost ReportCrash[382]: 
    Jan 13 13:33:57 localhost ReportCrash[382]: Thread 5 Crashed:
    Jan 13 13:33:57 localhost ReportCrash[382]: 0   libsystem_kernel.dylib         0x000000010caa7866 __pthread_kill + 10
    Jan 13 13:33:57 localhost ReportCrash[382]: 1   libsystem_pthread.dylib       0x000000010cbc035c pthread_kill + 92
    Jan 13 13:33:57 localhost ReportCrash[382]: 2   libsystem_c.dylib             0x000000010c9d6bba __abort + 145
    Jan 13 13:33:57 localhost ReportCrash[382]: 3   libsystem_c.dylib             0x000000010c9d6b29 abort + 140
    Jan 13 13:33:57 localhost ReportCrash[382]: 4   com.apple.installframework     0x00000001090a5c36 -[IFInstallQueueElement _artificialCrashNow] + 23
    Jan 13 13:33:57 localhost ReportCrash[382]: 5   com.apple.installframework     0x000000010908949d -[IFInstallQueueElement(ClientMessaging) setPartialProgress:] + 70
    Jan 13 13:33:57 localhost ReportCrash[382]: 6   com.apple.CoreFoundation       0x000000010a60de0c __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
    Jan 13 13:33:57 localhost ReportCrash[382]: 7   com.apple.CoreFoundation       0x000000010a50182d _CFXNotificationPost + 2893
    Jan 13 13:33:57 localhost ReportCrash[382]: 8   com.apple.Foundation           0x0000000109383e4a -[NSNotificationCenter postNotificationName:object:userInfo:] + 68
    Jan 13 13:33:57 localhost ReportCrash[382]: 9   com.apple.DiskManagement       0x000000010931d448 rx_T2F_oneway_Status_Progress + 153
    Jan 13 13:33:57 localhost ReportCrash[382]: 10  com.apple.DiskManagement       0x000000010932e7ce _XT2F_oneway_Status_Progress + 168
    Jan 13 13:33:57 localhost ReportCrash[382]: 11  com.apple.DiskManagement       0x000000010932ebbc T2F_server + 81
    Jan 13 13:33:57 localhost ReportCrash[382]: 12  com.apple.DiskManagement       0x000000010931cd90 cfrx_T2F + 128
    Jan 13 13:33:57 localhost ReportCrash[382]: 13  com.apple.CoreFoundation       0x000000010a5709c4 __CFMachPortPerform + 388
    Jan 13 13:33:57 localhost ReportCrash[382]: 14  com.apple.CoreFoundation       0x000000010a570829 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 41
    Jan 13 13:33:57 localhost ReportCrash[382]: 15  com.apple.CoreFoundation       0x000000010a57079e __CFRunLoopDoSource1 + 478
    Jan 13 13:33:57 localhost ReportCrash[382]: 16  com.apple.CoreFoundation       0x000000010a5617d6 __CFRunLoopRun + 1830
    Jan 13 13:33:57 localhost ReportCrash[382]: 17  com.apple.CoreFoundation       0x000000010a560e75 CFRunLoopRunSpecific + 309
    Jan 13 13:33:57 localhost ReportCrash[382]: 18  com.apple.Foundation           0x00000001093ea16c -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 253
    Jan 13 13:33:57 localhost ReportCrash[382]: 19  com.apple.Foundation           0x000000010943279b -[NSRunLoop(NSRunLoop) runUntilDate:] + 78
    Jan 13 13:33:57 localhost ReportCrash[382]: 20  com.apple.osinstallframework   0x0000000108fc281a -[OSDiskManager(OSInstallerAdditions) doDiskCheckOnDisk:andRepair:] + 379
    Jan 13 13:33:57 localhost ReportCrash[382]: 21  com.apple.osinstallframework   0x0000000108fb6e36 -[OSVolumeFsckQueueElement _performCheckReturningError:] + 218
    Jan 13 13:33:57 localhost ReportCrash[382]: 22  com.apple.osinstallframework   0x0000000108fb7169 -[OSVolumeFsckQueueElement run] + 160
    Jan 13 13:33:57 localhost ReportCrash[382]: 23  com.apple.installframework     0x000000010907757e -[IFSession(Jobs) _runMetaQueueEngine] + 1342
    Jan 13 13:33:57 localhost ReportCrash[382]: 24  com.apple.Foundation           0x00000001093e7dfb __NSThread__main__ + 1318
    Jan 13 13:33:57 localhost ReportCrash[382]: 25  libsystem_pthread.dylib       0x000000010cbbf899 _pthread_body + 138
    Jan 13 13:33:57 localhost ReportCrash[382]: 26  libsystem_pthread.dylib       0x000000010cbbf72a _pthread_start + 137
    Jan 13 13:33:57 localhost ReportCrash[382]: 27  libsystem_pthread.dylib       0x000000010cbc3fc9 thread_start + 13
    Jan 13 13:33:57 localhost ReportCrash[382]: 
    Jan 13 13:33:57 localhost ReportCrash[382]: Thread 6:
    Jan 13 13:33:57 localhost ReportCrash[382]: 0   libsystem_kernel.dylib         0x000000010caa7716 __psynch_cvwait + 10
    Jan 13 13:33:57 localhost ReportCrash[382]: 1   libsystem_pthread.dylib       0x000000010cbc1c77 _pthread_cond_wait + 787
    Jan 13 13:33:57 localhost ReportCrash[382]: 2   com.apple.Foundation           0x00000001093b8fc0 -[NSCondition waitUntilDate:] + 344
    Jan 13 13:33:57 localhost ReportCrash[382]: 3   com.apple.Foundation           0x00000001093afe68 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    Jan 13 13:33:57 localhost ReportCrash[382]: 4   com.apple.installframework     0x0000000109067cc1 +[IFDTargetController(WorkerThread) _handleTargetRequests] + 157
    Jan 13 13:33:57 localhost ReportCrash[382]: 5   com.apple.Foundation           0x00000001093e7dfb __NSThread__main__ + 1318
    Jan 13 13:33:57 localhost ReportCrash[382]: 6   libsystem_pthread.dylib       0x000000010cbbf899 _pthread_body + 138
    Jan 13 13:33:57 localhost ReportCrash[382]: 7   libsystem_pthread.dylib       0x000000010cbbf72a _pthread_start + 137
    Jan 13 13:33:57 localhost ReportCrash[382]: 8   libsystem_pthread.dylib       0x000000010cbc3fc9 thread_start + 13
    Jan 13 13:33:57 localhost ReportCrash[382]: 
    Jan 13 13:33:57 localhost ReportCrash[382]: Thread 7:
    Jan 13 13:33:57 localhost ReportCrash[382]: 0   libsystem_kernel.dylib         0x000000010caa7e6a __workq_kernreturn + 10
    Jan 13 13:33:57 localhost ReportCrash[382]: 1   libsystem_pthread.dylib       0x000000010cbc0f08 _pthread_wqthread + 330
    Jan 13 13:33:57 localhost ReportCrash[382]: 2   libsystem_pthread.dylib       0x000000010cbc3fb9 start_wqthread + 13
    Jan 13 13:33:57 localhost ReportCrash[382]: 
    Jan 13 13:33:57 localhost ReportCrash[382]: Thread 8:
    Jan 13 13:33:57 localhost ReportCrash[382]: 0   libsystem_kernel.dylib         0x000000010caa3a1a mach_msg_trap + 10
    Jan 13 13:33:57 localhost ReportCrash[382]: 1   libsystem_kernel.dylib         0x000000010caa2d18 mach_msg + 64
    Jan 13 13:33:57 localhost ReportCrash[382]: 2   com.apple.CoreFoundation       0x000000010a561f15 __CFRunLoopServiceMachPort + 181
    Jan 13 13:33:57 localhost ReportCrash[382]: 3   com.apple.CoreFoundation       0x000000010a561539 __CFRunLoopRun + 1161
    Jan 13 13:33:57 localhost ReportCrash[382]: 4   com.apple.CoreFoundation       0x000000010a560e75 CFRunLoopRunSpecific + 309
    Jan 13 13:33:57 localhost ReportCrash[382]: 5   com.apple.AppKit               0x000000010aa1305e _NSEventThread + 144
    Jan 13 13:33:57 localhost ReportCrash[382]: 6   libsystem_pthread.dylib       0x000000010cbbf899 _pthread_body + 138
    Jan 13 13:33:57 localhost ReportCrash[382]: 7   libsystem_pthread.dylib       0x000000010cbbf72a _pthread_start + 137
    Jan 13 13:33:57 localhost ReportCrash[382]: 8   libsystem_pthread.dylib       0x000000010cbc3fc9 thread_start + 13
    Jan 13 13:33:57 localhost ReportCrash[382]: 
    Jan 13 13:33:57 localhost ReportCrash[382]: Thread 9:
    Jan 13 13:33:57 localhost ReportCrash[382]: 0   libsystem_kernel.dylib         0x000000010caa7e6a __workq_kernreturn + 10
    Jan 13 13:33:57 localhost ReportCrash[382]: 1   libsystem_pthread.dylib       0x000000010cbc0f08 _pthread_wqthread + 330
    Jan 13 13:33:57 localhost ReportCrash[382]: 2   libsystem_pthread.dylib       0x000000010cbc3fb9 start_wqthread + 13
    Jan 13 13:33:57 localhost ReportCrash[382]: 
    Jan 13 13:33:57 localhost ReportCrash[382]: Thread 10:: JavaScriptCore::BlockFree
    Jan 13 13:33:57 localhost ReportCrash[382]: 0   libsystem_kernel.dylib         0x000000010caa7716 __psynch_cvwait + 10
    Jan 13 13:33:57 localhost ReportCrash[382]: 1   libsystem_pthread.dylib       0x000000010cbc1c3b _pthread_cond_wait + 727
    Jan 13 13:33:57 localhost ReportCrash[382]: 2   com.apple.JavaScriptCore       0x000000011787ecb5 JSC::BlockAllocator::blockFreeingThreadMain() + 261
    Jan 13 13:33:57 localhost ReportCrash[382]: 3   com.apple.JavaScriptCore       0x0000000117873f4f ***::wtfThreadEntryPoint(void*) + 15
    Jan 13 13:33:57 localhost ReportCrash[382]: 4   libsystem_pthread.dylib       0x000000010cbbf899 _pthread_body + 138
    Jan 13 13:33:57 localhost ReportCrash[382]: 5   libsystem_pthread.dylib       0x000000010cbbf72a _pthread_start + 137
    Jan 13 13:33:57 localhost ReportCrash[382]: 6   libsystem_pthread.dylib       0x000000010cbc3fc9 thread_start + 13
    Jan 13 13:33:57 localhost ReportCrash[382]: 
    Jan 13 13:33:57 localhost ReportCrash[382]: Thread 11:: JavaScriptCore::Marking
    Jan 13 13:33:57 localhost ReportCrash[382]: 0   libsystem_kernel.dylib         0x000000010caa7716 __psynch_cvwait + 10
    Jan 13 13:33:57 localhost ReportCrash[382]: 1   libsystem_pthread.dylib       0x000000010cbc1c3b _pthread_cond_wait + 727
    Jan 13 13:33:57 localhost ReportCrash[382]: 2   com.apple.JavaScriptCore       0x000000011787f727 JSC::GCThread::waitForNextPhase() + 119
    Jan 13 13:33:57 localhost ReportCrash[382]: 3   com.apple.JavaScriptCore       0x000000011787f5b8 JSC::GCThread::gcThreadMain() + 88
    Jan 13 13:33:57 localhost ReportCrash[382]: 4   com.apple.JavaScriptCore       0x0000000117873f4f ***::wtfThreadEntryPoint(void*) + 15
    Jan 13 13:33:57 localhost ReportCrash[382]: 5   libsystem_pthread.dylib       0x000000010cbbf899 _pthread_body + 138
    Jan 13 13:33:57 localhost ReportCrash[382]: 6   libsystem_pthread.dylib       0x000000010cbbf72a _pthread_start + 137
    Jan 13 13:33:57 localhost ReportCrash[382]: 7   libsystem_pthread.dylib       0x000000010cbc3fc9 thread_start + 13
    Jan 13 13:33:57 localhost ReportCrash[382]: 
    Jan 13 13:33:57 localhost ReportCrash[382]: Thread 12:: JavaScriptCore::Marking
    Jan 13 13:33:57 localhost ReportCrash[382]: 0   libsystem_kernel.dylib         0x000000010caa7716 __psynch_cvwait + 10
    Jan 13 13:33:57 localhost ReportCrash[382]: 1   libsystem_pthread.dylib       0x000000010cbc1c3b _pthread_cond_wait + 727
    Jan 13 13:33:57 localhost ReportCrash[382]: 2   com.apple.JavaScriptCore       0x000000011787f727 JSC::GCThread::waitForNextPhase() + 119
    Jan 13 13:33:57 localhost ReportCrash[382]: 3   com.apple.JavaScriptCore       0x000000011787f5b8 JSC::GCThread::gcThreadMain() + 88
    Jan 13 13:33:57 localhost ReportCrash[382]: 4   com.apple.JavaScriptCore       0x0000000117873f4f ***::wtfThreadEntryPoint(void*) + 15
    Jan 13 13:33:57 localhost ReportCrash[382]: 5   libsystem_pthread.dylib       0x000000010cbbf899 _pthread_body + 138
    Jan 13 13:33:57 localhost ReportCrash[382]: 6   libsystem_pthread.dylib       0x000000010cbbf72a _pthread_start + 137
    Jan 13 13:33:57 localhost ReportCrash[382]: 7   libsystem_pthread.dylib       0x000000010cbc3fc9 thread_start + 13
    Jan 13 13:33:57 localhost ReportCrash[382]: 
    Jan 13 13:33:57 localhost ReportCrash[382]: Thread 13:: JavaScriptCore::Marking
    Jan 13 13:33:57 localhost ReportCrash[382]: 0   libsystem_kernel.dylib         0x000000010caa7716 __psynch_cvwait + 10
    Jan 13 13:33:57 localhost ReportCrash[382]: 1   libsystem_pthread.dylib       0x000000010cbc1c3b _pthread_cond_wait + 727
    Jan 13 13:33:57 localhost ReportCrash[382]: 2   com.apple.JavaScriptCore       0x000000011787f727 JSC::GCThread::waitForNextPhase() + 119
    Jan 13 13:33:57 localhost ReportCrash[382]: 3   com.apple.JavaScriptCore       0x000000011787f5b8 JSC::GCThread::gcThreadMain() + 88
    Jan 13 13:33:57 localhost ReportCrash[382]: 4   com.apple.JavaScriptCore       0x0000000117873f4f ***::wtfThreadEntryPoint(void*) + 15
    Jan 13 13:33:57 localhost ReportCrash[382]: 5   libsystem_pthread.dylib       0x000000010cbbf899 _pthread_body + 138
    Jan 13 13:33:57 localhost ReportCrash[382]: 6   libsystem_pthread.dylib       0x000000010cbbf72a _pthread_start + 137
    Jan 13 13:33:57 localhost ReportCrash[382]: 7   libsystem_pthread.dylib       0x000000010cbc3fc9 thread_start + 13
    Jan 13 13:33:57 localhost ReportCrash[382]: 
    Jan 13 13:33:57 localhost ReportCrash[382]: Thread 14:: com.apple.appkit-heartbeat
    Jan 13 13:33:57 localhost ReportCrash[382]: 0   libsystem_kernel.dylib         0x000000010caa7a3a __semwait_signal + 10
    Jan 13 13:33:57 localhost ReportCrash[382]: 1   libsystem_c.dylib             0x000000010c9f5dc0 nanosleep + 200
    Jan 13 13:33:57 localhost ReportCrash[382]: 2   libsystem_c.dylib             0x000000010c9f5cb2 usleep + 54
    Jan 13 13:33:57 localhost ReportCrash[382]: 3   com.apple.AppKit               0x000000010aad717d -[NSUIHeartBeat _heartBeatThread:] + 2132
    Jan 13 13:33:57 localhost ReportCrash[382]: 4   com.apple.Foundation           0x00000001093e7dfb __NSThread__main__ + 1318
    Jan 13 13:33:57 localhost ReportCrash[382]: 5   libsystem_pthread.dylib       0x000000010cbbf899 _pthread_body + 138
    Jan 13 13:33:57 localhost ReportCrash[382]: 6   libsystem_pthread.dylib       0x000000010cbbf72a _pthread_start + 137
    Jan 13 13:33:57 localhost ReportCrash[382]: 7   libsystem_pthread.dylib       0x000000010cbc3fc9 thread_start + 13
    Jan 13 13:33:57 localhost ReportCrash[382]: 
    Jan 13 13:33:57 localhost ReportCrash[382]: Thread 15:
    Jan 13 13:33:57 localhost ReportCrash[382]: 0   libsystem_kernel.dylib         0x000000010caa3a1a mach_msg_trap + 10
    Jan 13 13:33:57 localhost ReportCrash[382]: 1   libsystem_kernel.dylib         0x000000010caa2d18 mach_msg + 64
    Jan 13 13:33:57 localhost ReportCrash[382]: 2   com.apple.CoreFoundation       0x000000010a561f15 __CFRunLoopServiceMachPort + 181
    Jan 13 13:33:57 localhost ReportCrash[382]: 3   com.apple.CoreFoundation       0x000000010a561539 __CFRunLoopRun + 1161
    Jan 13 13:33:57 localhost ReportCrash[382]: 4   com.apple.CoreFoundation       0x000000010a560e75 CFRunLoopRunSpecific + 309
    Jan 13 13:33:57 localhost ReportCrash[382]: 5   com.apple.Foundation           0x00000001093ea16c -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 253
    Jan 13 13:33:57 localhost ReportCrash[382]: 6   com.apple.Foundation           0x000000010943279b -[NSRunLoop(NSRunLoop) runUntilDate:] + 78
    Jan 13 13:33:57 localhost ReportCrash[382]: 7   com.apple.installframework     0x00000001090788a4 -[IFDInstallController(Private) _install] + 1265
    Jan 13 13:33:57 localhost ReportCrash[382]: 8   com.apple.osinstallframework   0x0000000108fb4fb8 -[OSInstallController(Private) _install] + 280
    Jan 13 13:33:57 localhost ReportCrash[382]: 9   com.apple.Foundation           0x00000001093e7dfb __NSThread__main__ + 1318
    Jan 13 13:33:57 localhost ReportCrash[382]: 10  libsystem_pthread.dylib       0x000000010cbbf899 _pthread_body + 138
    Jan 13 13:33:57 localhost ReportCrash[382]: 11  libsystem_pthread.dylib       0x000000010cbbf72a _pthread_start + 137
    Jan 13 13:33:57 localhost ReportCrash[382]: 12  libsystem_pthread.dylib       0x000000010cbc3fc9 thread_start + 13
    Jan 13 13:33:57 localhost ReportCrash[382]: 
    Jan 13 13:33:57 localhost ReportCrash[382]: Thread 5 crashed with X86 Thread State (64-bit):
    Jan 13 13:33:57 localhost ReportCrash[382]:   rax: 0x0000000000000000  rbx: 0x000000011f48e000  rcx: 0x000000011f48b448  rdx: 0x0000000000000000
    Jan 13 13:33:57 localhost ReportCrash[382]:   rdi: 0x0000000000006907  rsi: 0x0000000000000006  rbp: 0x000000011f48b470  rsp: 0x000000011f48b448
    Jan 13 13:33:57 localhost ReportCrash[382]:    r8: 0x0000000000000000   r9: 0x0000000000989680  r10: 0x0000000008000000  r11: 0x0000000000000206
    Jan 13 13:33:57 localhost ReportCrash[382]:   r12: 0x00000000000f4575  r13: 0x000000011f48b6c0  r14: 0x0000000000000006  r15: 0x000000011f48b630
    Jan 13 13:33:57 localhost ReportCrash[382]:   rip: 0x000000010caa7866  rfl: 0x0000000000000206  cr2: 0x0000000101cee038
    Jan 13 13:33:57 localhost ReportCrash[382]:  
    Jan 13 13:33:57 localhost ReportCrash[382]: Logical CPU:     0
    Jan 13 13:33:57 localhost ReportCrash[382]: Error Code:      0x02000148
    Jan 13 13:33:57 localhost ReportCrash[382]: Trap Number:     133
    Jan 13 13:33:57 localhost ReportCrash[382]: 
    Jan 13 13:33:57 localhost ReportCrash[382]: 
    Jan 13 13:33:57 localhost ReportCrash[382]: Binary Images:
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x108e89000 -        0x108e97fff  com.apple.MacOSXInstaller (401 - 525) <B46B3B07-E7DD-3D72-9A90-0B42F921D150> /Volumes/VOLUME/*/OS X Installer.app/Contents/MacOS/OS X Installer
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x108ea3000 -        0x108ee1fff  com.apple.framework.corewlankit (3.3.2 - 332.36) <7F1C53AC-1D4B-365B-A853-EF555D64E277> /System/Library/PrivateFrameworks/CoreWLANKit.framework/Versions/A/CoreWLANKit
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x108f13000 -        0x108f72fff  com.apple.framework.CoreWLAN (4.3.3 - 433.48) <1F17FA12-6E84-309D-9808-C536D445FA6E> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x108fb3000 -        0x10900afff  com.apple.osinstallframework (700 - 846) <2AE123B9-3A32-359E-832B-91F7B9AC09F2> /System/Library/PrivateFrameworks/Install.framework/Frameworks/OSInstall.framew ork/Versions/A/OSInstall
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x109043000 -        0x109043fff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x109048000 -        0x109050fff  com.apple.framework.Assistant (2.0 - 15.1) <7E28F560-5E73-397F-BF54-2DD8E205A4FC> /System/Library/PrivateFrameworks/Assistant.framework/Versions/A/Assistant
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10905e000 -        0x109104fff  com.apple.installframework (700 - 846) <FFA55B49-86C8-304A-90C1-8E908865DCD1> /System/Library/PrivateFrameworks/Install.framework/Versions/A/Install
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x109188000 -        0x10919cfff  com.apple.InstallerPlugins (6.0 - 721) <4C68DDE4-69F1-387C-A519-0EFFFBE77E8B> /System/Library/Frameworks/InstallerPlugins.framework/Versions/A/InstallerPlugi ns
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x1091b7000 -        0x10921affb  com.apple.SystemConfiguration (1.13.1 - 1.13.1) <339A2A90-DA25-33AF-88E5-2FB38A758FEE> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x109259000 -        0x1092c5fff  com.apple.framework.IOKit (2.0.1 - 907.100.13) <057FDBA3-56D6-3903-8C0B-849214BF1985> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x1092ff000 -        0x109304fff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10930e000 -        0x10930efff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x109315000 -        0x10935bfff  com.apple.DiskManagement (6.1 - 744.1) <3DD4CD10-4476-334C-8C4B-991A85AAC272> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x109381000 -        0x109681ff7  com.apple.Foundation (6.9 - 1056.16) <24349208-3603-3F5D-95CC-B379616FBEF8> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x1098c0000 -        0x109a6df27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x109a94000 -        0x109a95ff7  libSystem.B.dylib (1197.1.1) <70B235FC-BCED-367B-BA6C-67C299BAE7D9> /usr/lib/libSystem.B.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x109aa1000 -        0x10a3c0797  com.apple.CoreGraphics (1.600.0 - 599.35.4) <C8CBC664-0CD2-3C7D-A301-9B3BA731250C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10a4f1000 -        0x10a6d6fff  com.apple.CoreFoundation (6.9 - 855.17) <729BD6DA-1F63-3E72-A148-26F21EBF52BB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10a84f000 -        0x10b3c5ff7  com.apple.AppKit (6.9 - 1265.21) <9DC13B27-841D-3839-93B2-3EDE66157BDE> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10bb53000 -        0x10bbc6fff  com.apple.securityfoundation (6.0 - 55122.3) <0FDC8F53-104C-3938-A852-5B33C30BAAD5> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10bc0c000 -        0x10bc36ff0  com.apple.SystemConfiguration.EAP8021X (13.0.0 - 13.0) <DC09B518-9F82-38DD-B37D-4A3279E3230D> /System/Library/PrivateFrameworks/EAP8021X.framework/Versions/A/EAP8021X
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10bc4f000 -        0x10beb3ffd  com.apple.security (7.0 - 55471.14.18) <83A9E8C8-06A1-3F6D-8514-C35CD0DBD370> /System/Library/Frameworks/Security.framework/Versions/A/Security
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10c004000 -        0x10c032ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10c067000 -        0x10c0a9ff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10c0c3000 -        0x10c0c4ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10c0ca000 -        0x10c282ffb  libicucore.A.dylib (511.35) <6F097DA7-147C-32A1-93D2-728A64CF0DC2> /usr/lib/libicucore.A.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10c329000 -        0x10c410ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10c448000 -        0x10c459ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10c462000 -        0x10c5fdff8  com.apple.CFNetwork (673.3 - 673.3) <4375B7CB-34B6-3A26-99AC-2D2404AD9C9B> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10c705000 -        0x10c706fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10c711000 -        0x10c72cff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10c73c000 -        0x10c78efff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10c7f0000 -        0x10c819ff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10c827000 -        0x10c82bff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10c832000 -        0x10c832ff5 +cl_kernels (???) <8B38AC11-4549-48ED-A868-D7E7DFC0DABF> cl_kernels
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10c837000 -        0x10c841fff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10c84f000 -        0x10c84fffd +cl_kernels (???) <7A1249F0-5A6E-453F-BE2E-4EEB31C0D9EF> cl_kernels
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10c851000 -        0x10c858fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10c866000 -        0x10c86dffb  libcopyfile.dylib (103.92.1) <CF29DFF6-0589-3590-834C-82E2316612E8> /usr/lib/system/libcopyfile.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10c874000 -        0x10c8c2fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10c8d8000 -        0x10c8f2fff  libdispatch.dylib (339.92.1) <C4E4A18D-3C3B-3C9C-8709-A4270D998DE7> /usr/lib/system/libdispatch.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10c90c000 -        0x10c90fff7  libdyld.dylib (239.4) <41077DD7-F909-3B8A-863E-72AE304EDE13> /usr/lib/system/libdyld.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10c91a000 -        0x10c91aff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10c920000 -        0x10c927ff8  liblaunch.dylib (842.92.1) <A40A0C7B-3216-39B4-8AE0-B5D3BAF1DA8A> /usr/lib/system/liblaunch.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10c930000 -        0x10c935fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10c93c000 -        0x10c93eff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10c94b000 -        0x10c94cffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10c954000 -        0x10c965ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10c974000 -        0x10c975ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10c97a000 -        0x10ca03ff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10ca33000 -        0x10ca35ff3  libsystem_configuration.dylib (596.15) <4998CB6A-9D54-390A-9F57-5D1AC53C135C> /usr/lib/system/libsystem_configuration.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10ca42000 -        0x10ca4afff  libsystem_dnssd.dylib (522.92.1) <3F8C6A07-3046-3E88-858F-D9CEFC43A405> /usr/lib/system/libsystem_dnssd.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10ca55000 -        0x10ca7cffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10ca92000 -        0x10caaeff7  libsystem_kernel.dylib (2422.115.4) <9EDE872E-2A9E-3A78-8E1D-AB790794A098> /usr/lib/system/libsystem_kernel.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10cad7000 -        0x10cb06fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10cb18000 -        0x10cb33ff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10cb3d000 -        0x10cb3efff  com.apple.SIUInstallationProgress (1.2 - 1.2) <310956B9-D0EC-342B-803A-42F83F9C7BC8> /System/Library/CoreServices/InstallerStatusNotifications.bundle/Contents/MacOS /InstallerStatusNotifications
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10cb44000 -        0x10cb6bff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10cb8c000 -        0x10cb95ffb  libsystem_notify.dylib (121.20.1) <9B34B4FE-F5AD-3F09-A5F0-46AFF3571323> /usr/lib/system/libsystem_notify.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10cba2000 -        0x10cba8ff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10cbbe000 -        0x10cbc5ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10cbd6000 -        0x10cbd7fff  libsystem_sandbox.dylib (278.11.1) <0D0B13EA-6B7A-3AC8-BE60-B548543BEB77> /usr/lib/system/libsystem_sandbox.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10cbdf000 -        0x10cbe3ff7  libsystem_stats.dylib (93.90.3) <C588E082-D94B-3510-9F9A-7AD83B3402DE> /usr/lib/system/libsystem_stats.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10cbeb000 -        0x10cbecfff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10cbf4000 -        0x10cbf9ff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10cc02000 -        0x10cc26fff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10cc47000 -        0x10cc57fff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10cc62000 -        0x10cd4cfff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10cd68000 -        0x10cd75ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10cd7e000 -        0x10cd82fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10cd8c000 -        0x10cd8cffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10cd92000 -        0x10cd9fff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10cdab000 -        0x10d095fff  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10d119000 -        0x10d1a9ff7  com.apple.Metadata (10.7.0 - 800.28) <04D510EA-1169-392F-9702-EE7EB00882E6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10d216000 -        0x10d28dfff  com.apple.CoreServices.OSServices (600.4 - 600.4) <5A44F0B5-4A24-3875-ADE4-5B47D6C7E251> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    Jan 13 13:33:57 localhost ReportCrash[382]:        0x10d337000 -        0x10d3a4fff  com

    If that fails to work, then it was not properly made or completed. It should boot the computer to a screen similar to that of a Recovery HD. Without a Mavericks installer of your own there is no way to restore Mavericks because it can no longer be downloaded. You have the option of Mountain Lion to purchase or Yosemite which is free. You might try fixing your Yosemite system.
    Install or Reinstall OS X from Scratch
    Be sure you backup your files to an external drive or second internal drive because the following procedure will remove everything from the hard drive.
    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Erase the hard drive:
      1. Select Disk Utility from the main menu and click on the Continue button.
      2. After DU loads select your startup volume (usually Macintosh HD) from the
          left side list. Click on the Erase tab in the DU main window.
      3. Set the format type to Mac OS Extended (Journaled.) Optionally, click on
          the Security button and set the Zero Data option to one-pass. Click on
          the Erase button and wait until the process has completed.
      4. Quit DU and return to the main menu.
    Reinstall OS X: Select Reinstall OS X and click on the Install button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible
               because it is three times faster than wireless.

  • How can I change java.policy at runtim on client machines using java webst?

    Hi,
    I have to change java.policy to launch my application through webstart to provide one RuntimePermission "permission java.lang.RuntimePermission "getClassLoader";"
    Its because of a bug in java bug "_http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4809366_"
    So, my problem here is, how can I do this dynamically on each client machine's java.policy.
    I have spent time on this and found some alternatives
    1. Specifying an Additional Policy File at Runtime by launching application "java -Djava.security.manager -Djava.security.policy=someURL SomeApp"
    Please refer more on this "http://docs.oracle.com/javase/6/docs/technotes/guides/security/PolicyFiles.html"
    But, here the problem is, how can I do this using webstart (expert.jnlp) file even though I have the "java-vm-args" tag, its not supporting this argument.
    Please refer "http://docs.oracle.com/javase/6/docs/technotes/guides/javaws/developersguide/syntax.html#security";
    2. Implementing the Policy in code.
    But, not sure how to do this..
    How can I grant the runtime permission on every user's machine dynamycally?
    Here are some background details on this:
    I am using java6 and weblogic 10.3.3.
    Here is thing that I tried,
    My application downloads a few jars to the client machines using java webstart and then it will get the initial context using the t3 protocal. The jars include wlclient.jar and ojdbc6.jar initially.
    The problem here I was facing, when I tried request a bean, it is giving me the following exception in the client logs.It is requesting one state less session bean and I checked the server logs as well and the bean has returned the expected values properly.
    But here I observed one more thing, before this request, one session bean(state less) has been requested successfully.
    java.rmi.MarshalException: CORBA MARSHAL 0 No; nested exception is:
    org.omg.CORBA.MARSHAL: vmcid: 0x0 minor code: 0 completed: No
    at com.sun.corba.se.impl.javax.rmi.CORBA.Util.mapSystemException(Unknown Source)
    at javax.rmi.CORBA.Util.mapSystemException(Unknown Source)
    at com.mbt.expert.server.util._ServerDBQueryObjectRemote_Stub.getExchangeList(Unknown Source)
    at com.mbt.expert.util.DBQueryObject.getExchangeList(DBQueryObject.java:419)
    at com.mbt.expert.view.dialogs.OpenExchangeDialog.actionPerformed(OpenExchangeDialog.java:425)
    at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
    at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
    at java.awt.Component.processMouseEvent(Unknown Source)
    at javax.swing.JComponent.processMouseEvent(Unknown Source)
    at java.awt.Component.processEvent(Unknown Source)
    at java.awt.Container.processEvent(Unknown Source)
    at java.awt.Component.dispatchEventImpl(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Window.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    at java.awt.EventQueue.access$000(Unknown Source)
    at java.awt.EventQueue$1.run(Unknown Source)
    at java.awt.EventQueue$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.AccessControlContext$1.doIntersectionPrivilege(Unknown Source)
    at java.security.AccessControlContext$1.doIntersectionPrivilege(Unknown Source)
    at java.awt.EventQueue$2.run(Unknown Source)
    at java.awt.EventQueue$2.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.AccessControlContext$1.doIntersectionPrivilege(Unknown Source)
    at java.awt.EventQueue.dispatchEvent(Unknown Source)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    at java.awt.Dialog$1.run(Unknown Source)
    at java.awt.Dialog$3.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.awt.Dialog.show(Unknown Source)
    at com.mbt.expert.view.dialogs.OpenExchangeDialog.displayDialog(OpenExchangeDialog.java:606)
    at com.mbt.expert.mdi.actions.OpenExchangeAction.execute(OpenExchangeAction.java:204)
    at com.mbt.mdi.MDICommand.actionPerformed(MDICommand.java:47)
    at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
    at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
    at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source)
    at java.awt.Component.processMouseEvent(Unknown Source)
    at javax.swing.JComponent.processMouseEvent(Unknown Source)
    at java.awt.Component.processEvent(Unknown Source)
    at java.awt.Container.processEvent(Unknown Source)
    at java.awt.Component.dispatchEventImpl(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Window.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    at java.awt.EventQueue.access$000(Unknown Source)
    at java.awt.EventQueue$1.run(Unknown Source)
    at java.awt.EventQueue$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.AccessControlContext$1.doIntersectionPrivilege(Unknown Source)
    at java.security.AccessControlContext$1.doIntersectionPrivilege(Unknown Source)
    at java.awt.EventQueue$2.run(Unknown Source)
    at java.awt.EventQueue$2.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.AccessControlContext$1.doIntersectionPrivilege(Unknown Source)
    at java.awt.EventQueue.dispatchEvent(Unknown Source)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.run(Unknown Source)
    Caused by: org.omg.CORBA.MARSHAL: vmcid: 0x0 minor code: 0 completed: No
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
    at java.lang.reflect.Constructor.newInstance(Unknown Source)
    at java.lang.Class.newInstance0(Unknown Source)
    at java.lang.Class.newInstance(Unknown Source)
    at com.sun.corba.se.impl.protocol.giopmsgheaders.MessageBase.getSystemException(Unknown Source)
    at com.sun.corba.se.impl.protocol.giopmsgheaders.ReplyMessage_1_2.getSystemException(Unknown Source)
    at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.getSystemExceptionReply(Unknown Source)
    at com.sun.corba.se.impl.protocol.CorbaClientRequestDispatcherImpl.processResponse(Unknown Source)
    at com.sun.corba.se.impl.protocol.CorbaClientRequestDispatcherImpl.marshalingComplete(Unknown Source)
    at com.sun.corba.se.impl.protocol.CorbaClientDelegateImpl.invoke(Unknown Source)
    at org.omg.CORBA.portable.ObjectImpl._invoke(Unknown Source)
    ... 80 more
    The same is working in some other machine which are in different network. So, I have replaced the wlclient.jar with the wlthint3client.jar.
    After replacing this jar I was getting the below exception in client logs while requesting a state less session bean.I also checked whether the request is reaching the server (bean) or not, but its not reaching the server.The problem is same at all the machines irrespective of the networks.
    java.lang.AssertionError: Failed to generate class for com.mbt.expert.server.session.LoginSessionBean_tqw6yu_HomeImpl_1033_WLStub
    at weblogic.rmi.internal.StubGenerator.generateStub(StubGenerator.java:797)
    at weblogic.rmi.internal.StubGenerator.generateStub(StubGenerator.java:786)
    at weblogic.rmi.extensions.StubFactory.getStub(StubFactory.java:74)
    at weblogic.rmi.internal.StubInfo.resolveObject(StubInfo.java:213)
    at weblogic.rmi.internal.StubInfo.readResolve(StubInfo.java:207)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at java.io.ObjectStreamClass.invokeReadResolve(Unknown Source)
    at java.io.ObjectInputStream.readOrdinaryObject(Unknown Source)
    at java.io.ObjectInputStream.readObject0(Unknown Source)
    at java.io.ObjectInputStream.readObject(Unknown Source)
    at weblogic.utils.io.ChunkedObjectInputStream.readObject(ChunkedObjectInputStream.java:197)
    at weblogic.rjvm.MsgAbbrevInputStream.readObject(MsgAbbrevInputStream.java:598)
    at weblogic.utils.io.ChunkedObjectInputStream.readObject(ChunkedObjectInputStream.java:193)
    at weblogic.rmi.internal.ObjectIO.readObject(ObjectIO.java:62)
    at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:240)
    at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:348)
    at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259)
    at weblogic.jndi.internal.ServerNamingNode_1033_WLStub.lookup(Unknown Source)
    at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:405)
    at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:393)
    at javax.naming.InitialContext.lookup(Unknown Source)
    at com.mbt.expert.mdi.ExpertVariable.getLoginSession(ExpertVariable.java:455)
    at com.mbt.expert.view.dialogs.Login.okPressed(Login.java:187)
    at com.mbt.expert.view.dialogs.Login.keyPressed(Login.java:141)
    at java.awt.Component.processKeyEvent(Unknown Source)
    at javax.swing.JComponent.processKeyEvent(Unknown Source)
    at java.awt.Component.processEvent(Unknown Source)
    at java.awt.Container.processEvent(Unknown Source)
    at java.awt.Component.dispatchEventImpl(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.KeyboardFocusManager.redispatchEvent(Unknown Source)
    at java.awt.DefaultKeyboardFocusManager.dispatchKeyEvent(Unknown Source)
    at java.awt.DefaultKeyboardFocusManager.preDispatchKeyEvent(Unknown Source)
    at java.awt.DefaultKeyboardFocusManager.typeAheadAssertions(Unknown Source)
    at java.awt.DefaultKeyboardFocusManager.dispatchEvent(Unknown Source)
    at java.awt.Component.dispatchEventImpl(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Window.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.EventQueue.dispatchEvent(Unknown Source)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    at java.awt.Dialog$1.run(Unknown Source)
    at java.awt.event.InvocationEvent.dispatch(Unknown Source)
    at java.awt.EventQueue.dispatchEvent(Unknown Source)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.run(Unknown Source)
    Caused by: java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
    at java.lang.reflect.Constructor.newInstance(Unknown Source)
    at weblogic.rmi.internal.StubGenerator.generateStub(StubGenerator.java:795)
    ... 55 more
    Caused by: java.security.AccessControlException: access denied (java.lang.RuntimePermission getClassLoader)
    at java.security.AccessControlContext.checkPermission(Unknown Source)
    at java.security.AccessController.checkPermission(Unknown Source)
    at java.lang.SecurityManager.checkPermission(Unknown Source)
    at java.lang.ClassLoader.getSystemClassLoader(Unknown Source)
    at weblogic.utils.classloaders.AugmentableClassLoaderManager.getAugmentableClassLoader(AugmentableClassLoaderManager.java:48)
    at weblogic.rmi.internal.ClientRuntimeDescriptor.findLoader(ClientRuntimeDescriptor.java:254)
    at weblogic.rmi.internal.ClientRuntimeDescriptor.getInterfaces(ClientRuntimeDescriptor.java:132)
    at weblogic.rmi.internal.StubInfo.getInterfaces(StubInfo.java:77)
    at com.mbt.expert.server.session.LoginSessionBean_tqw6yu_HomeImpl_1033_WLStub.ensureInitialized(Unknown Source)
    at com.mbt.expert.server.session.LoginSessionBean_tqw6yu_HomeImpl_1033_WLStub.<init>(Unknown Source)
    ... 60 more
    I have tried one more thing, I have taken all the required jars to one of the client machines and executed the main class (by setting the required class path) from cmd using java instead of javaws. Surprisingly, its working fine with out any problem using the wlthint3client.jar.
    I also tried the same, by placing wlclient.jar using java in the same way(from cmd instead of javaws ), but I was facing the same exception while requesting the second session bean and found the same above exception in client logs.
    To resolve this, I come across the java bug that I have given earlier "_http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4809366_".
    In that page, I found a work around for this; suggested by bea to add the Runtime permission "permission java.lang.RuntimePermission "getClassLoader";" to the clients java.policy
    So, please suggest me a way to resolve this problem.
    Please suggest me if you have any other solutions for this problem.
    Thanks in advance :)

    I still think your problem is nothing to do with that ancient non-bug and that you should be looking elsewhere. You might be lucky and find someone here who can say "Ah, I know what that is" but I doubt it because since Oracle took over Sun this site has gone down hill big time.

  • Multiple runtime users for the same runtime

    Hi,
    Is there any GUI method to create multiple runtime users to access the same runtime repository ? Currently, we are running this script:
    =============
    grant WB_U_UII_OWB_REP9204 to &&rep_user;
    grant WB_R_UII_OWB_REP9204 to &&rep_user;
    grant WB_D_UII_OWB_REP9204 to &&rep_user;
    grant WB_A_UII_OWB_REP9204 to &&rep_user;
    ==============
    Is this the correct way of doing it ?
    Thanks and regards,
    Biswa.

    Biswa,
    No way to do this in UI other than the first time the runtime repository is created by the Runtime Assistant. However, as you correctly point out, granting the following 4 roles to any user is all it takes: WB_RT_X, where RT is the name of your Runtime Repository and X is A, D, R or U:
    - The User role (U) gives select access to the public views in the runtime repository.
    - The Developer role (D) gives execute access to the PL/SQL packages in the runtime repository required to perform deployment operations.
    - The Runtime role (R) gives execute access to the PL/SQL packages in the runtime repository required to perform execution operations.
    - The Admin role (A) gives execute access to the PL/SQL packages in the runtime repository required to perform administrative operations.
    So you actually have some flexibility as to what exactly you want to allow the user to do.
    Nikolai Rochnik

  • How to get User Id in every window title bar at runtime

    Hi people
    How can i get Userid in the window title bar at runtime
    prasanth a.s.

    If running on the web you can use webutil or SET_WINDOW_PROPERTY (title). You can use GET_APPLICATION_PROPERTY(usename) as well.
    More info in the Help.
    Regards
    Grant Ronald
    Forms Product Management

  • Deploying an Application to a APEX 3.1.1 Runtime Environment

    Hello Everyone,
    I'm trying to work out how to deploy an application from a development to runtime environment but am facing a few issues / uncertainty and would appreciate any input/help on this. To begin with here is my environment:
    - Apex 3.1.1
    - Two Oracle 9i (9.2.0.8) instances running on different hosts (development environment on host AA and runtime environment on host BB)
    - Using the Oracle 9i HTTP Server with mod_plsql (on both hosts)
    - DEVLWS workspace +(on development env)+
    - DEVSCHEMA schema +(on development env)+
    - USER01 - non-developer & non-admin user +(on development env)+
    - DEV01 - developer and admin user +(on development env)+
    I'm performing this test deployment with the downloaded application Timesheets from apex.oracle.com with the application ID of 111 (when imported into my development environment).
    Situation:_
    I have no issues on the development environment. I can import the Timesheet app into it and run it using either the USER01 or DEV01 ID as it was imported into the DEVSCHEMA schema. However, when I try to deploy over to my runtime environment, here is where things gets sketchy on this.
    1) In order to get this application (Timesheets) to run properly on my runtime environment, I've to perform a Oracle9i EXP of my DEVSCHEMA objects and import this into my runtime environment using the IMP utility to get the proper workspace and associated objects over,
    --> I tried exporting the workspace on the development env but even after running it on the runtime env, I was not able to get the application to run (missing workspace schema, users etc).
    2) From my development environment, I export the Timesheet app with supporting objects option and on the runtime environment, I use SQL*Plus as such:
    SQL> alter session set current_schema=FLOWS_030100;
    SQL> @f111.sql
    Once the script completes, I use the http://hostBB:7776/pls/apex/f?p=111.1 url and was able to get in to the application, however I found things like the images are missing and I've to manually export these again from the development env and run the generated SQL script file on my runtime env.
    Is there a better (and documented step by step) way of doing this kind of deployment? The Apex User Guides talks about creating a packaged application but I didn't see this as a way to deploy specifically into a runtime environment as I followed it and still had missing images. When I did the export of the Timesheet application, I used the DEV01 id and made sure I selected the 'with supporting objects' option but yet I've to do most of the steps manually (i.e. build the schema, tablespace, application tables via exp/imp) and again the images were not included.
    Is there a document / note available that discusses this in better detail (deploy from Development env to Runtime env) so that I can do cut down the manual steps and making sure that my developers can effectively deploy our apps with minimal fuss and headaches? Appreciate any input.

    ...I've to perform a Oracle9i EXP of my DEVSCHEMA objects and import this into my runtime environment using the IMP utility to get the proper workspace and associated objects over,...
    EXP/IMP will not do workspaces. You can use the Application Express apex_admin application to export a workspace to a file. Then, in a runtime environment, you can install that workspace file using SQL*Plus. This way of
    creating the workspace also ensures that it will have the same workspace ID as it did in the original database, making possible the installation of exported applications from application export files from the original
    workspace into the new workspace having the same workspace ID and also where the installed applications are to have their original application IDs.
    ... and still had missing images. When I did the export of the Timesheet application, I used the DEV01 id and made sure I selected the 'with supporting objects' option but yet I've to do most of the steps manually (i.e. build the schema, tablespace, application tables via exp/imp) and again the images were not included.
    Images aren't part of application exports. Exporting the images to a file and then installing them using that file and SQL*Plus is the way to do it.
    As Patrick mentioned, running the application export file in SQL*Plus doesn't run the supporting objects script. It creates the script in the datbase. But in a runtime environment you can't run the script because the runtime environment lacks the Application Builder.
    SQL> alter session set current_schema=FLOWS_030100;
    SQL> @f111.sql
    You can install applications by connecting as a less privileged schema. Any schema assigned to the workspace into which the application is to be installed will do. To install workspace export files (or applications), you can also use a schema that has been granted the role APEX_ADMINISTRATOR_ROLE.
    Scott

  • Runtime error while trying to execute custom F4 help in OOP ALV grid.

    Dear All,
    I am trying to add custom search help for one of my column in ALV grid. I'm using OOP ALV, when i click for search help for that column, the system shows runtime error like below.
    I am new to OOP concept and tried to follow program BCALV_EDIT_03. But not getting this error occur. Please help me.
    With regards.

    Hi,
    In order to be able to provide a search help for a field in an ALV you must do the following things.
    1) The field where F4 help need to be attached needs to be made editable.
    2) Create an event handler class to handle the ONF4 event. You can refer the following code:
        CLASS lcl_alv1_handler DEFINITION.
        PUBLIC SECTION.
           "Tohandle F4 helps
           METHODS handle_f4 FOR EVENT onf4 OF cl_gui_alv_grid
                   IMPORTING e_fieldname e_fieldvalue es_row_no er_event_data
                             et_bad_cells e_display.
        ENDCLASS.
       CLASS lcl_alv1_handler IMPLEMENTATION.
          METHOD handle_f4.
    CASE e_fieldname.
         WHEN 'LIFNR'.               "Set F4 for courier vendor
             SELECT lifnr name1 FROM lfa1 INTO TABLE lt_lifnr.
           IF lt_lifnr IS NOT INITIAL.
             CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
               EXPORTING
                 retfield           = 'LIFNR'
                 window_title   = 'Vendors'
                 value_org       = 'S'
               TABLES
                 value_tab       = lt_lifnr
                 return_tab      = lt_return
               EXCEPTIONS
                 parameter_error = 1
                 no_values_found = 2
                 OTHERS          = 3.
             IF sy-subrc = 0.
               READ TABLE gt_final INTO wa_final_t INDEX es_row_no-row_id.
               IF sy-subrc = 0.
                 READ TABLE lt_return INTO wa_return INDEX 1.
                 IF sy-subrc = 0.
                   CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
                     EXPORTING
                       input  = wa_return-fieldval
                     IMPORTING
                       output = lv_lifnr.
                   wa_final_t-lifnr  = lv_lifnr.
                   MODIFY gt_final FROM wa_final_t INDEX es_row_no-row_id.
                 ENDIF.
               ENDIF.
             ENDIF.
           ENDIF.
          ENDCASE.
             CALL METHOD o_alv->refresh_table_display.
          ENDMETHOD.
       ENDCLASS.
        In the above method, GT_FINAL-LIFNR is being overwritten by the LIFNR you had selected       from F4 help. So we will call the refresh_table_display after it to see the result in the ALV.
    3) After creating the ALV object, add the fields to which the F4 has to be added. For this you
        need to declare an internal table based on  lvc_t_f4. Use the following code. Here O_ALV is    my ALV object.:
       CREATE OBJECT o_container
           EXPORTING
             container_name              = 'CUSTCON'
           EXCEPTIONS
             cntl_error                  = 1
             cntl_system_error           = 2
             create_error                = 3
             lifetime_error              = 4
             lifetime_dynpro_dynpro_link = 5
             OTHERS                      = 6.
         IF sy-subrc <> 0.
    *     MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
         ENDIF.
         CREATE OBJECT o_alv
           EXPORTING
             i_parent          = o_container
           EXCEPTIONS
             error_cntl_create = 1
             error_cntl_init   = 2
             error_cntl_link   = 3
             error_dp_create   = 4
             OTHERS            = 5.
         IF sy-subrc <> 0.
    *     MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
         ENDIF.
       CLEAR : gt_f4, wa_f4.
       wa_f4-fieldname   = 'LIFNR'.
       wa_f4-register    = 'X'.
       wa_f4-getbefore   = space.
       wa_f4-chngeafter  = space.
       APPEND wa_f4 TO gt_f4.
       Here I am assigning F4 to LIFNR field in the final internal table that is displayed using ALV.
       After this register this field for F4.
        CALL METHOD o_alv->register_f4_for_fields
           EXPORTING
              it_f4 = gt_f4.
       CREATE OBJECT o_alv_handler.
       SET HANDLER : o_alv_handler->handle_f4 FOR o_alv1.
       The object o_alv_handler is created based on the event handler class.
    I hope that this will solve your issue. Revert if this is solved.
    Rgards,
    Abijith

Maybe you are looking for