Strange problem when using custom authentication schema

Hello,
I'm building a custom authentication system for the application. Basically, I followed the blog post from Martin: http://www.talkapex.com/2009/03/custom-authentication-status.html
However, the authentication seems working fine at the beginning when running the page 101 from Application Builder and log in, but when I log out from the application (redirect back to page 101) and try to log in with the same credentials, it gives error message "Invalid Login Credentials ". Also, when the application is accessed from public (open page 101 directly using another computer), the authentication doesn't work at all.
Furthermore, I checked the table apex_workspace_access_log and found out that it has "AUTH_SUCCESS" even if using the fake credentials and the login failed (I use "apex_util.set_authentication_result (p_code => 3);" when auth function return false).
I couldn't find the cause of the problem, then I created the same custom authentication in apex.oracle.com. The problem doesn't appear anymore. To make sure they are same, I have double checked the custom authentication in both the development environment and the apex.oracle.com.
This is very strange to me and I don't know where to looking for the problem. Could you give me some advice of what may cause this problem. Thanks in advance!

I found the problem myself. The cause is the VPD, the account table has VPD policy applied, which prevented public access.

Similar Messages

  • Interactive Report - search does not work when using custom authentication

    Apex 3.2.x
    I can authenticate fine with my custom authentication and all of my pages work okay except for one page that uses the Interactive Report feature. When I click 'Filter' then enter the column name, operation (contains, =, like, etc.) and the expression, then click the 'Apply' button, the page just re-displays and my filter information is missing?
    If I first login to Apex, select and run my application, the Interactive Report features work just fine. What's missing?

    More information:
    After login into my Apex workspace (development environment), when I display the Interactive Report and click debug I see this debug message:
    "using existing session report settings"
    When I login using my application's custom authentication and click debug I see this debug message:
    "creating session report settings as copy of public saved report"
    Based on this, it appears that my session info in not set correctly when using custom authentication... but I'm not sure what needs to be set.
    Edited by: user9108091 on Oct 22, 2010 6:44 AM

  • History Attributes when using Custom Authentication Type

    assigned all History Attributes (in the Entity Object Editor) to my audit columns.
    During run time, I find only Created By is assigned the SYSDATE, and Created On, Modified On, and Modified By are null.
    I am using Custom Authentication Type.
    I have read that the History Attributes only work the the JAAS authentication type. Appreciate any one confirming this.
    Also, how do you implement History Attributes if you are using the Custom Authentication Type? Do you need to write Java code?
    Thanks.
    John

    Hi,
    confirmed it only works with container managed authentication performed through JAZN. You can't use this with custom security as otherwise this feature could be overwritten. Still you can provide your own implementation:
    - create a custom table
    - use the setAttr method on the RowImpl class of a VO to store the username
    Frank

  • User!UserID when using custom Authentication in SSRS2012

    We are using FormsAuthentication with SSRS2012 for our custom authentication in SSRS2012.
    What SSRS code determines User!UserID report expressionwhen using a custom authentication provider?
    I ask this because if the FormsAuthCookie.UserName determines the User!UserID value, then I need to use a more unique value than FirstName/LastName when building the forms auth cookie.
    thanks
    scott

    Hi scott,
    UserID is the ID of the user running the report. If you are using Windows Authentication, this value is the domain account of the current user(Domain/username).
    The value of User!UserID is determined by the Reporting Services security extension, which enables the authentication and authorization of users or groups; that is, it enables different users to log on to a report server and, based on their identities,
    perform different tasks or operations.
    By default, Reporting Services uses a Windows-based authentication extension, which uses Windows account protocols to verify the identities of users who claim to have accounts on the system. Reporting Services uses a role-based security system to authorize
    users. The Reporting Services role-based security model is similar to the role-based security models of other technologies.
    WorkFlow about authentication and authorization occur as follows:
    https://msdn.microsoft.com/en-us/library/ms152825.aspx
    The user credentials are submitted to the Reporting Services Web service through the
    LogonUser method.
    This member of the Reporting Services Web service can be used to pass user credentials to a report server for validation. Your underlying security extension implements
    IAuthenticationExtension.LogonUser which contains your custom authentication code. In the Forms Authentication sample,
    LogonUser, which performs an authentication check against the supplied credentials and a custom user store in a database. An example of an implementation of
    LogonUser looks like this:
    https://msdn.microsoft.com/en-us/library/ms152899.aspx
    If you still have any problem, please feel free to ask.
    Regards
    Vicky Liu
    If you have any feedback on our support, please click
    here.
    Vicky Liu
    TechNet Community Support

  • Strange problem when using table of object (plsql as webservice)

    Hello..
    I have created this type of package with user "A" which has privilege to create db types and other things
    CREATE OR REPLACE package INIS_PROD.OZP_SKLEP_INTEGRACIJA AS
    procedure p_vrni_predloge
    ( p_vvl_id             in number
    , p_predloga           out t_predloga);
    end OZP_SKLEP_INTEGRACIJA;
    =============================
    procedure p_vrni_predloge
    ( p_vvl_id             in number
    , p_predloga           out t_predloga) is
        l_tab           t_predloga := t_predloga();
        l_obj           o_predloga := o_predloga(null,null,null,null);
    begin
        for pod in
            select  to_number(zia.isk_id) id
            ,       to_number(voz.vvl_id) VRSTA_VOZILA_ID
            ,       to_char(vka_tip.vrednost) opis
            ,       to_char(vka_tip.sifra) sifra
            from    ......
        loop
            print(pod.id);
            l_tab.extend(1);
            l_tab(l_tab.LAST) := o_predloga(pod.id, pod.vrsta_vozila_id, pod.opis, pod.sifra);
        end loop;
        p_predloga := l_tab;
    end;When I expose this package as webservice with user/password from user "A" all works fine..
    When I change the username and password in jdev connection and running (invoke) the webservice I get this exception
    arget URL -- http://pujsapepa:8991/WsIntegracija-WsIntegracija-context-root/wsIntegracijaSoapHttpPort
    11/01/27 12:53:40 Oracle Containers for J2EE 10g (10.1.3.4.0)  initialized
    11/01/27 12:53:40 Web service wsIntegracija has been started on the embedded server
    27.1.2011 12:53:43 oracle.wireless.its.ra.TelnetResourceAdapter run
    INFO: Industrial Telnet Server version: Version 10.1.3.0.0 started-up successfully.
    11/01/27 12:54:03 java.sql.SQLException: Internal Error
    11/01/27 12:54:03      at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:138)
    11/01/27 12:54:03      at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:175)
    11/01/27 12:54:03      at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:240)
    11/01/27 12:54:03      at oracle.jdbc.oracore.OracleTypeCOLLECTION.initCollElemTypeName(OracleTypeCOLLECTION.java:985)
    11/01/27 12:54:03      at oracle.jdbc.oracore.OracleTypeCOLLECTION.getAttributeType(OracleTypeCOLLECTION.java:1015)
    11/01/27 12:54:03      at oracle.jdbc.oracore.OracleNamedType.getFullName(OracleNamedType.java:96)
    11/01/27 12:54:03      at oracle.jdbc.oracore.OracleTypeADT.createStructDescriptor(OracleTypeADT.java:2108)
    11/01/27 12:54:03      at oracle.jdbc.oracore.OracleTypeADT.unpickle81(OracleTypeADT.java:1414)
    11/01/27 12:54:03      at oracle.jdbc.oracore.OracleTypeUPT.unpickle81UPT(OracleTypeUPT.java:422)
    11/01/27 12:54:03      at oracle.jdbc.oracore.OracleTypeUPT.unpickle81rec(OracleTypeUPT.java:383)
    11/01/27 12:54:03      at oracle.jdbc.oracore.OracleTypeCOLLECTION.unpickle81_imgBody_elems(OracleTypeCOLLECTION.java:915)
    11/01/27 12:54:03      at oracle.jdbc.oracore.OracleTypeCOLLECTION.unpickle81_imgBody(OracleTypeCOLLECTION.java:882)
    11/01/27 12:54:03      at oracle.jdbc.oracore.OracleTypeCOLLECTION.unpickle81(OracleTypeCOLLECTION.java:702)
    11/01/27 12:54:03      at oracle.jdbc.oracore.OracleTypeCOLLECTION._unlinearize(OracleTypeCOLLECTION.java:227)
    11/01/27 12:54:03      at oracle.jdbc.oracore.OracleTypeCOLLECTION.unlinearize(OracleTypeCOLLECTION.java:199)
    11/01/27 12:54:03      at oracle.sql.ArrayDescriptor.toOracleArray(ArrayDescriptor.java:563)
    11/01/27 12:54:03      at oracle.sql.ARRAY.getOracleArray(ARRAY.java:526)
    11/01/27 12:54:03      at oracle.jpub.runtime.MutableArray.getLazyOracleArray(MutableArray.java:1239)
    11/01/27 12:54:03      at oracle.jpub.runtime.MutableArray.length(MutableArray.java:1167)
    11/01/27 12:54:03      at in2.TPredloga.getArray(TPredloga.java:81)
    11/01/27 12:54:03      at in2.WsIntegracijaUser.pVrniPredloge(WsIntegracijaUser.java:25)
    11/01/27 12:54:03      at in2.runtime.WsIntegracijaSoapHttp_Tie.invoke_pVrniPredloge(WsIntegracijaSoapHttp_Tie.java:111)
    11/01/27 12:54:03      at in2.runtime.WsIntegracijaSoapHttp_Tie.processingHook(WsIntegracijaSoapHttp_Tie.java:234)
    11/01/27 12:54:03      at oracle.j2ee.ws.server.StreamingHandler.handle(StreamingHandler.java:297)
    11/01/27 12:54:03      at oracle.j2ee.ws.server.JAXRPCProcessor.doEndpointProcessing(JAXRPCProcessor.java:413)
    11/01/27 12:54:03      at oracle.j2ee.ws.server.WebServiceProcessor.invokeEndpointImplementation(WebServiceProcessor.java:349)
    11/01/27 12:54:03      at oracle.j2ee.ws.server.JAXRPCProcessor.doRequestProcessing(JAXRPCProcessor.java:277)
    11/01/27 12:54:03      at oracle.j2ee.ws.server.WebServiceProcessor.processRequest(WebServiceProcessor.java:114)
    11/01/27 12:54:03      at oracle.j2ee.ws.server.JAXRPCProcessor.doService(JAXRPCProcessor.java:134)
    11/01/27 12:54:03      at oracle.j2ee.ws.server.WebServiceServlet.doPost(WebServiceServlet.java:194)
    11/01/27 12:54:03      at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    11/01/27 12:54:03      at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    11/01/27 12:54:03      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
    11/01/27 12:54:03      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    11/01/27 12:54:03      at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    11/01/27 12:54:03      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    11/01/27 12:54:03      at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)
    11/01/27 12:54:03      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
    11/01/27 12:54:03      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
    11/01/27 12:54:03      at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    11/01/27 12:54:03      at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:234)
    11/01/27 12:54:03      at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:29)
    11/01/27 12:54:03      at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:879)
    11/01/27 12:54:03      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
    11/01/27 12:54:03      at java.lang.Thread.run(Thread.java:595)
    27.1.2011 12:54:03 oracle.webservices.serviceI have made all grants and public synonym from A to user B.. but the problem still exists..
    What can be a problem?

    Huh..
    after two days...
    The problem is in wrapper Class for T_PREDLOGA...
    There was not specified the schema where the "T_PREDLOGA" was created.. The strange thing is that i have a public synonym for T_PREDLOGA for all users.. (not just for INIS_PROD).
    Here is the solution (adding schema name)
    __sJT_st.registerOutParameter(2, 2003, "INIS_PROD.T_PREDLOGA");
    instead of
    __sJT_st.registerOutParameter(2, 2003, "T_PREDLOGA");
      public void _pVrniPredloge (
        java.math.BigDecimal P_VVL_ID,
        TPredloga P_PREDLOGA[], Connection __onnScopeMethod)
      throws java.sql.SQLException
        java.sql.Connection __sJT_cc = null;
        oracle.jdbc.OracleCallableStatement __sJT_st=null;
        __sJT_cc = __onnScopeMethod;
        __sJT_st = (oracle.jdbc.OracleCallableStatement) __sJT_cc.prepareCall("BEGIN \"OZP_SKLEP_INTEGRACIJA\".P_VRNI_PREDLOGE(:1 ,:2 ); END;");
        if (P_VVL_ID==null) __sJT_st.setNull(1, 2); else __sJT_st.setBigDecimal(1, P_VVL_ID);
        __sJT_st.registerOutParameter(2, 2003, "INIS_PROD.T_PREDLOGA");
        __sJT_st.executeUpdate();
        P_PREDLOGA[0] = (TPredloga) __sJT_st.getORAData(2, TPredloga.getORADataFactory());
        try { __sJT_st.close(); } catch (Exception e) {}
      }Edited by: Peterv6i on Jan 28, 2011 1:59 PM

  • NIO: Strange problem when using ByteBuffer with non-blocking SocketChannel

    Hi,
    I have a server that uses multiplexed, non-blocking I/O with java.nio. When a client connects, the server waits for the message: <system cmd="knock"/>, returns a message and disconnects the client. The clients are shortly serviced in less than a second.
    But the server newer receive anything from about 20% of the clients - even though it is sent. Or with other words: it is received and the data is contained in the ByteBuffer - SocketChannel.read(ByteBuffer) - but a call to ByteBuffer.remaing() returns 0 !!
    ByteBuffer receiveBuf = ByteBuffer.allocate(65536);
    receiveBuf.clear(); // the code is elsewhere used for longer living clients
    int readBytes = channel.read(receiveBuf);
    receiveBuf.flip();
    StringBuffer sb = new StringBuffer();
    System.out.println(" * Remaining: "+receiveBuf.remaining()); // writes: ' * Remaining: 0'
    System.out.println(" * Received: "+new String(receiveBuf.array())); // writes: ' * Received: <system cmd="knock"/>'
    while(receiveBuf.remaining() >= 2) {
      byte b = receiveBuf.get();
      sb.append((char)b);
    System.out.println(" * sb content: "+sb.toString()); // writes: ' * sb content: 'The ByteBuffer clearly receives the correct data, but the ByteBuffer.remaining() returns 0 and therefore the StringBuffer will never have any content.
    The problem seems to occur randomly and for about 20% of the clients (simulated from the same computer and therefore has the same bandwidth and so on).
    Anyone knows what is going on, and how to solve the problem !?

    It's always possible in any read that the number of bytes read is less than the number of bytes requested. You need to keep reading until you have got everything you expected, and cope with every possible error condition on each iteration.
    EJP

  • JTree selection problem when using custom renderer and editor

    Hello:
    I created a JTree with custom renderer and editor.
    The customization makes JCheckBox to be the component
    responsible for editing and rendering.
    The problem is that when I click on the node with the checkbox
    the JTree selection model does not get updated.
    Without customizations of the editor and renderer the MouseEvent would be fired and BasicTreeUI$MouseHandler.mousePressed() method would call
    the selectPathForEvent() method which would be responsible for updating
    the selection model. At the same time if I attach a mouse listener to the JTree (customized) I see the events when clicking on the nodes. It seems like the MouseEvent gets lost and somehow as a result of which the selection model does not get updated.
    Am I missing something?
    Thanks
    Alexander

    You probably forgot to call super.getTreeCellRendererComponent(...) at the beginning of your getTreeCellRendererComponent(...) method in your custom renderer.
    Or maybe in the getTreeCellEditorComponent(...) of the TreeCellEditor...

  • A strange problem when using GlobalApp

    After installing workshop on a new computer, I cannot run my application locally anymore. I use a variable in GlobalApp to store a value from my parent flow before I start a nested flow. Like this:
    globalApp.userCredentials = userCred;
    globalApp.userFullName = userCred.getUserFullName();
    In the nested flow I retrieve the value:
    userRealmValues = globalApp.userCredentials.getUserRealms().split(";");
    Now, this worked fine on the old computer, but on the new I can observe that the instance of the object globalApp CHANGES when moving from the parentflow to the nested flow!!!
    This, of course gives a Null pointer exception.
    Also, building an .EAR and deploying it on my test server works fine, so it is only the localhost server that is the problem.
    I use workshop 8.1 sp4.
    Any ideas anyone?
    kind regards
    Søren Werner

    Hi
    You are correct. This appears to be a bug on 8.1sp5. It works fine if you use a ear but a exploded app fails.
    Also this appears to be a regression as on sp4 this works fine. I will provide more info after a bug report is raised so you can follow up with BEA support via a support case.
    Thanks
    Vimala

  • A strange problem when using GMail

    Hi
    I have a MacBook Pro and when I get connected to internet any website works fine except GMail and Orkut which is hosted by google as well. The problem is when I log in to my gmail account my inbox will be displayed but in a couple of second a transparent black page will be shown and no key will work, the message on this page says that I need to restart the computer, and asks me to hold down the on/off button. This happens for orkut.com as the same.
    At first I thought it is a browser issue but even with Safari I have the same problem. Can anybody help me out of this?

    Hi William
    There is no folder named Panic, but in DiagnosticReports I found some log file with 'panic' extensions it seems that my vodafone USB modem hangs because there is a file with vodafone name,
    Here is content of file 'Vodafone Mobile Broadband2010-07-25-183355white-apple.hang'
    Date/Time: 2010-07-25 18:32:51 +1000
    OS Version: 10.6.4 (Build 10F569)
    Architecture: x86_64
    Report Version: 6
    Command: Vodafone Mobile Broadband
    Path: /Applications/Vodafone Mobile Broadband.app/Contents/MacOS/Vodafone Mobile Broadband
    Version: 3.04.09.02 (11447M)
    Parent: launchd [95]
    PID: 152
    Event: hang
    Duration: 8.69s (sampling started after 2 seconds)
    Steps: 67 (100ms sampling interval)
    Pageins: 22
    Pageouts: 0
    Process: Vodafone Mobile Broadband [152]
    Path: /Applications/Vodafone Mobile Broadband.app/Contents/MacOS/Vodafone Mobile Broadband
    UID: 501
    Process: AirPort Base Station Agent [129]
    Path: /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
    UID: 501
    Thread 75017a8 DispatchQueue 1
    User stack:
    67 ??? (in AirPort Base Station Agent + 5692) [0x10000163c]
    67 NSApplicationMain + 364 (in AppKit) [0x7fff8326b5f8]
    67 -[NSApplication run] + 395 (in AppKit) [0x7fff832728d3]
    67 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155 (in AppKit) [0x7fff832acbed]
    67 _DPSNextEvent + 708 (in AppKit) [0x7fff832ad29e]
    67 BlockUntilNextEventMatchingListInMode + 59 (in HIToolbox) [0x7fff8276c5d8]
    67 ReceiveNextEventCommon + 310 (in HIToolbox) [0x7fff8276c71f]
    67 RunCurrentEventLoopInMode + 333 (in HIToolbox) [0x7fff8276c91a]
    67 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    67 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 75d2000 DispatchQueue 2
    User stack:
    67 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    67 pthreadwqthread + 353 (in libSystem.B.dylib) [0x7fff888ce088]
    67 dispatch_workerthread2 + 252 (in libSystem.B.dylib) [0x7fff888ce75e]
    67 dispatch_queueinvoke + 185 (in libSystem.B.dylib) [0x7fff888cec34]
    67 kevent + 10 (in libSystem.B.dylib) [0x7fff888cd08a]
    Kernel stack:
    67 kevent + 97 [0x4701de]
    Thread 7697000
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 select$DARWIN_EXTSN + 10 (in libSystem.B.dylib) [0x7fff888f7dce]
    Kernel stack:
    67 sleep + 52 [0x486bac]
    Thread 769bb7c
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 ??? (in AirPort Base Station Agent + 117988) [0x10001cce4]
    67 ??? (in AirPort Base Station Agent + 106856) [0x10001a168]
    67 ??? (in AirPort Base Station Agent + 118817) [0x10001d021]
    67 _semwaitsignal + 10 (in libSystem.B.dylib) [0x7fff888eeeb6]
    Kernel stack:
    67 semaphorewaitcontinue + 0 [0x22a270]
    Thread 70ad7a8
    User stack:
    38 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    38 _workqkernreturn + 10 (in libSystem.B.dylib) [0x7fff888cdeaa]
    Kernel stack:
    38 bsdthread_create + 1313 [0x4c9daa]
    Binary Images:
    0x100000000 - 0x100027fff com.apple.AirPortBaseStationAgent 1.5.5 (155.2) <00010203-0405-0607-0809-0A0B0C0D0E0F> /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
    0x7fff80de8000 - 0x7fff80f5dff7 com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff8273e000 - 0x7fff82a3cfe7 com.apple.HIToolbox 1.6.3 (???) <CF0C8524-FA82-3908-ACD0-A9176C704AED> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff83269000 - 0x7fff83c5ffff com.apple.AppKit 6.6.6 (1038.29) <7BDD335D-5425-0354-5AD6-41C4F1B4A2F4> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff888b3000 - 0x7fff88a73fef libSystem.B.dylib ??? (???) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    Process: AppleSpell [269]
    Path: /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    UID: 501
    Thread 59d0000 DispatchQueue 1
    User stack:
    67 ??? (in AppleSpell + 4816) [0x1000012d0]
    67 ??? (in AppleSpell + 5472) [0x100001560]
    67 -[NSSpellServer run] + 72 (in Foundation) [0x7fff8421e78a]
    67 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff80e335d6]
    67 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    67 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 741b3d4 DispatchQueue 2
    User stack:
    67 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    67 pthreadwqthread + 353 (in libSystem.B.dylib) [0x7fff888ce088]
    67 dispatch_workerthread2 + 252 (in libSystem.B.dylib) [0x7fff888ce75e]
    67 dispatch_queueinvoke + 185 (in libSystem.B.dylib) [0x7fff888cec34]
    67 kevent + 10 (in libSystem.B.dylib) [0x7fff888cd08a]
    Kernel stack:
    67 kevent + 97 [0x4701de]
    Binary Images:
    0x100000000 - 0x1000a9fe7 com.apple.AppleSpell 1.6.2 (62.2) <B3C504CB-5E66-639E-9F2A-2F184565496A> /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    0x7fff80de8000 - 0x7fff80f5dff7 com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff8419f000 - 0x7fff84420fef com.apple.Foundation 6.6.3 (751.29) <DAEDB589-9F59-9556-CF8D-07556317937B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff888b3000 - 0x7fff88a73fef libSystem.B.dylib ??? (???) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    Process: autofsd [46]
    Path: /usr/libexec/autofsd
    UID: 0
    Thread 5f65000 DispatchQueue 1
    User stack:
    67 ??? (in autofsd + 5340) [0x1000014dc]
    67 ??? (in autofsd + 6461) [0x10000193d]
    67 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff80e335d6]
    67 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    67 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 5ea43d4 DispatchQueue 2
    User stack:
    67 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    67 pthreadwqthread + 353 (in libSystem.B.dylib) [0x7fff888ce088]
    67 dispatch_workerthread2 + 252 (in libSystem.B.dylib) [0x7fff888ce75e]
    67 dispatch_queueinvoke + 185 (in libSystem.B.dylib) [0x7fff888cec34]
    67 kevent + 10 (in libSystem.B.dylib) [0x7fff888cd08a]
    Kernel stack:
    67 kevent + 97 [0x4701de]
    Binary Images:
    0x100000000 - 0x100001ff7 autofsd ??? (???) <E07FB03F-038C-D995-51F3-FF8A686F645B> /usr/libexec/autofsd
    0x7fff80de8000 - 0x7fff80f5dff7 com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff888b3000 - 0x7fff88a73fef libSystem.B.dylib ??? (???) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    Process: blued [45]
    Path: /usr/sbin/blued
    UID: 0
    Thread 5f653d4 DispatchQueue 1
    User stack:
    67 ??? (in blued + 6468) [0x100001944]
    67 ??? (in blued + 154202) [0x100025a5a]
    67 -[NSRunLoop(NSRunLoop) run] + 77 (in Foundation) [0x7fff841ea8f7]
    67 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 270 (in Foundation) [0x7fff841eaa18]
    67 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    67 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 66cdb7c DispatchQueue 2
    User stack:
    67 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    67 pthreadwqthread + 353 (in libSystem.B.dylib) [0x7fff888ce088]
    67 dispatch_workerthread2 + 252 (in libSystem.B.dylib) [0x7fff888ce75e]
    67 dispatch_queueinvoke + 185 (in libSystem.B.dylib) [0x7fff888cec34]
    67 kevent + 10 (in libSystem.B.dylib) [0x7fff888cd08a]
    Kernel stack:
    67 kevent + 97 [0x4701de]
    Binary Images:
    0x100000000 - 0x100048fe7 blued ??? (???) <068B2E13-FC01-B62A-805A-578C75BCFA12> /usr/sbin/blued
    0x7fff80de8000 - 0x7fff80f5dff7 com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff8419f000 - 0x7fff84420fef com.apple.Foundation 6.6.3 (751.29) <DAEDB589-9F59-9556-CF8D-07556317937B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff888b3000 - 0x7fff88a73fef libSystem.B.dylib ??? (???) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    Process: configd [13]
    Path: /usr/libexec/configd
    UID: 0
    Thread 5873000 DispatchQueue 1
    User stack:
    67 start + 52 (in configd) [0x100000cf0]
    67 main + 2051 (in configd) [0x100001506]
    67 server_loop + 72 (in configd) [0x100001d5c]
    67 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    67 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 586f7a8 DispatchQueue 2
    User stack:
    67 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    67 pthreadwqthread + 353 (in libSystem.B.dylib) [0x7fff888ce088]
    67 dispatch_workerthread2 + 252 (in libSystem.B.dylib) [0x7fff888ce75e]
    67 dispatch_queueinvoke + 185 (in libSystem.B.dylib) [0x7fff888cec34]
    67 kevent + 10 (in libSystem.B.dylib) [0x7fff888cd08a]
    Kernel stack:
    67 kevent + 97 [0x4701de]
    Thread 58513d4
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 plugin_exec + 1440 (in configd) [0x1000034c3]
    67 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff80e335d6]
    67 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    67 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 5e1a7a8
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 io_pm_force_activesettings + 2266 (in PowerManagement) [0x10038c968]
    67 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff80e335d6]
    67 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    67 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 66b1000
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 pppcntlrunthread + 1595 (in PPPController) [0x1005cb90d]
    67 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff80e335d6]
    67 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    67 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 66c9000
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 select$DARWIN_EXTSN + 10 (in libSystem.B.dylib) [0x7fff888f7dce]
    Kernel stack:
    67 sleep + 52 [0x486bac]
    Thread 66b77a8
    User stack:
    50 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    50 _workqkernreturn + 10 (in libSystem.B.dylib) [0x7fff888cdeaa]
    Kernel stack:
    50 bsdthread_create + 1313 [0x4c9daa]
    Binary Images:
    0x100000000 - 0x100026ff7 configd ??? (???) <74FC6898-E16A-3A28-B6B5-5E185A6B1D19> /usr/libexec/configd
    0x100389000 - 0x10039afff com.apple.SystemConfiguration.PowerManagement 160.0.0 (160.0.0) <691A8193-3BE4-69C5-71D0-6D4BC738998D> /System/Library/SystemConfiguration/PowerManagement.bundle/Contents/MacOS/Power Management
    0x1005b9000 - 0x1005e2fff com.apple.SystemConfiguration.PPPController 1.5 (1.5) <900FD5A8-2F19-6919-1AF2-71C70F36E834> /System/Library/SystemConfiguration/PPPController.bundle/Contents/MacOS/PPPCont roller
    0x7fff80de8000 - 0x7fff80f5dff7 com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff888b3000 - 0x7fff88a73fef libSystem.B.dylib ??? (???) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    Process: coreaudiod [89]
    Path: /usr/sbin/coreaudiod
    UID: 202
    Thread 66cbb7c DispatchQueue 1
    User stack:
    67 ??? (in coreaudiod + 2964) [0x100000b94]
    67 ??? (in coreaudiod + 26320) [0x1000066d0]
    67 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    67 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 6e00b7c DispatchQueue 2
    User stack:
    67 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    67 pthreadwqthread + 353 (in libSystem.B.dylib) [0x7fff888ce088]
    67 dispatch_workerthread2 + 252 (in libSystem.B.dylib) [0x7fff888ce75e]
    67 dispatch_queueinvoke + 185 (in libSystem.B.dylib) [0x7fff888cec34]
    67 kevent + 10 (in libSystem.B.dylib) [0x7fff888cd08a]
    Kernel stack:
    67 kevent + 97 [0x4701de]
    Thread 667d3d4
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 CAPThread::Entry(CAPThread*) + 125 (in CoreAudio) [0x7fff84680af5]
    67 HALRunLoop::OwnThread(void*) + 152 (in CoreAudio) [0x7fff84693af6]
    67 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    67 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 76b03d4
    User stack:
    50 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    50 _workqkernreturn + 10 (in libSystem.B.dylib) [0x7fff888cdeaa]
    Kernel stack:
    50 bsdthread_create + 1313 [0x4c9daa]
    Binary Images:
    0x100000000 - 0x10001fff7 coreaudiod ??? (???) <9A14795C-2B28-130F-43A3-183AB48F75D8> /usr/sbin/coreaudiod
    0x7fff80de8000 - 0x7fff80f5dff7 com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff84662000 - 0x7fff846e1fef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <243E456E-7A74-BE76-FF18-E589BDCAA785> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff888b3000 - 0x7fff88a73fef libSystem.B.dylib ??? (???) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    Process: coreservicesd [68]
    Path: /System/Library/CoreServices/coreservicesd
    UID: 0
    Thread 5f273d4 DispatchQueue 1
    User stack:
    67 ??? (in coreservicesd + 3756) [0x100000eac]
    67 _CoreServicesServerMain + 522 (in CarbonCore) [0x7fff84f3a17e]
    67 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff80e335d6]
    67 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    67 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 5fe27a8 DispatchQueue 2
    User stack:
    67 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    67 pthreadwqthread + 353 (in libSystem.B.dylib) [0x7fff888ce088]
    67 dispatch_workerthread2 + 252 (in libSystem.B.dylib) [0x7fff888ce75e]
    67 dispatch_queueinvoke + 185 (in libSystem.B.dylib) [0x7fff888cec34]
    67 kevent + 10 (in libSystem.B.dylib) [0x7fff888cd08a]
    Kernel stack:
    67 kevent + 97 [0x4701de]
    Thread 5f0a7a8
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 read + 10 (in libSystem.B.dylib) [0x7fff888be8e6]
    Kernel stack:
    67 lo64unixscall + 77 [0x29f43d]
    67 unix_syscall64 + 617 [0x4edaf8]
    67 read_nocancel + 158 [0x495760]
    67 write + 312 [0x494fe4]
    67 get_pathbuff + 3054 [0x3039e7]
    67 tsleep + 105 [0x486de7]
    67 wakeup + 786 [0x4869c0]
    67 thread_block + 33 [0x227184]
    67 threadblockreason + 331 [0x2270f6]
    67 thread_dispatch + 1966 [0x226e57]
    67 machineswitchcontext + 753 [0x2a6a27]
    Thread 5f187a8
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 fmodWatchConsumer + 347 (in CarbonCore) [0x7fff84eee12a]
    67 _semwaitsignal + 10 (in libSystem.B.dylib) [0x7fff888eeeb6]
    Kernel stack:
    67 semaphorewaitcontinue + 0 [0x22a270]
    Thread 7026b7c
    User stack:
    50 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    50 _workqkernreturn + 10 (in libSystem.B.dylib) [0x7fff888cdeaa]
    Kernel stack:
    50 bsdthread_create + 1313 [0x4c9daa]
    Binary Images:
    0x100000000 - 0x100000fff coreservicesd ??? (???) <1B2BE925-BFB2-BEA6-D713-00E4D6295200> /System/Library/CoreServices/coreservicesd
    0x7fff80de8000 - 0x7fff80f5dff7 com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff84e8a000 - 0x7fff851bdfe7 com.apple.CoreServices.CarbonCore 861.13 (861.13) <BC2F9B4E-D305-D717-D97E-EC78C7DE9EE9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff888b3000 - 0x7fff88a73fef libSystem.B.dylib ??? (???) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    Thread 5943000
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 ??? (in spindump + 8731) [0x10000221b]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 75d23d4
    User stack:
    57 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    57 _workqkernreturn + 10 (in libSystem.B.dylib) [0x7fff888cdeaa]
    Kernel stack:
    57 bsdthread_create + 1313 [0x4c9daa]
    Thread 77057a8
    User stack:
    50 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    50 _workqkernreturn + 10 (in libSystem.B.dylib) [0x7fff888cdeaa]
    Kernel stack:
    50 bsdthread_create + 1313 [0x4c9daa]
    Thread <multiple> DispatchQueue 14
    User stack:
    9 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    9 pthreadwqthread + 353 (in libSystem.B.dylib) [0x7fff888ce088]
    9 dispatch_workerthread2 + 252 (in libSystem.B.dylib) [0x7fff888ce75e]
    9 dispatch_queueinvoke + 57 (in libSystem.B.dylib) [0x7fff888cebb4]
    9 dispatch_queuedrain + 251 (in libSystem.B.dylib) [0x7fff888ced52]
    9 dispatch_call_block_andrelease + 15 (in libSystem.B.dylib) [0x7fff888f01b0]
    4 ??? (in spindump + 12937) [0x100003289]
    4 ??? (in spindump + 13906) [0x100003652]
    4 _CFBundleCreateWithExecutableURLIfLooksLikeBundle + 187 (in CoreFoundation) [0x7fff80e7647b]
    4 _CFBundleCreateIfLooksLikeBundle + 14 (in CoreFoundation) [0x7fff80e7656e]
    3 _CFBundleCreate + 333 (in CoreFoundation) [0x7fff80df477d]
    3 _CFBundleURLLooksLikeBundleVersion + 65 (in CoreFoundation) [0x7fff80df5821]
    2 _CFBundleCopyDirectoryContentsAtPath + 1627 (in CoreFoundation) [0x7fff80df61ab]
    2 readdir$INODE64 + 67 (in libSystem.B.dylib) [0x7fff888be690]
    2 __getdirentries64 + 10 (in libSystem.B.dylib) [0x7fff888be76a]
    1 _CFBundleCopyDirectoryContentsAtPath + 1741 (in CoreFoundation) [0x7fff80df621d]
    1 CFArrayAppendValue + 144 (in CoreFoundation) [0x7fff80df6440]
    1 _CFArrayReplaceValues + 2543 (in CoreFoundation) [0x7fff80df6e4f]
    1 malloczonemalloc + 82 (in libSystem.B.dylib) [0x7fff888b7f0a]
    1 szonemalloc_shouldclear + 241 (in libSystem.B.dylib) [0x7fff888b803c]
    1 tinymalloc_from_freelist + 1124 (in libSystem.B.dylib) [0x7fff888b9062]
    1 _CFBundleCreate + 697 (in CoreFoundation) [0x7fff80df48e9]
    1 CFBundleGetInfoDictionary + 74 (in CoreFoundation) [0x7fff80dfc2aa]
    1 _CFBundleCopyInfoDictionaryInDirectoryWithVersion + 1005 (in CoreFoundation) [0x7fff80dfc69d]
    1 _CFBundleCopyDirectoryContentsAtPath + 1627 (in CoreFoundation) [0x7fff80df61ab]
    1 readdir$INODE64 + 67 (in libSystem.B.dylib) [0x7fff888be690]
    1 __getdirentries64 + 10 (in libSystem.B.dylib) [0x7fff888be76a]
    4 ??? (in spindump + 18913) [0x1000049e1]
    4 ??? (in spindump + 14520) [0x1000038b8]
    4 dispatchbarrier_syncf + 79 (in libSystem.B.dylib) [0x7fff888e943b]
    3 ??? (in spindump + 12968) [0x1000032a8]
    3 CFBundleGetValueForInfoDictionaryKey + 37 (in CoreFoundation) [0x7fff80e18425]
    3 CFBundleGetLocalInfoDictionary + 85 (in CoreFoundation) [0x7fff80e184c5]
    3 CFBundleCopyResourceURL + 47 (in CoreFoundation) [0x7fff80e1867f]
    3 _CFBundleGetLanguageSearchList + 170 (in CoreFoundation) [0x7fff80e1882a]
    3 _CFBundleAddPreferredLprojNamesInDirectory + 1270 (in CoreFoundation) [0x7fff80e190b6]
    3 _CFBundleTryOnePreferredLprojNameInDirectory + 232 (in CoreFoundation) [0x7fff80e24458]
    3 _CFBundleCopyDirectoryContentsAtPath + 1627 (in CoreFoundation) [0x7fff80df61ab]
    3 readdir$INODE64 + 67 (in libSystem.B.dylib) [0x7fff888be690]
    3 __getdirentries64 + 10 (in libSystem.B.dylib) [0x7fff888be76a]
    1 ??? (in spindump + 12937) [0x100003289]
    1 ??? (in spindump + 13906) [0x100003652]
    1 _CFBundleCreateWithExecutableURLIfLooksLikeBundle + 187 (in CoreFoundation) [0x7fff80e7647b]
    1 _CFBundleCreateIfLooksLikeBundle + 14 (in CoreFoundation) [0x7fff80e7656e]
    1 _CFBundleCreate + 333 (in CoreFoundation) [0x7fff80df477d]
    1 _CFBundleURLLooksLikeBundleVersion + 65 (in CoreFoundation) [0x7fff80df5821]
    1 _CFBundleCopyDirectoryContentsAtPath + 1627 (in CoreFoundation) [0x7fff80df61ab]
    1 readdir$INODE64 + 67 (in libSystem.B.dylib) [0x7fff888be690]
    1 __getdirentries64 + 10 (in libSystem.B.dylib) [0x7fff888be76a]
    1 ??? (in spindump + 12968) [0x1000032a8]
    1 CFBundleGetValueForInfoDictionaryKey + 37 (in CoreFoundation) [0x7fff80e18425]
    1 CFBundleGetLocalInfoDictionary + 85 (in CoreFoundation) [0x7fff80e184c5]
    1 CFBundleCopyResourceURL + 47 (in CoreFoundation) [0x7fff80e1867f]
    1 _CFBundleGetLanguageSearchList + 170 (in CoreFoundation) [0x7fff80e1882a]
    1 _CFBundleAddPreferredLprojNamesInDirectory + 1270 (in CoreFoundation) [0x7fff80e190b6]
    1 _CFBundleTryOnePreferredLprojNameInDirectory + 232 (in CoreFoundation) [0x7fff80e24458]
    1 _CFBundleCopyDirectoryContentsAtPath + 1627 (in CoreFoundation) [0x7fff80df61ab]
    1 readdir$INODE64 + 67 (in libSystem.B.dylib) [0x7fff888be690]
    1 __getdirentries64 + 10 (in libSystem.B.dylib) [0x7fff888be76a]
    Kernel stack:
    8 lo64unixscall + 77 [0x29f43d]
    4 unix_syscall64 + 617 [0x4edaf8]
    4 getdirentries64 + 112 [0x2e3c35]
    4 umask_extended + 984 [0x2e3800]
    4 VNOP_READDIR + 119 [0x2f81cf]
    4 hfsownerrights + 20681 [0x439340]
    4 CompareCatalogKeys + 6740 [0x4141a1]
    3 BTIterateRecords + 450 [0x4440cb]
    3 FindIteratorPosition + 135 [0x44669c]
    3 GetNode + 66 [0x446ac2]
    3 netboot_mountroot + 10522 [0x410036]
    3 buf_biowait + 97 [0x2c8cae]
    3 msleep + 157 [0x486eef]
    3 wakeup + 334 [0x4867fc]
    3 lckmtxsleep + 87 [0x221948]
    3 thread_block + 33 [0x227184]
    3 threadblockreason + 331 [0x2270f6]
    3 thread_dispatch + 1966 [0x226e57]
    3 machineswitchcontext + 753 [0x2a6a27]
    1 BTIterateRecords + 1210 [0x4443c3]
    1 GetNode + 66 [0x446ac2]
    1 netboot_mountroot + 10522 [0x410036]
    1 buf_biowait + 97 [0x2c8cae]
    1 msleep + 157 [0x486eef]
    1 wakeup + 334 [0x4867fc]
    1 lckmtxsleep + 87 [0x221948]
    1 thread_block + 33 [0x227184]
    1 threadblockreason + 331 [0x2270f6]
    1 thread_dispatch + 1966 [0x226e57]
    1 machineswitchcontext + 753 [0x2a6a27]
    4 unix_syscall64 + 932 [0x4edc33]
    4 throttlelowpriio + 134 [0x307f48]
    4 IOSleep + 25 [0x52a567]
    4 delayforinterval + 49 [0x2195c9]
    4 thread_block + 33 [0x227184]
    3 threadblockreason + 331 [0x2270f6]
    3 thread_dispatch + 1966 [0x226e57]
    3 machineswitchcontext + 753 [0x2a6a27]
    1 threadblockreason + 309 [0x2270e0]
    1 thread_go + 1982 [0x2264bc]
    1 thread_setrun + 1351 [0x2256d2]
    1 machine_idle + 239 [0x2a9ade]
    1 threadexceptionreturn + 0 [0x29e695]
    Thread 75d23d4 DispatchQueue 27
    User stack:
    5 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    5 pthreadwqthread + 353 (in libSystem.B.dylib) [0x7fff888ce088]
    5 dispatch_workerthread2 + 252 (in libSystem.B.dylib) [0x7fff888ce75e]
    5 dispatch_queueinvoke + 57 (in libSystem.B.dylib) [0x7fff888cebb4]
    5 dispatch_queuedrain + 251 (in libSystem.B.dylib) [0x7fff888ced52]
    5 dispatch_call_block_andrelease + 15 (in libSystem.B.dylib) [0x7fff888f01b0]
    5 ??? (in spindump + 18913) [0x1000049e1]
    5 ??? (in spindump + 14847) [0x1000039ff]
    5 dispatch_barrier_sync_fslow + 134 (in libSystem.B.dylib) [0x7fff888f0389]
    5 semaphorewaittrap + 10 (in libSystem.B.dylib) [0x7fff888b4336]
    Kernel stack:
    5 semaphorewaitcontinue + 0 [0x22a270]
    Thread 75d23d4 DispatchQueue 11
    User stack:
    1 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    1 pthreadwqthread + 353 (in libSystem.B.dylib) [0x7fff888ce088]
    1 dispatch_workerthread2 + 252 (in libSystem.B.dylib) [0x7fff888ce75e]
    1 dispatch_queueinvoke + 57 (in libSystem.B.dylib) [0x7fff888cebb4]
    1 dispatch_queuedrain + 251 (in libSystem.B.dylib) [0x7fff888ced52]
    1 dispatch_call_block_andrelease + 15 (in libSystem.B.dylib) [0x7fff888f01b0]
    1 ??? (in spindump + 18925) [0x1000049ed]
    1 ??? (in spindump + 19042) [0x100004a62]
    1 dispatchbarrier_syncf + 79 (in libSystem.B.dylib) [0x7fff888e943b]
    1 ??? (in spindump + 19165) [0x100004add]
    1 ??? (in spindump + 19625) [0x100004ca9]
    1 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    1 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Binary Images:
    0x100000000 - 0x100010ff7 spindump ??? (???) <CF9A6B2F-0CEE-B838-5322-7594408E0638> /usr/sbin/spindump
    0x7fff80de8000 - 0x7fff80f5dff7 com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff80f87000 - 0x7fff80fe5ff7 com.apple.framework.IOKit 2.0 (???) <010C3398-7363-8F4B-719C-263867F15F63> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff84662000 - 0x7fff846e1fef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <243E456E-7A74-BE76-FF18-E589BDCAA785> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff888b3000 - 0x7fff88a73fef libSystem.B.dylib ??? (???) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    Process: spindump_symbolicator [365]
    Path: /usr/libexec/spindump_symbolicator
    UID: 0
    Thread 6010000 DispatchQueue <multiple>
    User stack:
    57 ??? (in spindump_symbolicator + 5772) [0x10000168c]
    57 ??? (in spindump_symbolicator + 6159) [0x10000180f]
    57 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff80e335d6]
    57 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    57 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    57 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    1 ??? [0x100015c4e]
    1 ??? [0x100010411]
    1 posix_spawnp + 434 (in libSystem.B.dylib) [0x7fff88979132]
    1 _posixspawn + 10 (in libSystem.B.dylib) [0x7fff888fab72]
    Kernel stack:
    57 ipcmqueue_receivecontinue + 0 [0x210c2f]
    1 lo64unixscall + 77 [0x29f43d]
    1 unix_syscall64 + 617 [0x4edaf8]
    1 posix_spawn + 2132 [0x4730e5]
    1 kcomainit + 2870 [0x472440]
    1 vn_rdwr + 108 [0x2f0899]
    1 vnrdwr64 + 321 [0x2f07ce]
    1 VNOP_READ + 157 [0x2fafc8]
    1 hfsvnopread + 241 [0x424765]
    1 decmpfsreadcompressed + 1155 [0x312397]
    1 decmpfshidesrsrc + 1523 [0x31074a]
    1 com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1 + 16332 [0x90afcc]
    1 com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1 + 14545 [0x90a8d1]
    1 com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1 + 4899 [0x908323]
    1 VNOP_GETXATTR + 119 [0x2f7d8d]
    1 hfsvnopmakenamedstream + 9373 [0x4427d6]
    1 VNOP_READ + 157 [0x2fafc8]
    1 hfsvnopread + 552 [0x42489c]
    1 cluster_read + 61 [0x2d3450]
    1 clusterreadext + 279 [0x2d2415]
    1 cluster_pageout + 3101 [0x2d161b]
    1 msleep + 157 [0x486eef]
    1 wakeup + 334 [0x4867fc]
    1 lckmtxsleep + 87 [0x221948]
    1 thread_block + 33 [0x227184]
    1 threadblockreason + 331 [0x2270f6]
    1 thread_dispatch + 1966 [0x226e57]
    1 machineswitchcontext + 753 [0x2a6a27]
    Thread 75ef7a8 DispatchQueue 2
    User stack:
    57 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    57 pthreadwqthread + 353 (in libSystem.B.dylib) [0x7fff888ce088]
    57 dispatch_workerthread2 + 252 (in libSystem.B.dylib) [0x7fff888ce75e]
    57 dispatch_queueinvoke + 185 (in libSystem.B.dylib) [0x7fff888cec34]
    57 kevent + 10 (in libSystem.B.dylib) [0x7fff888cd08a]
    Kernel stack:
    57 kevent + 97 [0x4701de]
    Thread 77b67a8
    User stack:
    2 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    2 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    2 cleanerthreadmain(void*) + 36 (in CoreSymbolication) [0x7fff80bed0d5]
    2 _semwaitsignal + 10 (in libSystem.B.dylib) [0x7fff888eeeb6]
    Kernel stack:
    2 semaphorewaitcontinue + 0 [0x22a270]
    Binary Images:
    0x100000000 - 0x100001fff spindump_symbolicator ??? (???) <05D4F540-EB3B-5C58-D552-5D287B011A02> /usr/libexec/spindump_symbolicator
    0x7fff80be1000 - 0x7fff80c53fef com.apple.CoreSymbolication 2.0 (23) <06F8561E-4B36-7BF6-31BA-64091B3D8058> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x7fff80de8000 - 0x7fff80f5dff7 com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff888b3000 - 0x7fff88a73fef libSystem.B.dylib ??? (???) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    Process: syslogd [14]
    Path: /usr/sbin/syslogd
    UID: 0
    Thread 5dcbb7c DispatchQueue 1
    User stack:
    67 ??? (in syslogd + 2444) [0x10000098c]
    67 select$DARWIN_EXTSN + 10 (in libSystem.B.dylib) [0x7fff888f7dce]
    Kernel stack:
    67 sleep + 52 [0x486bac]
    Thread 5dcb000
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 ??? (in syslogd + 35937) [0x100008c61]
    67 vprocmgr_logdrain + 80 (in libSystem.B.dylib) [0x7fff889e002e]
    67 vprocmig_logdrain + 95 (in libSystem.B.dylib) [0x7fff889e0a1f]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 5dcb3d4
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 ??? (in syslogd + 46429) [0x10000b55d]
    67 ??? (in syslogd + 36870) [0x100009006]
    67 _semwaitsignal + 10 (in libSystem.B.dylib) [0x7fff888eeeb6]
    Kernel stack:
    67 semaphorewaitcontinue + 0 [0x22a270]
    Thread 5dcb7a8
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 ??? (in syslogd + 45284) [0x10000b0e4]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Binary Images:
    0x100000000 - 0x100013fff syslogd ??? (???) <294E71C5-F936-2D72-B70F-01399F9DFB3E> /usr/sbin/syslogd
    0x7fff888b3000 - 0x7fff88a73fef libSystem.B.dylib ??? (???) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    Process: SystemUIServer [100]
    Path: /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer
    UID: 501
    Thread 6e293d4 DispatchQueue 1
    User stack:
    67 ??? (in SystemUIServer + 69452) [0x100010f4c]
    67 ??? (in SystemUIServer + 71108) [0x1000115c4]
    67 -[NSApplication run] + 395 (in AppKit) [0x7fff832728d3]
    67 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155 (in AppKit) [0x7fff832acbed]
    67 _DPSNextEvent + 708 (in AppKit) [0x7fff832ad29e]
    67 BlockUntilNextEventMatchingListInMode + 59 (in HIToolbox) [0x7fff8276c5d8]
    67 ReceiveNextEventCommon + 310 (in HIToolbox) [0x7fff8276c71f]
    67 RunCurrentEventLoopInMode + 333 (in HIToolbox) [0x7fff8276c91a]
    67 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    67 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 66b13d4 DispatchQueue 2
    User stack:
    67 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    67 pthreadwqthread + 353 (in libSystem.B.dylib) [0x7fff888ce088]
    67 dispatch_workerthread2 + 252 (in libSystem.B.dylib) [0x7fff888ce75e]
    67 dispatch_queueinvoke + 185 (in libSystem.B.dylib) [0x7fff888cec34]
    67 kevent + 10 (in libSystem.B.dylib) [0x7fff888cd08a]
    Kernel stack:
    67 kevent + 97 [0x4701de]
    Thread 7501b7c
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 select$DARWIN_EXTSN + 10 (in libSystem.B.dylib) [0x7fff888f7dce]
    Kernel stack:
    67 sleep + 52 [0x486bac]
    Thread 58303d4
    User stack:
    65 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    65 _workqkernreturn + 10 (in libSystem.B.dylib) [0x7fff888cdeaa]
    Kernel stack:
    65 bsdthread_create + 1313 [0x4c9daa]
    Binary Images:
    0x100000000 - 0x100066ff7 com.apple.systemuiserver 1.6 (298.7) <8C0C1370-356E-7689-A990-CDF1B79372FD> /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer
    0x7fff80de8000 - 0x7fff80f5dff7 com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff8273e000 - 0x7fff82a3cfe7 com.apple.HIToolbox 1.6.3 (???) <CF0C8524-FA82-3908-ACD0-A9176C704AED> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff83269000 - 0x7fff83c5ffff com.apple.AppKit 6.6.6 (1038.29) <7BDD335D-5425-0354-5AD6-41C4F1B4A2F4> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff888b3000 - 0x7fff88a73fef libSystem.B.dylib ??? (???) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    Process: TISwitcher [134]
    Path: /System/Library/CoreServices/Menu Extras/TextInput.menu/Contents/SharedSupport/TISwitcher.app/Contents/MacOS/TISw itcher
    UID: 501
    Thread 70267a8 DispatchQueue 1
    User stack:
    67 ??? (in TISwitcher + 6592) [0x1000019c0]
    67 NSApplicationMain + 364 (in AppKit) [0x7fff8326b5f8]
    67 -[NSApplication run] + 395 (in AppKit) [0x7fff832728d3]
    67 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155 (in AppKit) [0x7fff832acbed]
    67 _DPSNextEvent + 708 (in AppKit) [0x7fff832ad29e]
    67 BlockUntilNextEventMatchingListInMode + 59 (in HIToolbox) [0x7fff8276c5d8]
    67 ReceiveNextEventCommon + 310 (in HIToolbox) [0x7fff8276c71f]
    67 RunCurrentEventLoopInMode + 333 (in HIToolbox) [0x7fff8276c91a]
    67 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    67 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 75b6000 DispatchQueue 2
    User stack:
    67 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    67 pthreadwqthread + 353 (in libSystem.B.dylib) [0x7fff888ce088]
    67 dispatch_workerthread2 + 252 (in libSystem.B.dylib) [0x7fff888ce75e]
    67 dispatch_queueinvoke + 185 (in libSystem.B.dylib) [0x7fff888cec34]
    67 kevent + 10 (in libSystem.B.dylib) [0x7fff888cd08a]
    Kernel stack:
    67 kevent + 97 [0x4701de]
    Thread 6e007a8
    User stack:
    37 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    37 _workqkernreturn + 10 (in libSystem.B.dylib) [0x7fff888cdeaa]
    Kernel stack:
    37 bsdthread_create + 1313 [0x4c9daa]
    Binary Images:
    0x100000000 - 0x100003fff com.apple.TISwitcher 1.0 (1.0) <15CE1323-EC61-DA49-4C14-A4AA76FD82D7> /System/Library/CoreServices/Menu Extras/TextInput.menu/Contents/SharedSupport/TISwitcher.app/Contents/MacOS/TISw itcher
    0x7fff80de8000 - 0x7fff80f5dff7 com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff8273e000 - 0x7fff82a3cfe7 com.apple.HIToolbox 1.6.3 (???) <CF0C8524-FA82-3908-ACD0-A9176C704AED> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff83269000 - 0x7fff83c5ffff com.apple.AppKit 6.6.6 (1038.29) <7BDD335D-5425-0354-5AD6-41C4F1B4A2F4> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff888b3000 - 0x7fff88a73fef libSystem.B.dylib ??? (???) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    Process: usbmuxd [25]
    Path: /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/Resources/u sbmuxd
    UID: 213
    Thread 5f183d4 DispatchQueue 100
    User stack:
    67 ??? (in usbmuxd + 3949) [0x1f6d]
    67 ??? (in usbmuxd + 4160) [0x2040]
    67 ??? (in usbmuxd + 8908) [0x32cc]
    67 CFRunLoopRun + 84 (in CoreFoundation) [0x91accfd4]
    67 CFRunLoopRunSpecific + 452 (in CoreFoundation) [0x91ac7094]
    67 __CFRunLoopRun + 2079 (in CoreFoundation) [0x91ac7faf]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x9442a0fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 6010b7c DispatchQueue 1634545000
    User stack:
    67 start_wqthread + 30 (in libSystem.B.dylib) [0x9444fb86]
    67 pthreadwqthread + 390 (in libSystem.B.dylib) [0x9444fd41]
    67 dispatch_workerthread2 + 240 (in libSystem.B.dylib) [0x944502be]
    67 dispatch_queueinvoke + 163 (in libSystem.B.dylib) [0x94450519]
    67 kevent + 10 (in libSystem.B.dylib) [0x94450942]
    Kernel stack:
    67 kevent + 97 [0x4701de]
    Thread 60107a8
    User stack:
    67 thread_start + 34 (in libSystem.B.dylib) [0x944576a2]
    67 pthreadstart + 345 (in libSystem.B.dylib) [0x9445781d]
    67 select$DARWIN_EXTSN + 10 (in libSystem.B.dylib) [0x94449086]
    Kernel stack:
    67 sleep + 52 [0x486bac]
    Binary Images:
    0x1000 - 0xafff usbmuxd ??? (???) <187D4CDB-ACB0-91BD-B937-A1FF15AE82A7> /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/Resources/u sbmuxd
    0x91a8b000 - 0x91c05fe3 com.apple.CoreFoundation 6.6.3 (550.29) <00373783-3744-F47D-2191-BEEA658F0C3D> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x94429000 - 0x945cffeb libSystem.B.dylib ??? (???) <3441F338-2218-6D36-3F95-3A16FBF6713D> /usr/lib/libSystem.B.dylib
    Process: UserEventAgent [123]
    Path: /usr/libexec/UserEventAgent
    UID: 501
    Thread 704db7c DispatchQueue 1
    User stack:
    67 ??? (in UserEventAgent + 3740) [0x100000e9c]
    67 ??? (in UserEventAgent + 6152) [0x100001808]
    67 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff80e335d6]
    67 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    67 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 75b67a8 DispatchQueue 2
    User stack:
    67 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    67 pthreadwqthread + 353 (in libSystem.B.dylib) [0x7fff888ce088]
    67 dispatch_workerthread2 + 252 (in libSystem.B.dylib) [0x7fff888ce75e]
    67 dispatch_queueinvoke + 185 (in libSystem.B.dylib) [0x7fff888cec34]
    67 kevent + 10 (in libSystem.B.dylib) [0x7fff888cd08a]
    Kernel stack:
    67 kevent + 97 [0x4701de]
    Thread 75603d4
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 _NSThread__main_ + 1429 (in Foundation) [0x7fff841afe8d]
    67 RegisterAppTracker + 11112 (in ACRRDaemon) [0x1000460e8]
    67 -[NSRunLoop(NSRunLoop) run] + 77 (in Foundation) [0x7fff841ea8f7]
    67 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 270 (in Foundation) [0x7fff841eaa18]
    67 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    67 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Thread 77b67a8
    User stack:
    38 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    38 _workqkernreturn + 10 (in libSystem.B.dylib) [0x7fff888cdeaa]
    Kernel stack:
    38 bsdthread_create + 1313 [0x4c9daa]
    Binary Images:
    0x100000000 - 0x100001fff UserEventAgent ??? (???) <D7E00D4C-D72A-B658-5BA2-3E0B9A6FA3EA> /usr/libexec/UserEventAgent
    0x100042000 - 0x100048ff7 com.apple.CrashReporter.ACRRDaemonPlugin 10.6.3 (250) <C69F0751-F557-726A-0F25-8F0991A08FF6> /System/Library/UserEventPlugins/ACRRDaemon.plugin/Contents/MacOS/ACRRDaemon
    0x7fff80de8000 - 0x7fff80f5dff7 com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff8419f000 - 0x7fff84420fef com.apple.Foundation 6.6.3 (751.29) <DAEDB589-9F59-9556-CF8D-07556317937B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff888b3000 - 0x7fff88a73fef libSystem.B.dylib ??? (???) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    Process: VMCStatusMenu [151]
    Path: /Applications/Vodafone Mobile Broadband.app/Contents/Resources/VMCStatusMenu.app/Contents/MacOS/VMCStatusMenu
    UID: 501
    Process: WindowServer [73]
    Path: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreGraphic s.framework/Resources/WindowServer
    UID: 88
    Thread 66cd000 DispatchQueue 1
    User stack:
    67 start + 52 (in WindowServer) [0x100000f18]
    67 main + 9 (in WindowServer) [0x100000f29]
    67 CGXGetRootAdminCredentials + 0 (in CoreGraphics) [0x7fff880d2856]
    67 CGXServerLoop + 139 (in CoreGraphics) [0x7fff88107d4a]
    67 CGXRunOneServicesPass + 672 (in CoreGraphics) [0x7fff880fee4d]
    49 CGXRunOneServerPass + 262 (in CoreGraphics) [0x7fff88101c7a]
    49 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    17 CGXRunOneServerPass + 208 (in CoreGraphics) [0x7fff88101c44]
    17 machmsg_overwritetrap + 10 (in libSystem.B.dylib) [0x7fff888b4306]
    1 CGXRunOneServerPass + 451 (in CoreGraphics) [0x7fff88101d37]
    1 CGXPostPortData + 175 (in CoreGraphics) [0x7fff88101f2d]
    1 connectionHandler + 220 (in CoreGraphics) [0x7fff8811fe8a]
    1 _XGetWindowListWithTags + 1 (in CoreGraphics) [0x7fff882513b1]
    Kernel stack:
    66 ipcmqueue_receivecontinue + 0 [0x210c2f]
    1 lo_allintrs + 302 [0x29eb5e]
    1 interrupt + 171 [0x2a8033]
    1 lapic_interrupt + 126 [0x2af602]
    1 intel_startCPU + 405 [0x2b0bd2]
    1 synciss_toiks + 124 [0x2a7939]
    Thread 5f55000 DispatchQueue 2
    User stack:
    67 start_wqthread + 13 (in libSystem.B.dylib) [0x7fff888cdf25]
    67 pthreadwqthread + 353 (in libSystem.B.dylib) [0x7fff888ce088]
    67 dispatch_workerthread2 + 252 (in libSystem.B.dylib) [0x7fff888ce75e]
    67 dispatch_queueinvoke + 185 (in libSystem.B.dylib) [0x7fff888cec34]
    67 kevent + 10 (in libSystem.B.dylib) [0x7fff888cd08a]
    Kernel stack:
    67 kevent + 97 [0x4701de]
    Thread 66cd7a8
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 eventThread + 470 (in CoreGraphics) [0x7fff880e473e]
    67 CFRunLoopRun + 70 (in CoreFoundation) [0x7fff80e335d6]
    67 CFRunLoopRunSpecific + 575 (in CoreFoundation) [0x7fff80e3384f]
    67 __CFRunLoopRun + 1698 (in CoreFoundation) [0x7fff80e343c2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    66 ipcmqueue_receivecontinue + 0 [0x210c2f]
    1 lo64machscall + 77 [0x29f48d]
    1 thread_setuserstack + 405 [0x293eb4]
    1 machmsg_overwritetrap + 586 [0x216d1e]
    1 ipcmqueuereceive + 89 [0x211a9c]
    1 thread_block + 33 [0x227184]
    1 threadblockreason + 309 [0x2270e0]
    1 thread_go + 1982 [0x2264bc]
    1 thread_setrun + 1351 [0x2256d2]
    1 machine_idle + 239 [0x2a9ade]
    Thread 704d3d4
    User stack:
    67 thread_start + 13 (in libSystem.B.dylib) [0x7fff888ed309]
    67 pthreadstart + 331 (in libSystem.B.dylib) [0x7fff888ed456]
    67 thread_fun + 34 (in QuartzCore) [0x7fff801a2b22]
    67 CA::Render::Server::server_thread(void*) + 177 (in QuartzCore) [0x7fff801a2be2]
    67 machmsgtrap + 10 (in libSystem.B.dylib) [0x7fff888b42fa]
    Kernel stack:
    67 ipcmqueue_receivecontinue + 0 [0x210c2f]
    Binary Images:
    0x100000000 - 0x100000fff WindowServer ??? (???) <339853D7-1BCB-51F6-24DA-7615FFB3DDEB> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreGraphic s.framework/Resources/WindowServer
    0x7fff80150000 - 0x7fff804e9ff7 com.apple.QuartzCore 1.6.2 (227.22) <76EE0A32-B20B-F316-ADDD-4230329253D5> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff80de8000 - 0x7fff80f5dff7 com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff88017000 - 0x7fff88714067 com.apple.CoreGraphics 1.543.50 (???) <46A7D60C-0500-B96C-ECAD-1D658487D213> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff888b3000 - 0x7fff88a73fef libSystem.B.dylib ??? (???) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    Process: kernel_task [0]
    Path: kernel_task
    UID: 0
    Version: Darwin Kernel Version 10.4.0: Fri Apr 23 18:28:53 PDT 2010; root:xnu-1504.7.4~1/RELEASE_I386
    Thread 0
    Thread 863a80
    Kernel stack:
    67 vmpageoutcontinue + 0 [0x276c2d]
    Thread 5673000
    Kernel stack:
    67 threadstackenqueue + 90 [0x22e4a1]
    Thread 56733d4
    Kernel stack:
    67 threaddaemoninit + 214 [0x22e20e]
    Thread 56737a8
    Kernel stack:
    67 assertwaitdeadline + 271 [0x227b4f]
    Thread 5673b7c
    Kernel stack:
    67 idle_thread + 0 [0x228015]
    Thread 56743d4
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 56747a8
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 5674b7c
    Kernel stack:
    67 threadcallinitialize + 354 [0x22f966]
    Thread 5829000
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 58297a8
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 5829b7c
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 5830000
    Kernel stack:
    67 call_continuation + 28 [0x29e6cc]
    67 buf_strategy + 1042 [0x2ca408]
    67 msleep + 157 [0x486eef]
    67 wakeup + 334 [0x4867fc]
    67 lckmtxsleep + 87 [0x221948]
    67 thread_block + 33 [0x227184]
    67 threadblockreason + 331 [0x2270f6]
    67 thread_dispatch + 1966 [0x226e57]
    67 machineswitchcontext + 753 [0x2a6a27]
    Thread 58307a8
    Kernel stack:
    67 call_continuation + 28 [0x29e6cc]
    67 com.apple.driver.AppleIntelCPUPowerManagement 105.10.0 + 23498 [0x13a8bca]
    67 IOLockSleep + 39 [0x52b2ab]
    67 lckmtxsleep + 87 [0x221948]
    67 thread_block + 33 [0x227184]
    67 threadblockreason + 331 [0x2270f6]
    67 thread_dispatch + 1966 [0x226e57]
    67 machineswitchcontext + 753 [0x2a6a27]
    Thread 5830b7c
    Kernel stack:
    67 aio_return + 295 [0x4633fd]
    Thread 5839000
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 58393d4
    Kernel stack:
    67 idle_thread + 0 [0x228015]
    Thread 5839b7c
    Kernel stack:
    67 aio_return + 295 [0x4633fd]
    Thread 5851b7c
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 5854000
    Kernel stack:
    67 threadcallinitialize + 663 [0x22fa9b]
    Thread 58543d4
    Kernel stack:
    67 vmpageout_internalstart + 80 [0x2751b3]
    Thread 58553d4
    Kernel stack:
    67 ifnet_detach + 582 [0x319a17]
    Thread 5855b7c
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 5856000
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 58563d4
    Kernel stack:
    67 call_continuation + 28 [0x29e6cc]
    67 ifnetdetachprotocol + 1603 [0x31a281]
    67 msleep + 157 [0x486eef]
    67 wakeup + 334 [0x4867fc]
    67 lckmtxsleep + 87 [0x221948]
    67 thread_block + 33 [0x227184]
    67 threadblockreason + 331 [0x2270f6]
    67 thread_dispatch + 1966 [0x226e57]
    67 machineswitchcontext + 753 [0x2a6a27]
    Thread 58567a8
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 5869000
    Kernel stack:
    67 vmpageout_internalstart + 945 [0x275514]
    Thread 58693d4
    Kernel stack:
    67 threadcallinitialize + 663 [0x22fa9b]
    Thread 58697a8
    Kernel stack:
    67 call_continuation + 28 [0x29e6cc]
    67 auditworkerinit + 956 [0x45ed2d]
    67 audit_cvwait + 50 [0x44fee1]
    67 msleep + 157 [0x486eef]
    67 wakeup + 334 [0x4867fc]
    67 lckmtxsleep + 87 [0x221948]
    67 thread_block + 33 [0x227184]
    67 threadblockreason + 331 [0x2270f6]
    67 thread_dispatch + 1966 [0x226e57]
    67 machineswitchcontext + 753 [0x2a6a27]
    Thread 5869b7c
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 586d000
    Kernel stack:
    67 com.apple.nke.applicationfirewall 2.1.11 + 23895 [0x16afd57]
    Thread 586d7a8
    Kernel stack:
    67 memoryobject_recovernamed + 18276 [0x26f7d5]
    Thread 586db7c
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 586f000
    Kernel stack:
    67 aio_return + 295 [0x4633fd]
    Thread 586f3d4
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 586fb7c
    Kernel stack:
    67 aio_return + 295 [0x4633fd]
    Thread 58733d4
    Kernel stack:
    67 call_continuation + 28 [0x29e6cc]
    67 uxhandlerinit + 475 [0x4d0b5f]
    67 machmsgreceive + 168 [0x216e31]
    67 ipcmqueuereceive + 101 [0x211aa8]
    67 thread_block + 33 [0x227184]
    67 threadblockreason + 331 [0x2270f6]
    67 thread_dispatch + 1966 [0x226e57]
    67 machineswitchcontext + 753 [0x2a6a27]
    Thread 5873b7c
    Kernel stack:
    67 m_freem + 15868 [0x4a6802]
    Thread 591c000
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 591c3d4
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 591c7a8
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 591cb7c
    Kernel stack:
    67 threadcallinitialize + 663 [0x22fa9b]
    Thread 59437a8
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 5ea7b7c
    Kernel stack:
    67 vmpageout_internalstart + 80 [0x2751b3]
    Thread 5f27000
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 5f45b7c
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 60953d4
    Kernel stack:
    67 call_continuation + 28 [0x29e6cc]
    67 com.apple.filesystems.autofs 2.1.0 + 24145 [0x15ade51]
    67 msleep + 157 [0x486eef]
    67 wakeup + 286 [0x4867cc]
    67 lckmtx_sleepdeadline + 104 [0x221340]
    67 thread_block + 33 [0x227184]
    67 threadblockreason + 331 [0x2270f6]
    67 thread_dispatch + 1966 [0x226e57]
    67 machineswitchcontext + 753 [0x2a6a27]
    Thread 66b17a8
    Kernel stack:
    67 call_continuation + 28 [0x29e6cc]
    67 ifnetdetachprotocol + 1603 [0x31a281]
    67 msleep + 157 [0x486eef]
    67 wakeup + 334 [0x4867fc]
    67 lckmtxsleep + 87 [0x221948]
    67 thread_block + 33 [0x227184]
    67 threadblockreason + 331 [0x2270f6]
    67 thread_dispatch + 1966 [0x226e57]
    67 machineswitchcontext + 753 [0x2a6a27]
    Thread 66b7000
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 66c0000
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 66c2000
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 66c2b7c
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 66c3000
    Kernel stack:
    67 call_continuation + 28 [0x29e6cc]
    67 ifnetdetachprotocol + 1603 [0x31a281]
    67 msleep + 157 [0x486eef]
    67 wakeup + 334 [0x4867fc]
    67 lckmtxsleep + 87 [0x221948]
    67 thread_block + 33 [0x227184]
    67 threadblockreason + 331 [0x2270f6]
    67 thread_dispatch + 1966 [0x226e57]
    67 machineswitchcontext + 753 [0x2a6a27]
    Thread 66c33d4
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 66c43d4
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 66ca000
    Kernel stack:
    67 call_continuation + 28 [0x29e6cc]
    67 com.apple.driver.AppleIntelCPUPowerManagement 105.10.0 + 22427 [0x13a879b]
    67 IOLockSleep + 39 [0x52b2ab]
    67 lckmtxsleep + 87 [0x221948]
    67 thread_block + 33 [0x227184]
    67 threadblockreason + 331 [0x2270f6]
    67 thread_dispatch + 1966 [0x226e57]
    67 machineswitchcontext + 753 [0x2a6a27]
    Thread 66cc000
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 66cd3d4
    Kernel stack:
    67 threadcallinitialize + 663 [0x22fa9b]
    Thread 68823d4
    Kernel stack:
    67 IOWorkLoop::threadMain() + 0 [0x547cbe]
    Thread 70ad3d4
    Kernel stack:
    67 call_continuation + 28 [0x29e6cc]
    67 ifnetdetachprotocol + 1603 [0x31a281]
    67 msleep + 157 [0x486eef]
    67 wakeup + 334 [0x4867fc]
    67 lckmtxsleep + 87 [0x221948]
    67 thread_block + 33 [0x227184]
    67 threadblockreason + 331 [0x2270f6]
    67 thread_dispatch + 1966 [0x226e57]
    67 machineswitchcontext + 753 [0x2a6a27]
    Thread 76973d4
    Kernel stack:
    67 call_continuation + 28 [0x29e6cc]
    67 com.huawei.driver.HuaweiDataCardECMData 1.19.00 + 13976 [0x1b0b698]
    67 IOSleep + 25 [0x52a567]
    67 delayforinterval + 49 [0x2195c9]
    67 thread_block + 33 [0x227184]
    67 threadblockreason + 331 [0x2270f6]
    67 thread_dispatch + 1966 [0x226e57]
    67 machineswitchcontext + 753 [0x2a6a27]

  • When use custom authetication it shows some characters on screen after logo

    Dear All,
    I have developed a application and use custom authentication schema for that. It works fine on my local pc and then I have moved it to another pc (export and then import) it works fine on that as well.
    Now I have moved it to the production server. When authentication failed it shows error message and stay in log on page. But when I provide the correct user name and password, then it shows multiple occurance of login url in page body.
    Did anyone has any idea about this.
    When authenticate success I get below output.
    Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?
    p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?
    p=ETLUI:COM_LOGIN:2888953545161107 Location: f?Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?
    p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?
    p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?
    p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?
    p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?
    p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?
    p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 * ETLUI means my application alias and COM_LOGIN is my login page alias. So basically it shows link to the login screen multiple time. At this time url is looks like below
    http://prodsrv:8080/apex/wwv_flow.accept Development and Production Apex Version: 4.0.2.00.07
    Development OS: Windows 2000
    Production OS : Linux
    Thanks in advance.

    Works ok after using Apex Listener.

  • How can i set  "Createdby" attribute  When using Custom JheadStart Security

    Hello
    We do not use JASS for Authentication , please help us how can i set createtby attributes with jhs.username in application for any entity object?
    thanks

    See a similar question at History Attributes when using Custom Authentication Type

  • Customized authentication scheme unauthorized when using help

    I am receiving an unauthorized message when clicking on help on a label. The message was not being received until the customized authentication scheme was enabled.

    If you still need help with this, please provide all the usual information: a complete description of the situation, an example on apex.oracle.com if possible, your version of apex and database, all custom code, all authentication scheme details, etc.
    Also, please tell us your first name and put it into your handle and/or profile to help us.
    Scott

  • Apex Custom Authentication Schema Page Sentry Error

    Hi,
    I am using Application Express 4.0.0. I am struggling with a strange problem while trying to implement custom authentication schema.
    I declare a page sentry function 'page_sentry' which returns TRUE or FALSE based on certain conditions. My page_sentry is as follows:
    FUNCTION PAGE_SENTRY RETURN BOOLEAN
    IS
    l_username VARCHAR2(512);
    l_session_id NUMBER;
    BEGIN
    IF USER != 'APEX_PUBLIC_USER' THEN
    RETURN false;
    END IF;
    l_session_id := wwv_flow_custom_auth_std.get_session_id_from_cookie;
    -- check application session cookie.
    IF wwv_flow_custom_auth_std.is_session_valid THEN
    apex_application.g_instance := l_session_id;
    l_username := wwv_flow_custom_auth_std.get_username;
    wwv_flow_custom_auth.define_user_session(
    p_user => l_username, p_session_id => l_session_id);
    RETURN true;
    ELSE
    --redirect to login page using OWA_UTIL.REDIRECT_URL
    END IF;
    RETURN false;
    END page_sentry;
    And Cookie Name : _AUTH
    At first, It always returned FALSE. I wasn't getting any error. However, even after forcibly returning TRUE from the page_sentry function the redirect was still not happening. I tried to look into what cookies were being set for the same and I found this:
    Name:     ApexLibErrorStack1
    Content:     page%3D1%3Cbr%20%2F%3EERR-1201%20session%20ID%20not%20set%20on%20custom%20authentication
    I couldn't find any relevant help for this. Worst of it is I cannot set any cookie from the page_sentry function at all. Please help!

    Hi all.
    Can someone please help me out with the above issue. I am not sure if things are wrong at my end or is this an apex bug.
    --Update:
    The source of my problem perhaps lies in the manner in which I have configured my Oracle HTTP Server. When I disable port HTTP server on port 80 and run apex without it on default port 8080, the custom authentication schema cookie gets set.
    Executing the following with Oracle HTTP Server:
    OWA_UTIL.PRINT_CGI_ENV;
    gives:
    HTTP_COOKIE = ApexLibErrorStack1=page%3D1%3Cbr%20%2F%3EERR-1201%20session%20ID%20not%20set%20on%20custom%20authentication.; ORA_WWV_R1=%23ALL; ORA_WWV_R2=%23ALL; ORA_WWV_R3=%23ALL
    And without HTTP Server:
    gives:
    HTTP_COOKIE = WWV_CUSTOM-F_1420403886791332_100=9625AAC49B9951D8;......
    Did I miss something in my HTTP server configuration ?
    Edited by: pc on Jan 2, 2012 3:15 AM

  • Restful Web Services - First Party Authentication with custom authentication schemes

    Hi
    I've successfully enabled security using first party authentication on our Restful web services however these only work with the built in Apex accounts and not other authentication schemes.
    Ideally I'd like to authenticate against LDAP, however when I enable this authentication scheme the restful services don't work as they only support the Apex accounts. 
    Has anyone implemented LDAP authentication for Apex restful web services, either directly or using Glassfish ? Does anyone know if support for custom authentication schemes on the feature roadmap for a future Listener release ?
    I attempted to configure the glassfish application against LDAP but am still working on it.. glassfish never challenged the client to authenticate (it's only to be for the web service endpoints and nothing else), so any pointers on how to set that up for Apex would be appreciated.
    Thanks
    Kes

    Hi Gemma,
    unfortunately at the moment you are caught between a rock and a hard place:
    - As you point out there is no way in APEX for a user to self-register themselves, short of developing your own table to store users and configuring APEX custom auth to authenticate against that table
    - Listener can only authenticate against the the APEX user repository, it cannot integrate with custom APEX authentication.
    There may be other options though, by leveraging the authentication capabilities in the JRE and/or WebLogic/GlassFish application servers. We're interested in addressing this use case, so if you wish to investigate further please send me an email ( colm <dot> divilly <at> oracle <dot> com).
    Thanks,
    Colm Divilly

  • Custom authentication scheme: Invalid Session Target

    Yesterday I spent a lot of time figuring out what was happening and I'm not sure if this is a bug or a feature...
    Create an application with some public pages (1,2,101) and some non-public pages (3,4).
    Created a list on page 0 listing all pages but only listing page 3 and 4 when user is logged in.
    Created a custom authentication scheme.
    Running the application showed me the page 1 and the list containing 1,2,101.
    I could navigate to 101 and then log in after which I was taken to page 1 showing only 1,2,101.
    I changed page 101 so that it would take me to page 3 after logging in and it did. The list showed me 1,2,101,3,4 and the username was also visible.
    I could visit all pages correctly except page 1. Whenever I navigated to page 1 I effectively got logged out.
    Finally I discovered that I had set "Invalid Session Target" to page 1 in my authentication scheme.
    Is this the intended effect ?

    Rene,
    When a page is selected in the authentication scheme's Invalid Session Page LOV, it gets designated as "the login page". Whenever this page is rendered, APP_USER is null and APP_SESSION is a new session ID. This accounts for what you saw. It's sort of a quirk more than a bug or feature and we ought to properly document this behavior. If, for some reason, you needed a login page that you could navigate back to (after login) in the current session and using the current APP_USER value, you can deselect the page from the Invalid Session Page LOV in the authentication scheme and instead code this in the Invalid Session URL:
    f?p=&APP_ID.:101:&APP_SESSION.
    ...using 101 as the login page, but it can be any page ID as long as it's a public page.
    Scott

Maybe you are looking for

  • How to sync my iPhone to my MacBook Pro and vice versa as it no longer seems to be doing?

    How to sync my iphone to my MacBook Pro and vice versa as it no longer seems to be doing? When I initially set up everything it worked fine; however, now my contacts are not syncing between devices? I have Icloud and even paid for ectra storage to se

  • How can i see the lyrics on my ipad 2.

    Before IOS 5 I could see the lyrics but now i saw nothing. Can you help me ???

  • What can be done to enable multiple usb  "mouse" buttons  in Solaris 10 ?

    My usb multimedia keyboard is recognized as a "combined" usb device. Two /dev/usb/hidx are created , one with usb keyboard driver attached, the other with the usb mouse driver attached. Events are generated for the scroll wheel on the keyboard, but n

  • 32 bit or 64 bit machines

    hi newbie to this message board and apple so please understand. i'm looking at buying a 2nd hand g5 which has Panther 10.3 installed. having seen what leopard can do, i'd sooner go for a 64 bit machine, how can i tell if a g5 is 64 bit? sorry if this

  • Container web item

    Hi, Wanted to understand what does a container web item gain us , i am able to have views , charts etc using tab page item and trying to understand what a container gets us. Also i didnt get too much clarity on the container layout item . I got to th