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

Similar Messages

  • 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.

  • 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

  • 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

  • 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]

  • Help: Jbo Exception non blocking when using table cell renderer?

    Hi,
    JClient 9.5.2.
    When using Table Cell Renderer on an table cell attribute that is defined mandatory and activating the insert button, the (oracle.jbo.AttrValException) JBO-27014 exception is caught but it is not blocking and a new row is still inserted.
    The JClient component demo, table attribute list, has the same behaviour.
    You can add multiple rows even if not all required attributes have been documented.
    Can a Swing specialist help me on this one?
    Example of Table Cell Renderer:
    public class TableBasicStatusRenderer extends DefaultTableCellRenderer
    public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus,
    int row, int column)
    JLabel lb = new JLabel((String) StaticData.getStatusName(value)); // retrieves label from Map
    return lb;
    Regards
    Frederic

    Hi,
    I found something interesting, it could be a WORKAROUND!
    I noticed that in another detail panel with table layout the JBO exception was blocking and adding another row before completing the row was NOT possible.
    In the create method of the entity object of the displayed View Object I iterate over the detail row iterator to retrieve a maximum value.
    By the end of the method the pointer is positionned after the last row.
    So I added to the detail panel that doesn't block following code:
    In create method of detail Entity Object Impl (only one entity object involved for this View)
    // Retrieve master EntityObjectImpl from association:
    PostalTariffImpl postalTariffImpl = getPostalTariffAssoc();
    // Retrieve detail default row iterator
    RowIterator ri = postalTariffImpl.getPostalDetailGroupAssoc();
    // Position pointer after last row
    ri.last();
    ri.next();
    Question: Why does this solve the problem?
    Regards
    Frederic
    PS Les mysteres de l'informatique!

  • ORA-01403: no data found Problem when using AUTOMATIC ROW FETCH to populate

    ORA-01403: no data found Problem when using AUTOMATIC ROW FETCH to populate a form.
    1) Created a FORM on EMP using the wizards. This creates an AUTOMATIC ROW FETCH
    TABLE NAME - EMP
    Item Containing PRIMARY KEY - P2099_EMPNO
    Primary key column - EMPNO
    By default the automatic fetch has a ‘Process Error Message’ of ‘Unable to fetch row.’
    2) Created a HTML region. Within this region add
    text item P2099_FIND_EMPNO
    Button GET_EMP to submit
    Branch Modified the conditional branch created during button creation to set P2099_EMPNO with &P2099_FIND_EMPNO.
    If I then run the page, enter an existing employee number into P2099_EMPNO and press the GET_EMP button the form is populated correctly. But if I enter an employee that does not exist then I get the oracle error ORA-01403: no data found and no form displayed but a message at the top of the page ‘Action Processed’.I was expecting a blank form to be displayed with the message ‘Unable to fetch row.’
    I can work around this by making the automated fetch conditional so that it checks the row exists first. Modify the Fetch row from EMP automated fetch so that it is conditional
    EXIST (SQL query returns at least one row)
    select 'x'
    from EMP
    where EMPNO = :P2099_EMPNO
    But this means that when the employee exists I must be fetching from the DB twice, once for the condition and then again for the actual row fetch.
    Rather than the above work around is there something I can change so I don’t get the Oracle error? I’m now wondering if the automatic row fetch is only supposed to be used when linking a report to a form and that I should be writing the fetch process manually. The reason I haven’t at the moment is I’m trying to stick with the automatic wizard generation as much as I can.
    Any ideas?
    Thanks Pete

    Hi Mike,
    I've tried doing that but it doesn't seem to make any difference. If I turn debug on it shows below.
    0.05: Computation point: AFTER_HEADER
    0.05: Processing point: AFTER_HEADER
    0.05: ...Process "Fetch Row from EMP": DML_FETCH_ROW (AFTER_HEADER) F|#OWNER#:EMP:P2099_EMPNO:EMPNO
    0.05: Show ERROR page...
    0.05: Performing rollback...
    0.05: Processing point: AFTER_ERROR_HEADER
    I don't really wan't the error page, either nothing with the form not being populated or a message at the top of the page.
    Thanks Pete

  • Problem when using About Operator in Contains Query

    Hi,
    I'm new to Oracle and this forums too. I have a problem when using about operator in contains query.
    I create a table with some records and then create a context index on 'name' column.
    CREATE TABLE my_items (
      id           NUMBER(10)      NOT NULL,
      name         VARCHAR2(200)   NOT NULL,
      description  VARCHAR2(4000)  NOT NULL,
      price        NUMBER(7,2)     NOT NULL
    ALTER TABLE my_items ADD (
      CONSTRAINT my_items_pk PRIMARY KEY (id)
    CREATE SEQUENCE my_items_seq;
    INSERT INTO my_items VALUES(my_items_seq.nextval, 'Car', 'Car description', 1);
    INSERT INTO my_items VALUES(my_items_seq.nextval, 'Train', 'Train description', 2);
    INSERT INTO my_items VALUES(my_items_seq.nextval, 'Japan', 'Japan description', 3);
    INSERT INTO my_items VALUES(my_items_seq.nextval, 'China', 'China description', 4);
    COMMIT;
    EXEC ctx_ddl.create_preference('english_lexer','basic_lexer');
    EXEC ctx_ddl.set_attribute('english_lexer','index_themes','yes');
    EXEC ctx_ddl.set_attribute('english_lexer','theme_language','english');
    CREATE INDEX my_items_name_idx ON my_items(name) INDEXTYPE IS CTXSYS.CONTEXT PARAMETERS('lexer english_lexer');
    EXEC ctx_ddl.sync_index('my_items_name_idx');Then I perform contains query to retrieve record :
    SELECT count(*) FROM my_items WHERE contains(name, 'Japan', 1) > 0;
    COUNT(*)
          1
    SELECT count(*) FROM my_items WHERE contains(name, 'about(Japan)', 1) > 0;
    COUNT(*)
          1But the problem is when I using ABOUT operator like in Oracle's English Knowledge Base Category Hierarchy it return 0
    SELECT count(*) FROM my_items WHERE contains(name, 'about(Asia)', 1) > 0;
    COUNT(*)
          0
    SELECT count(*) FROM my_items WHERE contains(name, 'about(transportation)', 1) > 0;
    COUNT(*)
          0I can't figure out what 's wrong in my query or in my index.
    Any help will be appreciated.
    Thanks,
    Hieu Nguyen
    Edited by: user2944391 on Jul 10, 2009 3:25 AM

    Hello (and welcome),
    You'd be best asking this question in the Oracle Text forum, here:
    Text
    And by the way, it will help others to analyse if you put {noformat}{noformat} (lowercase code in curly brackets) before and after your code snippets.
    Good luck!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • NLS support problems when using AL32UTF8 in dads.conf

    Hello,
    Following a post by Joel Kallman, in one of the forum threads, about the mandatory use of AL32UTF8 in dads.conf, when running HTML DB v2.0, I changed my PlsqlNLSLanguage parameter accordingly.
    Prior to the change, I experienced some problems when using non-English characters – some application items appeared as gibberish when contained non-English characters, and the LIKE operator didn't perform as expected. After the change, it all seems to work OK, but now I have a different problem.
    All the non-English characters in my HTML page source code appears as gibberish. On screen, at run time, everything display correctly, but the source code seems to be corrupted. It is very difficult, and very annoying to debug the pages that way. Is there a way to enjoy both worlds – Using AL32UTF8 in the dads.conf, as required, and still getting a coherent HTML source code, containing non-English characters?
    Thanks,
    Arie.

    Joel,
    I use the following settings and they work fine for me:
    Operating system:
    LANG=de_DE
    LANGVAR=de_DE.UTF-8
    NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P1
    daust:oracle[o1020]> uname -a
    Linux daust.opal-consulting.de 2.4.21-37.EL #1 Wed Sep 7 13:35:21 EDT 2005 i686 i686 i386 GNU/Linux
    daust:oracle[o1020]> cat /etc/redhat-release
    Red Hat Enterprise Linux ES release 3 (Taroon Update 6)
    daust:oracle[o1020]>
    marvel.conf:
    <Location /pls/htmldb>
        Order deny,allow
        PlsqlDocumentPath docs
        AllowOverride None
        PlsqlDocumentProcedure wwv_flow_file_manager.process_download
        PlsqlDatabaseConnectString localhost:1521:o1020
        PlsqlNLSLanguage AMERICAN_AMERICA.WE8ISO8859P1
        PlsqlAuthenticationMode Basic
        SetHandler pls_handler
        PlsqlDocumentTablename wwv_flow_file_objects$
        PlsqlDatabaseUsername HTMLDB_PUBLIC_USER
        PlsqlDefaultPage htmldb
        PlsqlDatabasePassword @BZvJYqadreElOqj5poCB5gE=
        Allow from all
    </Location>
    Database:
    daust:oracle[o1020]> sqlplus "/ as sysdba"
    SQL> select * from nls_database_parameters;
    PARAMETER                      VALUE
    NLS_LANGUAGE                   AMERICAN
    NLS_TERRITORY                  AMERICA
    NLS_CURRENCY                   $
    NLS_ISO_CURRENCY               AMERICA
    NLS_NUMERIC_CHARACTERS         .,
    NLS_CHARACTERSET               WE8ISO8859P1
    NLS_CALENDAR                   GREGORIAN
    NLS_DATE_FORMAT                DD-MON-RR
    NLS_DATE_LANGUAGE              AMERICAN
    NLS_SORT                       BINARY
    NLS_TIME_FORMAT                HH.MI.SSXFF AM
    PARAMETER                      VALUE
    NLS_TIMESTAMP_FORMAT           DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT             HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT        DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY              $
    NLS_COMP                       BINARY
    NLS_LENGTH_SEMANTICS           BYTE
    NLS_NCHAR_CONV_EXCP            FALSE
    NLS_NCHAR_CHARACTERSET         AL16UTF16
    NLS_RDBMS_VERSION              10.2.0.1.0####################
    Using AL32UTF8 resulted in the same problem as described ( and fixed ) here: Re: Strange - HTML not written correctly
    So, what is the proper configuration of the DAD, perhaps there are different ones for Unicode instances and non-Unicode instances.
    ~Dietmar.

  • Problem when using Javabeans in ADF?

    Hi,
    I encountered a problem when using ADF.
    Please look at the following 2 classes :
    public class Person
    private String name;
    private String city;
    private int age;
    public Person(String name, int age, String city)
    this.name = name;
    this.age = age;
    this.city = city;
    public Person()
    public void setName(String name)
    this.name = name;
    public String getName()
    return name;
    public void setAge(int age)
    this.age = age;
    public int getAge()
    return age;
    public void setCity(String city)
    this.city = city;
    public String getCity()
    return city;
    public class PersonFactory
    public PersonFactory()
    public List getPersons()
    List list = new ArrayList();
    list.add(new Person("peit", 18, "dalian"));
    list.add(new Person("robin", 22, "shenyang"));
    list.add(new Person("Joe", 30, "York"));
    list.add(new Person("Edi", 23, "Beijing"));
    return list;
    public List getNames()
    List list = new ArrayList();
    list.add("Peit");
    list.add("Robin");
    list.add("Joe");
    list.add("Edi");
    return list;
    public void commit()
    System.out.println("Data commited");
    I created the PersonFactory class as DataControl, so I can use the getPersons() and getNames()(just for test, so they are simple), I drag the names from
    the DataControl palette as Table in a JClientPanel, good luck, it works and displays the 4 Strings in a table, but when I drag the persons from
    the DataControl palette as Table in the same JClientPanel, it does not work and raises exception :
    java.lang.NullPointerException
         at javax.swing.JTable.prepareRenderer(JTable.java:3731)
         at javax.swing.plaf.basic.BasicTableUI.paintCell(BasicTableUI.java:1149)
         at javax.swing.plaf.basic.BasicTableUI.paintCells(BasicTableUI.java:1051)
         at javax.swing.plaf.basic.BasicTableUI.paint(BasicTableUI.java:974)
         So, I confused why? How to edit it properly?
         Thanks.
    Message was edited by:
    [email protected]

    Hi, Frank
    Thank you for your reply.
    I am sorry for not explaining well. I mean that the getNames() works fine, but getPersons() does not. The only diferenece between them is the former is simple string and the latter is javabean, but when I made the PersonFactory as DataControl, I set the bean class Person for the getPersons()(list of persons) bean class.
    I debuged the class, the exceptions raised when the table for getPersons() setModel() method called.
    So, where is the problem?
    Thanks.

  • Strange problem when opening word doc situated in WLS virtual dir

    Hi all,
    we have a strange problem when opening word doc
    situated in C:\Oracle\Middleware\as_1\forms\webutil
    we put some word docs there and tried to open from forms using for example web.show_document('http://wp0606:9001/forms/webutil/mug00103.doc', '_blank');
    no problem using FF, however in IE8 the word doc is shown in its binary format, this also happens when we try to open the doc in IE8
    however when we google and search for instance for a test.doc and then click on this url a file save dialog is shown
    that's why we believe that this might be due to a configuration issue of WLS
    any help would be greatly appreciated
    Kr
    Martin

    I think you have 2 ways to go here. Figure out what html is from wherever weblogic gets it, meaning you have to delve into the docs, snoop
    around in directories and find what it must be sending (This is going to be unavoidable if you are going to change what weblogic is doing.
    Sooner or later you have to try to figure out where it gets this stuff from)
    or
    you can experimentally snoop on your url with a tool like wget or curl. These are fundamental web tools.
    The latter is always a useful thing to be able to do. (you need to formulate a query to get the content-type).
    Whoever managed to get weblogic to serve any files in the first place probably can figure this out.

  • Strange problem when copying files to NAS

    Hello all. I have a strange problem when trying to copy files from my intel iMac to my Seagate NAS. I am copying files from my HD and when the file is nearly copyied i get an error message saying that the file can't be copied because it is already in use by another application. Well... it surely isn't. I try copying them by ftp (Filezilla) and everything works fine. I can then access them through my media server but !!!! NOT THROUGH MY iMac!!!! It is like the files are not there!!!! But they definetely are! I tried fixing the disk permissions, rebooting NAS, iMac etc but nothing seems to solve the problem. Is there any suggestion of what might be wrong? I am under Mavericks and i am pretty sure that the problem started after the update. When copying from my external USB hard drive to my iMac HD everything works fine. The problem is from my iMac to my NAS.

    Wow... thanks for the time you devote Linc.... Well below are the results of the above commands....
    Step 1 returned no text.
    Step 2 returned the following text:
    com.tunabellysoftware.checkmytemp.GNTPClientService
    jp.co.canon.MasterInstaller
    com.WesternDigital.WDSmartWareD
    com.wdc.WDDMservice
    com.teamviewer.service
    com.tappin.agent.plist
    com.microsoft.office.licensing.helper
    com.klieme.TimeMachineScheduler
    com.adobe.SwitchBoard
    com.adobe.fpsaud
    Step 3 returned the following text:
    com.adobe.PDApp.AAMUpdatesNotifier.59168.9D679ECB-757D-43DD-920E-153524EA697A
    jp.co.canon.cijscannerregister.67792
    jp.co.canon.ij.CNSSelectorAgent.66384
    OpenObject.fuspredownloader.65328
    com.tappin.TappIn.53712
    com.ecamm.PhoneViewHelper.65680
    com.pratikkumar.RemoteHelper.51424
    com.elgato.eyetvhelper.10064
    6.0.65152
    com.tunabellysoftware.TemperatureGaugeHelper
    com.paragon.ntfs.trial
    com.teamviewer.desktop
    com.teamviewer.teamviewer
    com.sony.PMBPortable.AutoRun
    com.google.keystone.user.agent
    com.adobe.ARM.df0ab5bbe6f698196fcc21e3c1e66dcb758bd911f4d637272d9d8109
    com.adobe.AAM.Scheduler-1.0
    Step 4 returned the following text:
    /Library/Components:
    /Library/Extensions:
    ATTOCelerityFC8.kext
    ATTOExpressSASHBA2.kext
    ATTOExpressSASRAID2.kext
    ArcMSR.kext
    CalDigitHDProDrv.kext
    HighPointIOP.kext
    HighPointRR.kext
    PromiseSTEX.kext
    SoftRAID.kext
    /Library/Frameworks:
    AEProfiling.framework
    AERegistration.framework
    Adobe AIR.framework
    AudioMixEngine.framework
    NyxAudioAnalysis.framework
    PluginManager.framework
    TSLicense.framework
    WesternDigital
    iLifeFaceRecognition.framework
    iLifeKit.framework
    iLifePageLayout.framework
    iLifeSQLAccess.framework
    iLifeSlideshow.framework
    iTunesLibrary.framework
    /Library/Input Methods:
    /Library/Internet Plug-Ins:
    AdobePDFViewer.plugin
    AdobePDFViewerNPAPI.plugin
    Aspera Web.plugin
    Default Browser.plugin
    EPPEX Plugin.plugin
    Flash Player.plugin
    Flip4Mac WMV Plugin.plugin
    JavaAppletPlugin.plugin
    NavIn.plugin
    Quartz Composer.webplugin
    QuickTime Plugin.plugin
    SharePointBrowserPlugin.plugin
    SharePointWebKitPlugin.webplugin
    Silverlight.plugin
    flashplayer.xpt
    iPhotoPhotocast.plugin
    nsIQTScriptablePlugin.xpt
    /Library/Keyboard Layouts:
    /Library/LaunchAgents:
    com.adobe.AAM.Updater-1.0.plist
    com.apple.NavService.plist
    com.oracle.java.Java-Updater.plist
    com.sony.PMBPortable.AutoRun.plist
    com.teamviewer.teamviewer.plist
    com.teamviewer.teamviewer_desktop.plist
    /Library/LaunchDaemons:
    com.WesternDigital.WDSmartWareD.plist
    com.adobe.SwitchBoard.plist
    com.adobe.fpsaud.plist
    com.klieme.TimeMachineScheduler.plist
    com.microsoft.office.licensing.helper.plist
    com.oracle.java.Helper-Tool.plist
    com.tappin.agent.plist
    com.teamviewer.teamviewer_service.plist
    com.wdc.WDDMservice.plist
    jp.co.canon.MasterInstaller.plist
    /Library/PreferencePanes:
    EyeConnect.prefPane
    Flash Player.prefPane
    Flip4Mac WMV.prefPane
    GRproofing.prefPane
    Growl.prefPane
    JavaControlPanel.prefPane
    NTFSforMacOSX.prefPane
    Perian.prefPane
    TappIn.prefPane
    TimeMachineScheduler.prefPane
    /Library/PrivilegedHelperTools:
    com.microsoft.office.licensing.helper
    jp.co.canon.MasterInstaller
    /Library/QuickLook:
    GBQLGenerator.qlgenerator
    QuickLookEyeTV.qlgenerator
    iBooksAuthor.qlgenerator
    iWork.qlgenerator
    /Library/QuickTime:
    AC3MovieImport.component
    AppleIntermediateCodec.component
    AppleMPEG2Codec.component
    EyeTV MPEG Support.component
    Perian.component
    /Library/ScriptingAdditions:
    Adobe Unit Types.osax
    /Library/Spotlight:
    GBSpotlightImporter.mdimporter
    LogicPro.mdimporter
    Microsoft Office.mdimporter
    iBooksAuthor.mdimporter
    iWork.mdimporter
    /Library/StartupItems:
    ChmodBPF
    DynDNSUpdater
    EyeConnect
    /etc/mach_init.d:
    /etc/mach_init_per_login_session.d:
    /etc/mach_init_per_user.d:
    Library/Address Book Plug-Ins:
    SkypeABDialer.bundle
    SkypeABSMS.bundle
    Library/Fonts:
    AC-CondensedScript_Unicode.otf
    AC-CuttingEdge.otf
    AC-FrenchToast.otf
    AC-Gorgi.otf
    AC-HiSchool.otf
    AC-Hollow_Unicode.otf
    AC-Lundi.otf
    AC-Lycee.otf
    AC-Pathetic_unicode.otf
    AC-mutlu_unicode.otf
    ACRealAdult.otf
    AVI-BonatiPT-Bold.ttf
    AVI-BonatiPT-BoldItalic.ttf
    AVI-BonatiPT-Italic.ttf
    AVI-BonatiPT-Normal.ttf
    AVI-Jacobs-Bold.ttf
    AVI-Jacobs-BoldItalic.ttf
    AVI-Jacobs-Italic.ttf
    AVI-Jacobs-Normal.ttf
    AVI-Optima-Bold.ttf
    AVI-Optima-BoldItalic.ttf
    AVI-Optima-Italic.ttf
    AVI-Optima-Normal.ttf
    AVI-OptimaCollege-Italic.ttf
    AVI-OptimaCollege.ttf
    AVI-ParisAifel-Medium.ttf
    AVI-ParisAifel-MediumItalic.ttf
    AdLib BT.suit
    AdLibBTReg
    Andale Mono
    ArbuckleShadowNF.otf
    Arial
    Arial Black
    Arial Narrow
    BleeckerStreetShadedNF.otf
    BundleofJoyOutlineNF.otf
    CF Bac
    CF Bar
    CF Bar-Bold
    CF BarText
    CF BarText-Bold
    CF Big
    CF Compacta Bold
    CF Compacta ExtraBold
    CF Compacta Light
    CF Compacta Medium
    CF Compacta Regular
    CF Criton
    CF Criton-Contrafos
    CF Criton-Heavy
    CF Derrida-Bold
    CF Derrida-Book
    CF Derrida-Heavy
    CF Derrida-Light
    CF Derrida-SemiBold
    CF DogEatDog
    CF Fat
    CF Holly
    CF Holly-Bold
    CF Holly-Light
    CF Holly-Medium
    CF Initials
    CF Jet
    CF Jet-Alter
    CF Jet-Left
    CF Jet-Right
    CF Jet-Simple
    CF K-Graffiti
    CF K-Select
    CF KouroudiSelect-Bold
    CF KouroudiSelect-Fun
    CF KouroudiSelect-Regular
    CF KouroudisGraffiti-Dust
    CF KouroudisGraffiti-Light
    CF KouroudisGraffiti-Regular
    CF LetterGothic
    CF MatrixDot
    CF MatrixFax
    CF MatrixMonospace
    CF MatrixNegative
    CF Newspaper
    CF PainterBlack
    CF PainterBold
    CF PainterRegular
    CF Poster
    CF Sans
    CF Sans-Bold
    CF Sans-Heavy
    CF SempliceBold
    CF SempliceRegular
    CF SempliceThin
    CF Smooth
    CF Smooth-CondBold
    CF Smooth-CondNorm
    CF Smooth-ExtraBold
    CF Smooth-Revenge
    CF Smooth-Toy
    CF Sophia
    CF Sophia-Bold
    CF Sophia-BoldItalic
    CF Sophia-Italic
    CF Stamp
    CF Stencil
    CF Suprematica
    CF Twins
    CF Venus
    CFBarSG
    CFBarSGBol
    CFBarTexSG
    CFBarTexSGBol
    CFBigSG
    CFCriSGCon
    CFCriSGHea
    CFDogEatDogSG
    CFEteoclesContrafos
    CFEteoclesHeavy
    CFEteoclesRegular
    CFFatSG
    CFHolSGBol
    CFHolSGLig
    CFHolSGMed
    CFIniSG
    CFJetAlt
    CFJetLef
    CFJetRig
    CFJetSim
    CFKouGraSGDus
    CFKouGraSGLig
    CFKouGraSGReg
    CFKouSelSGBol
    CFKouSelSGFun
    CFKouSelSGReg
    CFLetGotSG
    CFNewSG
    CFSanSG
    CFSanSGBol
    CFSanSGHea
    CFSmoSGConBol
    CFSmoSGConNor
    CFSmoSGExtBol
    CFSmoSGRev
    CFSmoSGToy
    CFSopSG
    CFSopSGBol
    CFSopSGBolIta
    CFSopSGIta
    CFSteSG
    CFSupSG
    CFTwiSG
    Century
    ChicaGogoOpenNF.otf
    D-Regular.suit
    DReg
    DejaVuSans-Bold.ttf
    DejaVuSans-BoldOblique.ttf
    DejaVuSans-ExtraLight.ttf
    DejaVuSans-Oblique.ttf
    DejaVuSans.ttf
    DejaVuSansCondensed-Bold.ttf
    DejaVuSansCondensed-BoldOblique.ttf
    DejaVuSansCondensed-Oblique.ttf
    DejaVuSansCondensed.ttf
    DejaVuSansMono-Bold.ttf
    DejaVuSansMono-BoldOblique.ttf
    DejaVuSansMono-Oblique.ttf
    DejaVuSansMono.ttf
    DejaVuSerif-Bold.ttf
    DejaVuSerif-BoldOblique.ttf
    DejaVuSerif-Oblique.ttf
    DejaVuSerif.ttf
    DejaVuSerifCondensed-Bold.ttf
    DejaVuSerifCondensed-BoldOblique.ttf
    DejaVuSerifCondensed-Oblique.ttf
    DejaVuSerifCondensed.ttf
    Demo_ConeriaScript.ttf
    Demo_ConeriaScript_Slanted.ttf
    Demon
    Demonstrator.suit
    DidgereeDoodleOutlineNF.otf
    DrumagStudioOutlineNF.otf
    ElektromotoNarrowOutlineNF.otf
    Franklin Gothic Demi
    Franklin Gothic Heavy
    FuturBTBol
    FuturCon
    Futura Bd BT.suit
    Futura Condensed.suit
    GFS Goschen-Italic.otf
    GFSAmbrosia.otf
    GFSDecker.otf
    GFSEustace.otf
    GFSFleischman.otf
    GFSGaraldus.otf
    GFSIgnacio.otf
    GFSJackson.otf
    GFSNeohellenic.otf
    GFSNeohellenicBold.otf
    GFSNeohellenicBoldIt.otf
    GFSNeohellenicIt.otf
    GFSNicefore.otf
    GFSPhilostratos.otf
    GFSPolyglot.otf
    GFSTheokritos.otf
    Georgia
    Gill Sans Hel
    Gill Sans Hel Pt-SCOS
    Gill Sans Hel Pt-SCOSBold
    Gill Sans Hel-Bold
    Gill Sans Hel-BoldItalic
    Gill Sans Hel-Con
    Gill Sans Hel-ConBold
    Gill Sans Hel-Demi
    Gill Sans Hel-DemiItalic
    Gill Sans Hel-ExBold
    Gill Sans Hel-ExConBold
    Gill Sans Hel-ExLight
    Gill Sans Hel-Italic
    Gill Sans Hel-Light
    Gill Sans Hel-LightItalic
    Gill Sans Hel-SCOS
    Gill Sans Hel-SCOSBold
    Gill Sans Hel-SemCon
    Gill Sans Hel-SemConBdIt
    Gill Sans Hel-SemConBold
    Gill Sans Hel-SemConIt
    Gill Sans Hel-SemConLight
    Gill Sans Hel-SemConThin
    Gill Sans Hel-Thin
    Gill Sans Hel-UltBold
    Gulim.ttf
    HelveConBol
    HelveNeuMedCon
    Helvetica Condensed.suit
    HelveticaNeue MediumCond.suit
    Looney Tunes Tilt BT.ttf
    LooseCabooseOutlineNF.otf
    Lucida Sans
    PF DaVinciScriptPoly-Inked.ttf
    PF DaVinciScriptPoly-Reg.ttf
    PFAlfabeta
    PFAlfabetaOS Poly Bold.ttf
    PFAlfabetaOS Poly BoldItal.ttf
    PFAlfabetaOS Poly Italic.ttf
    PFAlfabetaOS Poly Regular.ttf
    PFAmateur
    PFArabats.ttf
    PFBarApart
    PFBaseline
    PFBaselineDisplay
    PFBeatnick
    PFBedroom
    PFBellGothicText
    PFBerkleyBlue
    PFBevel
    PFBodoniScriptOne
    PFBodoniScriptTwo
    PFBodoniText
    PFBodoniText Poly-Bold.ttf
    PFBodoniText PolyBoldItalic.ttf
    PFBodoniText-Poly Italic.ttf
    PFBodoniText-Poly Regular.ttf
    PFBulletin
    PFCatalog
    PFCatalogPoly-Bold.ttf
    PFCatalogPoly-BoldItalic.ttf
    PFCatalogPoly-Italic.ttf
    PFCatalogPoly-Regular.ttf
    PFCentury
    PFCereal
    PFCheltenham
    PFCosmonut
    PFCosmonut-Astrobats.ttf
    PFDaVinciScript
    PFDeeJay
    PFDidotOsPoly-Bold.ttf
    PFDidotOsPoly-BoldItalic.ttf
    PFDidotOsPoly-Italic.ttf
    PFDidotOsPoly-Regular.ttf
    PFDigicons-One.ttf
    PFDigicons-Two.ttf
    PFDigidotSemiSquare
    PFDigidotSquare
    PFDinDisplay
    PFDinText
    PFDinTextCompressed
    PFDinTextCondensed
    PFDiplomat
    PFDiplomatPoly-Bold.ttf
    PFDiplomatPoly-BoldItalic.ttf
    PFDiplomatPoly-Italic.ttf
    PFDiplomatPoly-Regular.ttf
    PFDiplomatSans
    PFEarthbound
    PFEphemera
    PFEphemera Poly-Bold.ttf
    PFEphemera Poly-BoldItalic.ttf
    PFEphemera Poly-Italic.ttf
    PFEphemera Poly-Regular.ttf
    PFEtnica
    PFFragment
    PFFranklinGothic
    PFFreeScript
    PFFuel
    PFFusionSans
    PFFuturaNeu
    PFGaramondClassic
    PFGlobal
    PFGoudyInitials.ttf
    PFGrid
    PFHardkore
    PFHausSquare
    PFHighwayGothic
    PFHighwayGothicCompressed
    PFHighwayGothicCondensed
    PFHighwayGothicExtended
    PFHighwayGothicXtraCond
    PFHipster
    PFHitower
    PFHybrid
    PFIndex
    PFInnercity
    PFIsotext
    PFIsotextExtended
    PFJunior
    PFKids
    PFKids-LilStuff.ttf
    PFKonstantinople
    PFKonstantinople Initials.ttf
    PFLetterGothicDisplay
    PFLetterGothicNext
    PFLibera
    PFLithoText
    PFMacsimile
    PFManicAttack
    PFMechanica
    PFMediterra
    PFMonumenta
    PFNext
    PFOnline
    PFPanel
    PFPaperback
    PFPapernote
    PFPlasmatic
    PFPlayskool
    PFPremierDisplay
    PFPremierFrame
    PFPremierText
    PFPress
    PFPsychedelia
    PFRadikale
    PFRafSkript
    PFReminder
    PFReport
    PFRetrospace
    PFRoyalscript
    PFScriptor-Ligatures.ttf
    PFScriptor-Ornaments.ttf
    PFScriptor-Regular.ttf
    PFSectorA
    PFSectorB
    PFSidetrip
    PFSignSkript
    PFSignSkript-AdClips.ttf
    PFStamps
    PFStudio
    PFSugar
    PFSystemplus
    PFTemple
    PFTemple-Icons.ttf
    PFTempleSerif
    PFTextbook
    PFTraffic
    PFTransport
    PFUniversal
    PFVenue
    PFVideotext
    PFWonderland
    PFWonderland-Wonderbats.ttf
    Palatino Linotype
    SketchIcons.ttf
    SketchIconsbold.ttf
    SnoopySnailsOutlineNF.otf
    StadionGreek
    Tahoma
    That_'s Font Folks!.ttf
    Times New Roman
    Times.suit
    TimesRom
    Trebuchet MS
    UB-Aircraft
    UB-AntiqueOlive
    UB-AntiqueOlive-Bold
    UB-AntiqueOlive-BoldItalic
    UB-AntiqueOlive-Italic
    UB-AntiqueOliveBlack
    UB-AntiqueOliveBlack-Italic
    UB-AntiqueOliveCompact
    UB-AntiqueOliveCompact-Ita
    UB-AntiqueOliveLight
    UB-AntiqueOliveLight-Italic
    UB-AvantGarde
    UB-Baskerville
    UB-Baskerville-Bold
    UB-Baskerville-BoldItalic
    UB-Baskerville-Italic
    UB-Bonati
    UB-BonatiCond
    UB-BonatiHeavy
    UB-Byzantine
    UB-Calculator
    UB-Calligula
    UB-Century
    UB-Century-Bold
    UB-Century-BoldItalic
    UB-Century-Italic
    UB-Donuts
    UB-DonutsCond
    UB-End
    UB-Europa
    UB-FarWest
    UB-FarWestExt
    UB-Fashion
    UB-Fine
    UB-Flores
    UB-Free
    UB-Front
    UB-Future
    UB-FutureCond
    UB-Goudies
    UB-Helvetica
    UB-Helvetica-Bold
    UB-Helvetica-BoldItalic
    UB-Helvetica-Italic
    UB-HelveticaBlack
    UB-HelveticaBlack-Italic
    UB-HelveticaCond
    UB-HelveticaCond-Bold
    UB-HelveticaCond-BoldItalic
    UB-HelveticaLight
    UB-HelveticaLight-Italic
    UB-HelveticaThin
    UB-HelveticaThinCond
    UB-King
    UB-Lucky
    UB-Maskat
    UB-Muratti
    UB-MurattiCond
    UB-NewsLetter
    UB-Ninza
    UB-Omnius
    UB-Optima
    UB-Optima-Bold
    UB-Optima-BoldItalic
    UB-Optima-Italic
    UB-Paris
    UB-Rich
    UB-Rockwell
    UB-Rockwell-Bold
    UB-Rockwell-BoldItalic
    UB-Rockwell-Italic
    UB-RockwellBlack
    UB-RockwellBlack-Italic
    UB-RockwellLight
    UB-RockwellLight-Italic
    UB-Script
    UB-Sherlock
    UB-SherlockCond
    UB-Shop
    UB-Sign
    UB-Slogan
    UB-Soccer
    UB-SoccerCondOblique
    UB-Souvenir
    UB-Souvenir-Bold
    UB-Souvenir-BoldItalic
    UB-Souvenir-Italic
    UB-SouvenirBlack
    UB-SouvenirBlack-Italic
    UB-SouvenirLight
    UB-SouvenirLight-Italic
    UB-Times
    UB-Times-Bold
    UB-Times-BoldItalic
    UB-Times-Italic
    UB-Unifine
    UB-Vampire
    UB-World
    Verdana
    VinnieBoombahOutlineNF.otf
    Wingdings
    Wingdings 2
    Wingdings 3
    nbyzn.ttf
    soundfx.ttf
    Library/Frameworks:
    SamsungKiesFoundation.framework
    SamsungKiesSerialPort.framework
    Library/Input Methods:
    .localized
    Library/InputManagers:
    Library/Internet Plug-Ins:
    Google Earth Web Plug-in.plugin
    iGetterBundle.plugin
    Library/Keyboard Layouts:
    Library/LaunchAgents:
    com.adobe.AAM.Updater-1.0.plist
    com.adobe.ARM.df0ab5bbe6f698196fcc21e3c1e66dcb758bd911f4d637272d9d8109.plist
    [email protected]t.plist
    com.google.keystone.agent.plist
    Library/PreferencePanes:
    .TVPC93ED0576A
    Library/ScriptingAdditions:
    iGetterScriptingAddition.osax
    Library/Services:
    ToastIt.service
    Finallu step 5 returned the following text:
    Skype, EyeTV Helper, RemoteHelper, PhoneViewHelper, TappIn, Dropbox, Canon IJ Network Scanner Selector EX, fuspredownloader, StatusMenu
    I hope you find it helpful Linc. Many thanks for all the attention!

  • Strange problem when tried to convert HelloWorld.class..

    Hi friends..
    i've downloaded the Java Card SDK 2.2.1, and i tried to compile HelloWorld application that shipped with its distribution..
    i found strange problem when i tried to convert HelloWorld.class into .CAP, etc.. :(
    I use Windows XP, assume that i've set the Environment Variables needed
    i've compiled the HelloWorld.java into HelloWorld.class..
    the package of of HelloWorld is : com.sun.javacard.samples.HelloWorld;
    and i use this config file :
    -out EXP JCA CAP
    -exportpath .
    -applet  0xa0:0x0:0x0:0x0:0x62:0x3:0x1:0xc:0x1:0x1 com.sun.javacard.samples.HelloWorld.HelloWorld
    com.sun.javacard.samples.HelloWorld
    0xa0:0x0:0x0:0x0:0x62:0x3:0x1:0xc:0x1 1.0and then i tried to run converter script in the Console :
    *C:\java_card_kit-2_2_1\samples>converter -config com\sun\javacard\samples\HelloWorld\HelloWorld.opt*
    *error: file com\sun\javacard\samples\HelloWorld\HelloWorld.opt could not be found*
    Usage:  converter  <options>  package_name  package_aid  major_version.minor_ve
    sion
    OR
    converter -config <filename>
                        use file for all options and parameters to converter
    Where options include:
            -classdir <the root directory of the class hierarchy>
                          set the root directory where the Converter
                          will look for classes
            -i            support the 32-bit integer type
            -exportpath  <list of directories>
                          list the root directories where the Converter
                          will look for export files
            -exportmap    use the token mapping from the pre-defined export
                          file of the package being converted. The converter
                          will look for the export file in the exportpath
            -applet <AID class_name>
                          set the applet AID and the class that defines the
                          install method for the applet
            -d <the root directory for output>
            -out  [CAP] [EXP] [JCA]
                          tell the Converter to output the CAP file,
                          and/or the JCA file, and/or the export file
            -V, -version  print the Converter version string
            -v, -verbose  enable verbose output
            -help         print out this message
            -nowarn       instruct the Converter to not report warning messages
            -mask         indicate this package is for mask, so restrictions on
                          native methods are relaxed
            -debug        enable generation of debugging information
            -nobanner     suppress all standard output messages
            -noverify     turn off verification. Verification is defaultPlease help me regarding this, because i'm new in this field..
    Thanks in advance..

    Thanks safarmer for your reply..
    i tried this :
    C:\java_card_kit-2_2_1\samples>javac -target 1.3 -source 1.1 -g -classpath .\cla
    sses;..\lib\api.jar;..\lib\installer.jar src\com\sun\javacard\samples\HelloWorld
    \*.java
    javac: invalid source release: 1.1
    Usage: javac <options> <source files>
    use -help for a list of possible options
    C:\java_card_kit-2_2_1\samples>javac -target 1.3 -source 1.2 -g -classpath .\cla
    sses;..\lib\api.jar;..\lib\installer.jar src\com\sun\javacard\samples\HelloWorld
    \*.java
    it seems that i can't specify the -source to 1.1, so i tried to use -source 1.2..
    after that, i tried to convert again, and i got this error :
    C:\java_card_kit-2_2_1\samples\src>converter -config com\sun\javacard\samples\He
    lloWorld\HelloWorld.opt
    Java Card 2.2.1 Class File Converter, Version 1.3
    Copyright 2003 Sun Microsystems, Inc. All rights reserved. Use is subject to lic
    ense terms.
    error: com.sun.javacard.samples.HelloWorld.HelloWorld: unsupported class file fo
    rmat of version 47.0.
    conversion completed with 1 errors and 0 warnings.Please help me regarding this..
    Thanks in advance..

  • Strange problem about using JSTL

    Dear all,
    I've got a strange proble when using JSTL with tomcat.
    I've got two strings as the following:
         String id_string = (String)session.getAttribute("user_id");
         System.out.println(id_string);
         String valid_user = (String)session.getAttribute("valid_user");
    The "println" call tells me that "id_string" has a valid value.
    But when I use it like this in the same page:
    <a href="springapp/blog.htm?id=<c:out value=${ id_string " /><c:out value="${ valid_user }" />" >test
    I can only get "valid_user"'s value.
    "id_string" is not print out to the page.
    Would anyone please help me out?
    Any help would appreciated and thanks in advance.
    Edited by: haoniukun on Sep 15, 2007 9:57 PM

    haoniukun wrote:
         String id_string = (String)session.getAttribute("user_id");
    <a href="springapp/blog.htm?id=<c:out value=${ id_string " /><c:out value="${ valid_user }" />" >test
    I can only get "valid_user"'s value.
    "id_string" is not print out to the page.Your session attribute is called "user_id" which you're fetching correctly earlier. But in the <c:out> tag, you're trying to read "id_string" which is the name of your local variable and not in any scope. "valid_user" works because you've named your local variable the same as your scope attribute, so the value being printed out is from the scope and not your local variable. As far as I know, JSTL doesn't work with local scriptlet variables, it only access variables in the four scopes: page, request, session and application
    You should use the <c:set> tag to set a variable value. Try not to mix scriptlets and tags, it's frowned upon and will probably cause you problems later.

  • TS2755 Hi all, I bought one iphone and 3 ipads, i set up all on one apple ID. Now i have a problem when using messages: when sending message from one device it appears again on screen from the other 3 devices. I need help of how to set up messages on each

    Hi all, I bought one iphone and 3 ipads, i set up all on one apple ID. Now i have a problem when using messages: when sending message from one device it appears again on screen from the other 3 devices. I need help on how to set up messages on each device separately and to start using messages app on each device independently. Thanks

    search google for "iphone remove picture from contact"

Maybe you are looking for