Fetch DN's ldap and Java

Hi,
I have this ldapsearch command that I want to convert to use with Java.
ldapsearch -h HOSTNAME -p PORT -b "" -s base "(objectclass=*)" namingContexts
I want to use the ctx.search(); but I have no idea how to convert this method in to a valid search so i can get the naming contexts.
Ive tried
SearchControls searchCtls = new SearchControls();
          searchCtls.setSearchScope(SearchControls.OBJECT_SCOPE);
String searchFilter = "(objectclass=*)";
NamingEnumeration resultEnumeration =
               ctx.search("", searchFilter, searchCtls);
If there is a better way to get hold of the DN's please suggest them too me.
Thanks

I'm guessing you want to find out the distinguished names for the naming contexts held on an Active Directory Domain Controller by reading the RootDSE.
You can find some samples in the following posts:
http://forum.java.sun.com/thread.jspa?threadID=693373&tstart=0
and
http://forum.java.sun.com/thread.jspa?threadID=581470&messageID=2959885
Note that in Active Directory the RootDSE attribute called namingContexts is multivalued. The following snippet illustrates reading all of the values from the namingContexts attribute:Attribute nc = attrs.get("namingContexts");
System.out.println(nc.getID());
for (NamingEnumeration e = nc.getAll();e.hasMore();System.out.println(e.next()));

Similar Messages

  • LDAP and Java

    How do I retrive information about the objects in LDAP in Java(Sample Code)

    Find out at:
    http://java.sun.com/products/jndi/tutorial/index.html
    Artur...

  • Doubt reg LDAP and JAVA

    Hi
    Does someone know any good tutorial abt how to use LDAP from JAVA.
    bye
    raghruam

    The LDAP section of the JNDI tutorial is probably a good starting point:
    http://java.sun.com/products/jndi/tutorial/ldap/index.html

  • Please help - LDAP and Java

    LDAP is the lightweight directory access protocol, described in RFC 2251-2256,2829-2830. It defines a lightweight access mechanism in which clients send requests to and receive responses from LDAP servers.
    does any one know of any java packages that interact with LDAP
    Thanks for your help

    Thanke guys. One more question I am writing this application on AIX and I dont know if jdk1.4 works on AIX so is it possible for me to download just the javax.naming.ldap package or is there some other way I can accomplish this

  • Trying to fetch a value in a java function and returning the array.

    hello....I am trying to fetch a value in a java function and returning a array......I already write the pl/sql function which is working fine....but i think i m lost......when i run it through the jsp it shows me error........pls help
    java code:=
    public String [] viewx(String bid) throws SQLException, Exception {
    String [] values;
    try {
    CallableStatement cstmt = null;
    String SQL = "{?=call vi_dis.v_dis(?)}";
    cstmt = con.prepareCall(SQL);
    cstmt.registerOutParameter(1,Types.ARRAY);
    cstmt.setString(2, bid);
    cstmt.execute();
    Array simpleArray = cstmt.getArray(1);
    values = (String [])simpleArray.getArray();
    cstmt.close();
    } catch (SQLException sqle) {
    error = "SQLException: Could not execute the query.";
    throw new SQLException(error);
    } catch (Exception e) {
    error = "An exception occured while retrieving emp.";
    throw new Exception(error);
    return values;
    pl/sql function
    create or replace package vi_dis
    as
    function v_dis(vbid IN student.bid%type) return stuarray ;
    end;
    create or replace
    package body vi_dis
    as
    function v_dis(vbid IN student.bid%type) return stuarray
    is
    l_stu stUarray :=stuarray();
    cursor c_sel
    is
    SELECT CNAME
    FROM COURSE C,ENROLL E
    WHERE C.CID=E.CID
    AND E.BID=vbid;
    BEGIN
    OPEN c_sel;
    FETCH c_sel BULK COLLECT INTO l_stu;
    l_stu.extend;
    CLOSE c_sel;
    RETURN l_stu;
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN DBMS_OUTPUT.PUT_LINE('NO RESULT AVAILABLE');
    CLOSE c_sel;
    END;
    END;
    /

    BalusC wrote:
    It is comparing the selected value against the List<SelectItem> returned by getSetoresOrigem() as it is during the apply request values phase of the form submit request.Ok. That's what I supposed JSF was doing.
    BalusC wrote:
    If the selected value isn't in there, then you will get this error.I can understand this, but is this right? As I said, the old value isn't really there because I changed the list values to new ones. But the new value (the value of fSetorOrigem ) corresponds to a value that exist in the new list items, so a valid value. So JSF is not considering that I also changed the list, not just the value. It is comparing the new value with the old list, not the new one. Acting like this JSF is making the page looks like a static HTML page, not a dynamic one. If I can't change the list and the value, what's the point of that? In my point of view I'm not doing anything wrong, I'm not violating any JSF rules.
    Marcos

  • Sending Data from R/3 to Java and Java to SAP

    Dear All,
    I am working on a scenario in which I have to send data from sap system to Non-SAP system (Java System).
    Now one way is that I made a RFC in my SAP system and Java can call it using JCO adapter. But In this case I am not able to understand how to go another way,means how to capture data or messages from Java.
    Secondly I have searched and found that IDOC can help me lot in this process ,I am new to IDOCS but through R & D , I have made the IDOC and done the following steps:-
    1. Segment Creation (WE31)
    2. IDOC Types          (WE30)
    3. Message Type     (WE81)
    4. Linking Message type and IDOC type (WE82)
    5. Create Distribution Model (BD64)
    Now I am struck on 5th step , I am not able to distribute model when I distribute it I get the following Error
    Target system AII_00_800                  RFC destination for synchronous communication (message type SYNCH)
                                                                 Partner profile LS AII_00_800 SYNCH does not exist
                                                                 Generate partner profile
                                                                  or specify outbound partner profiles for message type SYNCH
    Target system JAVASYS                    RFC destination for synchronous communication (message type SYNCH)
                                                                  Partner profile LS JAVASYS SYNCH does not exist
                                                                 Generate partner profile
                                                                 or specify outbound partner profiles for message type SYNCH
    JAVASYS is the logical system I created using SALE and ALL_00_800 is already there in LS.
    I am not able to understand that my receiver system is NON SAP system so do I have to create logical system for it , and I have IDES system as sender system with only one client 800, what are all the configuration I have to do on SAP side.
    I am also not able to understand where I will write my code to fetch data based on the input provided by NON SAP system as I will have to design IDOC for both Inbound and Outbound processes.
    Kindly help me out, thanks in advance

    Hi Kanagaraja L,
    Thanks for you response.
    No I haven't created Created RFC Destination , this RFC destination will be of my JAVA system ???.
    I have tried creating the partner logical system in WE20 and dine the following steps:
    1. Partner No.   IDES800     Ides 800 System - Sender System
        Partn.Type    LS          Logical system
    2. The tab Post processing : permitted agent is filled with default parameters.
    3. Then in the outbound parameter table control I have pressed the add record button and got a new screen in
        which I have made the following entry :-
      Partner No.           IDES800        Ides 800 System - Sender System
      Partn.Type            LS             Logical system
      Partner Role          LS             Logical system
        Message Type      SYNCH                            ALE:Dummy Message Type for De
        Message code
        Message function
    Under tab Outbound options :
    Receiver Port  = A000000008  (This I have selected from F4 help)
    Basic type = SYNCHRON
    Saved it with the above data.
    Now I am not able to understand how to do the things you have mentioned in 3rd step in your reply.
    What are all the things I have to do kindly tell , as I am very new to Idocs so don't have much knowledge.
    Edited by: Rachit Khanna on Dec 7, 2009 1:49 PM

  • OID And Java Hash Algorithm Output Differences?

    Hi,
    Can anyone tell me why I am not able to recreate the OID ldap password hash algorithm? Or can anyone tell me why I get these subtle differences between my Java created message digest and the one that is read directly from the oracle ldap hint password field? They are both based on the same original word "test".
    OID Hint Password from ldap ==> {SHA}zrFqbho8VPUOnVvtyUb4c+RWF+k=
    Hash created based on input ==> {SHA}zrFqbho8VPUOP1vtyUb4c+RWF+k=
    Here is a little background. I am working on developing a custom forgot password feature for my web site using OID 10g R2 and Java. I am able to retrieve the oracle hint password from OID using Java JNDI as the orcladmin. This ldap password is a SHA message digest, or hash, that is base 64 encoded. Since it is a one way algorithm I can not decrypt. So instead I take the clear text password string provided by the user and create a message digest(SHA) and then encode in base 64 using Java 1.4.2 like so;
    MessageDigest md = MessageDigest.getInstance("SHA");
    md.update(clearTextPassword.getBytes());
    String userSuppliedPassword = new String(md.digest());
    BASE64Encoder base64encoder = new BASE64Encoder();
    String output = "{SHA}" + base64encoder.encode(userSuppliedPassword.getBytes());
    By the way, I have been able to work around this issue by performing the compare using JNDI search but was curious why this was happening. Thanks!

    Hi
    I am having similar issue. I have to save passwords in encrypted form to LDAP. But not working. I am prepending the encrypted password {SHA} so OID should not convert further.
    Any help is appreciated
    Thanks

  • Authentication on LDAP using java

    Hi guys
    I'm Sandiso Ndlangalavu, student at Peninsula Technikon in South Africa.
    I'm doing 3rd year in Information Technology, I need some advice on this
    matter. I created a website this site has confidential information it
    cannot be viewed by anyone except the authorized members. So I have
    login page; which will ask for username and password and try verify and
    so on. I want to use LDAP for this authentication and java to support it
    but I don't know where to start and how to implement LDAP for login
    purposes. Please can you give advice, links, tutorial and coding sites
    on this. You can pass my email address to any one who can help me([email protected]).
    I will be glad if you can help me here as soon as possible.
    Yours faithfully
    Sandiso Ndlangalavu

    Sushant,
    Download the OIDGroceryDemo from OTN; you will find the code, dispModifySameEmp.jsp, which does user password authentication and maintenance.

  • LDAP and everyone group

    I am using wls version 5.1 with service pack 7. I still need to add all
    users the the "everyone" group in order to be able to authenticate. I
    thought this issue was resolved in the latest service pack. But I still
    get an exception thrown if my user is not in "everyone" group. Does
    anyone know what the status of this bug is? Is it resolved or not?
    Here is the exception:
    java.rmi.RemoteException: Security violation: insufficient permission to
    access method
    at
    weblogic.ejb.internal.BaseEJBObject.preInvoke(BaseEJBObject.java:431)
    at
    com.itginc.webtrade.ejb.LoginBeanEOImpl.loginUser(LoginBeanEOImpl.java:143)
    at
    com.itginc.webtrade.ejb.LoginBeanEOImpl_ServiceStub.loginUser(LoginBeanEOImpl_ServiceStub.java:112)
    at
    com.itginc.webtrade.servlets.LoginServlet.service(LoginServlet.java:190)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:106)
    at
    weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:907)
    at
    weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:851)
    at
    weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContextManager.java:252)
    at
    weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:364)
    at
    weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:252)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)

    Glen wrote:
    >
    I just encountered this error and deleted the 'everyone' group as a workaround.We authenticate with LDAP and WL always complained about not finding the group 'everyone'. The app worked fine but I thought I'd be a good guy and add the group to LDAP. Once I did, I got your error.Could the issue be that the 'everyone' group is OK but the permissions on the group deny access? I'm searching BEA to find out the expected permissions when I found your posting.I still need the expected permissions for the 'everyone' group.According to http://www.weblogic.com/docs51/admindocs/ldap.html#changes
    .. you don't need to define the everyone group in any version after WLS 5.0
    because of the introduction of the CachingRealm.

  • Mail crashes frequently after last Apple update (Safari 4 and Java update)

    Since applying the last Apple software update for Safari 4 and Java earlier this week, Apple Mail has been crashing frequently when I start the program. It does not happen every time, but most of the time. 2-3 seconds after I open Mail, it will crash. I don't use Safari 4, so it's not open when this crash occurs. Any ideas?
    The Problem report is below:
    Process: Mail [161]
    Path: /Applications/Mail.app/Contents/MacOS/Mail
    Identifier: com.apple.mail
    Version: 3.6 (935)
    Build Info: Mail-9350000~1
    Code Type: X86 (Native)
    Parent Process: launchd [70]
    Interval Since Last Report: 38421 sec
    Crashes Since Last Report: 3
    Per-App Interval Since Last Report: 37638 sec
    Per-App Crashes Since Last Report: 3
    Date/Time: 2009-06-18 08:45:34.611 -0700
    OS Version: Mac OS X 10.5.7 (9J61)
    Report Version: 6
    Anonymous UUID: XXXXXX-XXXX-XXXX-XXXX-XXXXXXX
    Exception Type: EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread: 19
    Application Specific Information:
    -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:]
    -[IMAPGateway _allowClientOperationThrough:]
    -[IMAPAccount _fetchUnreadCountsCheckForNewMessages:]
    * Terminating app due to uncaught exception 'WebKitThreadingException', reason: 'NSData* -[WebArchive data](WebArchive*, objc_selector*) was called from a secondary thread'
    Thread 0:
    0 libSystem.B.dylib 0x93b7a286 machmsgtrap + 10
    1 libSystem.B.dylib 0x93b81a7c mach_msg + 72
    2 com.apple.CoreFoundation 0x943f504e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x943f5c78 CFRunLoopRunInMode + 88
    4 com.apple.HIToolbox 0x91ea728c RunCurrentEventLoopInMode + 283
    5 com.apple.HIToolbox 0x91ea70a5 ReceiveNextEventCommon + 374
    6 com.apple.HIToolbox 0x91ea6f19 BlockUntilNextEventMatchingListInMode + 106
    7 com.apple.AppKit 0x90b7fd0d _DPSNextEvent + 657
    8 com.apple.AppKit 0x90b7f5c0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    9 com.apple.AppKit 0x90b785fb -[NSApplication run] + 795
    10 com.apple.AppKit 0x90b45834 NSApplicationMain + 574
    11 com.apple.mail 0x000fb142 0x1000 + 1024322
    Thread 1:
    0 ??? 0000000000 0 + 0
    Thread 2:
    0 ??? 0000000000 0 + 0
    Thread 3:
    0 libSystem.B.dylib 0x93b7a2e6 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x93bac2af pthread_condwait + 1244
    2 libSystem.B.dylib 0x93badb33 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x9681ddcc -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x9681dbe0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.MessageFramework 0x003d9fdb -[InvocationQueue _drainQueue] + 317
    6 com.apple.Foundation 0x967d7e0d -[NSThread main] + 45
    7 com.apple.Foundation 0x967d79b4 _NSThread__main_ + 308
    8 libSystem.B.dylib 0x93bab155 pthreadstart + 321
    9 libSystem.B.dylib 0x93bab012 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x93b8146e _semwaitsignal + 10
    1 libSystem.B.dylib 0x93babdcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.QuartzCore 0x91684a09 fefragmentthread + 54
    3 libSystem.B.dylib 0x93bab155 pthreadstart + 321
    4 libSystem.B.dylib 0x93bab012 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x93b7a2e6 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x93bac2af pthread_condwait + 1244
    2 libSystem.B.dylib 0x93badb33 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x9681ddcc -[NSCondition waitUntilDate:] + 236
    4 com.apple.MessageFramework 0x0032147f -[IMAPClientOperationQueue waitUntilOperationIsFinished:] + 470
    5 com.apple.MessageFramework 0x0032125f -[IMAPGateway waitUntilClientOperationIsFinished:] + 500
    6 com.apple.MessageFramework 0x0031c7c5 -[IMAPGateway addClientOperation:toQueueAndWaitUntilFinished:] + 268
    7 com.apple.MessageFramework 0x0032dc46 -[IMAPMailboxSyncEngine _unlockIfFetchedUidsAndFlagsWithMonitor:] + 723
    8 com.apple.MessageFramework 0x00329225 -[IMAPMailboxSyncEngine _goWithMessages:] + 592
    9 com.apple.MessageFramework 0x002f315f -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 227
    10 com.apple.MessageFramework 0x002f3076 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:] + 50
    11 com.apple.CoreFoundation 0x944749dd _invoking__ + 29
    12 com.apple.CoreFoundation 0x944743c8 -[NSInvocation invoke] + 136
    13 com.apple.MessageFramework 0x003da5c0 -[MonitoredInvocation invoke] + 409
    14 com.apple.MessageFramework 0x003da1a2 -[InvocationQueue _drainQueue] + 772
    15 com.apple.Foundation 0x967d7e0d -[NSThread main] + 45
    16 com.apple.Foundation 0x967d79b4 _NSThread__main_ + 308
    17 libSystem.B.dylib 0x93bab155 pthreadstart + 321
    18 libSystem.B.dylib 0x93bab012 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x93b7a2e6 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x93bac2af pthread_condwait + 1244
    2 libSystem.B.dylib 0x93badb33 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x9681ddcc -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x9681dbe0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.MessageFramework 0x003d9fdb -[InvocationQueue _drainQueue] + 317
    6 com.apple.Foundation 0x967d7e0d -[NSThread main] + 45
    7 com.apple.Foundation 0x967d79b4 _NSThread__main_ + 308
    8 libSystem.B.dylib 0x93bab155 pthreadstart + 321
    9 libSystem.B.dylib 0x93bab012 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x93b7a2e6 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x93bac2af pthread_condwait + 1244
    2 libSystem.B.dylib 0x93badb33 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x9681ddcc -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x9681dbe0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.MessageFramework 0x003d9fdb -[InvocationQueue _drainQueue] + 317
    6 com.apple.Foundation 0x967d7e0d -[NSThread main] + 45
    7 com.apple.Foundation 0x967d79b4 _NSThread__main_ + 308
    8 libSystem.B.dylib 0x93bab155 pthreadstart + 321
    9 libSystem.B.dylib 0x93bab012 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x93b7a2e6 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x93bac2af pthread_condwait + 1244
    2 libSystem.B.dylib 0x93badb33 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x9681ddcc -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x9681dbe0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.MessageFramework 0x003d9fdb -[InvocationQueue _drainQueue] + 317
    6 com.apple.Foundation 0x967d7e0d -[NSThread main] + 45
    7 com.apple.Foundation 0x967d79b4 _NSThread__main_ + 308
    8 libSystem.B.dylib 0x93bab155 pthreadstart + 321
    9 libSystem.B.dylib 0x93bab012 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x93b7a286 machmsgtrap + 10
    1 libSystem.B.dylib 0x93b81a7c mach_msg + 72
    2 com.apple.CoreFoundation 0x943f504e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x943f5c78 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x9680c3e5 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    5 com.apple.Foundation 0x96818504 -[NSRunLoop(NSRunLoop) run] + 84
    6 com.apple.MessageFramework 0x002fbd51 +[_NSSocket _runIOThread] + 98
    7 com.apple.Foundation 0x967d7e0d -[NSThread main] + 45
    8 com.apple.Foundation 0x967d79b4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x93bab155 pthreadstart + 321
    10 libSystem.B.dylib 0x93bab012 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x93bc96fa select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x93bab155 pthreadstart + 321
    2 libSystem.B.dylib 0x93bab012 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x93b7a286 machmsgtrap + 10
    1 libSystem.B.dylib 0x93b81a7c mach_msg + 72
    2 com.apple.CoreFoundation 0x943f504e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x943f5c78 CFRunLoopRunInMode + 88
    4 com.apple.MessageFramework 0x002feea6 _handleRequestWithTimeout + 2163
    5 com.apple.MessageFramework 0x003038d1 -[_NSSocket readBytes:length:error:] + 154
    6 com.apple.MessageFramework 0x0030345b -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 89
    7 com.apple.MessageFramework 0x00303316 -[Connection _fillBuffer:] + 853
    8 com.apple.MessageFramework 0x00302edc -[Connection _readLineIntoData:error:] + 70
    9 com.apple.MessageFramework 0x00302e54 -[IMAPConnection _readLineIntoData:error:] + 71
    10 com.apple.MessageFramework 0x00302cdc -[IMAPConnection(MFPrivate) _readDataOfLength:intoData:error:] + 155
    11 com.apple.MessageFramework 0x0030282a -[IMAPResponse initWithConnection:error:] + 370
    12 com.apple.MessageFramework 0x00302677 -[IMAPConnection _copyNextServerResponse:] + 79
    13 com.apple.MessageFramework 0x003fdc2f -[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand:exists:] + 201
    14 com.apple.MessageFramework 0x0031ee54 -[IMAPConnection(MFPrivate) _responseFromSendingOperation:] + 1126
    15 com.apple.MessageFramework 0x0032e163 -[IMAPConnection executeFetch:] + 43
    16 com.apple.MessageFramework 0x0031dc6d -[IMAPGateway _allowClientOperationThrough:] + 1256
    17 com.apple.CoreFoundation 0x944749dd _invoking__ + 29
    18 com.apple.CoreFoundation 0x944743c8 -[NSInvocation invoke] + 136
    19 com.apple.MessageFramework 0x003da1a2 -[InvocationQueue _drainQueue] + 772
    20 com.apple.MessageFramework 0x0031d6b4 -[MonitoredInvocationQueue _drainQueue] + 261
    21 com.apple.Foundation 0x967d7e0d -[NSThread main] + 45
    22 com.apple.Foundation 0x967d79b4 _NSThread__main_ + 308
    23 libSystem.B.dylib 0x93bab155 pthreadstart + 321
    24 libSystem.B.dylib 0x93bab012 thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x93b7a286 machmsgtrap + 10
    1 libSystem.B.dylib 0x93b81a7c mach_msg + 72
    2 com.apple.CoreFoundation 0x943f504e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x943f5c78 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x9680c3e5 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    5 com.apple.Foundation 0x96818504 -[NSRunLoop(NSRunLoop) run] + 84
    6 com.apple.MessageFramework 0x003d8119 -[RSSInterchange _runManager] + 2140
    7 com.apple.Foundation 0x967d7e0d -[NSThread main] + 45
    8 com.apple.Foundation 0x967d79b4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x93bab155 pthreadstart + 321
    10 libSystem.B.dylib 0x93bab012 thread_start + 34
    Thread 13:
    0 libSystem.B.dylib 0x93b7a286 machmsgtrap + 10
    1 libSystem.B.dylib 0x93b81a7c mach_msg + 72
    2 com.apple.CoreFoundation 0x943f504e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x943f5c78 CFRunLoopRunInMode + 88
    4 com.apple.IMUtils 0x9198bdb7 -[IMRemoteObjectBroadcaster _workerThread] + 246
    5 com.apple.Foundation 0x967d7e0d -[NSThread main] + 45
    6 com.apple.Foundation 0x967d79b4 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x93bab155 pthreadstart + 321
    8 libSystem.B.dylib 0x93bab012 thread_start + 34
    Thread 14:
    0 libSystem.B.dylib 0x93b85836 open$UNIX2003 + 10
    1 com.apple.MessageFramework 0x003729d4 -[DataCollector initWithMessage:isPartial:part:] + 356
    2 com.apple.MessageFramework 0x00372854 +[Library dataConsumerForMessage:isPartial:] + 86
    3 com.apple.MessageFramework 0x003727ca +[Library setData:forMessage:isPartial:] + 60
    4 com.apple.MessageFramework 0x0035cc2f -[IMAPMessageDownload data] + 1374
    5 com.apple.MessageFramework 0x00340146 -[IMAPMailboxSyncEngine _unlockIfDidCacheMessagesWithMonitor:] + 3259
    6 com.apple.MessageFramework 0x00329260 -[IMAPMailboxSyncEngine _goWithMessages:] + 651
    7 com.apple.MessageFramework 0x002f315f -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 227
    8 com.apple.MessageFramework 0x002f3076 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:] + 50
    9 com.apple.MessageFramework 0x0034cc34 -[IMAPAccount _synchronizeMailboxesSynchronously] + 1049
    10 com.apple.MessageFramework 0x0034c80e -[IMAPAccount _synchronizeMailboxes:] + 548
    11 com.apple.MessageFramework 0x0033b4b9 -[IMAPAccount _fetchUnreadCountsCheckForNewMessages:] + 1189
    12 com.apple.CoreFoundation 0x944749dd _invoking__ + 29
    13 com.apple.CoreFoundation 0x944743c8 -[NSInvocation invoke] + 136
    14 com.apple.MessageFramework 0x003da5c0 -[MonitoredInvocation invoke] + 409
    15 com.apple.MessageFramework 0x003da1a2 -[InvocationQueue _drainQueue] + 772
    16 com.apple.Foundation 0x967d7e0d -[NSThread main] + 45
    17 com.apple.Foundation 0x967d79b4 _NSThread__main_ + 308
    18 libSystem.B.dylib 0x93bab155 pthreadstart + 321
    19 libSystem.B.dylib 0x93bab012 thread_start + 34
    Thread 15:
    0 libSystem.B.dylib 0x93b7a2e6 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x93bac2af pthread_condwait + 1244
    2 libSystem.B.dylib 0x93badb33 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x9681ddcc -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x9681dbe0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.MessageFramework 0x003d9fdb -[InvocationQueue _drainQueue] + 317
    6 com.apple.MessageFramework 0x0031d6b4 -[MonitoredInvocationQueue _drainQueue] + 261
    7 com.apple.Foundation 0x967d7e0d -[NSThread main] + 45
    8 com.apple.Foundation 0x967d79b4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x93bab155 pthreadstart + 321
    10 libSystem.B.dylib 0x93bab012 thread_start + 34
    Thread 16:
    0 libSystem.B.dylib 0x93b7a2e6 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x93bac2af pthread_condwait + 1244
    2 libSystem.B.dylib 0x93badb33 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x9681ddcc -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x9681dbe0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.MessageFramework 0x003d9fdb -[InvocationQueue _drainQueue] + 317
    6 com.apple.Foundation 0x967d7e0d -[NSThread main] + 45
    7 com.apple.Foundation 0x967d79b4 _NSThread__main_ + 308
    8 libSystem.B.dylib 0x93bab155 pthreadstart + 321
    9 libSystem.B.dylib 0x93bab012 thread_start + 34
    Thread 17:
    0 libSystem.B.dylib 0x93b7a2e6 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x93bac2af pthread_condwait + 1244
    2 libSystem.B.dylib 0x93badb33 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x9681ddcc -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x9681dbe0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.MessageFramework 0x003d9fdb -[InvocationQueue _drainQueue] + 317
    6 com.apple.MessageFramework 0x0031d6b4 -[MonitoredInvocationQueue _drainQueue] + 261
    7 com.apple.Foundation 0x967d7e0d -[NSThread main] + 45
    8 com.apple.Foundation 0x967d79b4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x93bab155 pthreadstart + 321
    10 libSystem.B.dylib 0x93bab012 thread_start + 34
    Thread 18:
    0 libSystem.B.dylib 0x93b8146e _semwaitsignal + 10
    1 libSystem.B.dylib 0x93b81236 usleep$UNIX2003 + 61
    2 com.apple.AppKit 0x90be6229 -[NSUIHeartBeat _heartBeatThread:] + 2042
    3 com.apple.Foundation 0x967d7e0d -[NSThread main] + 45
    4 com.apple.Foundation 0x967d79b4 _NSThread__main_ + 308
    5 libSystem.B.dylib 0x93bab155 pthreadstart + 321
    6 libSystem.B.dylib 0x93bab012 thread_start + 34
    Thread 19 Crashed:
    0 com.apple.CoreFoundation 0x9446ef54 __TERMINATING_DUE_TO_UNCAUGHT_EXCEPTION__ + 4
    1 libobjc.A.dylib 0x973bbe3b objcexceptionthrow + 40
    2 com.apple.CoreFoundation 0x9446ee8b +[NSException raise:format:arguments:] + 155
    3 com.apple.CoreFoundation 0x9446eeca +[NSException raise:format:] + 58
    4 com.apple.WebCore 0x92c79531 WebCoreReportThreadViolation + 257
    5 com.apple.WebKit 0x938f781b -[WebArchive data] + 43
    6 com.apple.mail 0x00197857 0x1000 + 1665111
    7 com.apple.MessageFramework 0x003e4073 -[MimeBody attributedString] + 239
    8 com.growl.GrowlMail 0x50003a8b GMDescriptionFormatString + 655
    9 com.apple.Foundation 0x967d7e0d -[NSThread main] + 45
    10 com.apple.Foundation 0x967d79b4 _NSThread__main_ + 308
    11 libSystem.B.dylib 0x93bab155 pthreadstart + 321
    12 libSystem.B.dylib 0x93bab012 thread_start + 34
    Thread 20:
    0 libSystem.B.dylib 0x93ba52c2 lstat + 10
    1 com.apple.Foundation 0x967f5229 -[NSFileManager fileExistsAtPath:] + 153
    2 com.apple.MessageFramework 0x0037674a -[LibraryMessage isMessageContentsLocallyAvailable] + 44
    3 com.apple.MessageFramework 0x002ffe32 -[MessageStore bodyForMessage:fetchIfNotAvailable:updateFlags:] + 107
    4 com.apple.MessageFramework 0x002ffdc1 -[MessageStore bodyForMessage:fetchIfNotAvailable:] + 57
    5 com.apple.MessageFramework 0x00398ea1 -[Message messageBodyIfAvailable] + 69
    6 com.growl.GrowlMail 0x500039f4 GMDescriptionFormatString + 504
    7 com.apple.Foundation 0x967d7e0d -[NSThread main] + 45
    8 com.apple.Foundation 0x967d79b4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x93bab155 pthreadstart + 321
    10 libSystem.B.dylib 0x93bab012 thread_start + 34
    Thread 19 crashed with X86 Thread State (32-bit):
    eax: 0xa04b60f0 ebx: 0x973bbe1c ecx: 0xa04b51a0 edx: 0x00869000
    edi: 0x17f246c0 esi: 0xa029adec ebp: 0xb0da2b48 esp: 0xb0da2b48
    ss: 0x0000001f efl: 0x00000286 eip: 0x9446ef54 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x55221000
    Binary Images:
    0x1000 - 0x271ff3 com.apple.mail 3.6 (935) <db76caa848fd321522026ded5f5f33de> /Applications/Mail.app/Contents/MacOS/Mail
    0x2e0000 - 0x539ffb com.apple.MessageFramework 3.6 (935.3) <7bb200e90f1ed167a562700f6c6f2baf> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x690000 - 0x692fff com.apple.ExceptionHandling 1.5 (10) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x699000 - 0x6bdfe7 com.apple.speech.LatentSemanticMappingFramework 2.6.4 (2.6.4) <1591e65449707141112554274c637e5a> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x6d2000 - 0x7d8ff7 com.apple.PubSub 1.0.4 (65.11) <296d6ac9aec1acb5386e761bcd8e4d47> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x87f000 - 0x881fff +com.Logitech.Control Center.Scroll Enhancer Loader 2.6.0 (2.6.0) /Library/InputManagers/LCC Scroll Enhancer Loader/LCC Scroll Enhancer Loader.bundle/Contents/MacOS/LCC Scroll Enhancer Loader
    0x887000 - 0x889fff +com.Logitech.Control Center.Scroll Enhancer 2.6.0 (2.6.0) /Library/Application Support/Logitech/LCC Scroll Enhancer.bundle/Contents/MacOS/LCC Scroll Enhancer
    0x15c67000 - 0x15e6efef com.apple.RawCamera.bundle 2.0.15 (471) <557c94fbd7c15219746393464a79cf87> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x16319000 - 0x1631eff3 libCGXCoreImage.A.dylib ??? (???) <3a78abc535c80f9819931b670da804a2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x17e12000 - 0x17e13fe1 com.apple.textencoding.unicode 2.2 (2.2) <542f2b8930d6bdf16c318ffea541acab> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x180d8000 - 0x180ebfff com.apple.syncservices.syncservicesui 4.2 (389.17) <c00f2d6abc43047900e025c3d525fb45> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
    0x18401000 - 0x18421fff com.apple.Mail.Syncer 3.6 (935.3) <d1a9e4d8b8a9a4a9a2deca443d42d08a> /System/Library/Frameworks/Message.framework/Versions/B/Resources/Syncer.syncsc hema/Contents/MacOS/Syncer
    0x50000000 - 0x50005fff +com.growl.GrowlMail 1.1.4 (1.1.4) <78442b8090c647f92bcc14fd73f0029b> /Users/stvjobs/Library/Mail/Bundles/GrowlMail.mailbundle/Contents/MacOS/GrowlMa il
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <100d362e03410f181a34e04e94189ae5> /usr/lib/dyld
    0x90003000 - 0x90075fff com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x90076000 - 0x9007afff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x9007b000 - 0x90107ff7 com.apple.LaunchServices 290.3 (290.6) <bdba267184df88bd5b8e2116ea903872> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x90108000 - 0x901e9fff com.apple.syncservices 3.2 (389.17) <baa8467fb9c7ded4bbcccc864d24d327> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x9037a000 - 0x90501feb com.apple.JavaScriptCore 5530 (5530.17) <687d2f3063f4d922f233623d8f219822> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x90502000 - 0x90510ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x90511000 - 0x9054bfe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9054c000 - 0x90575fff com.apple.CoreMediaPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x90576000 - 0x90586fff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <5171726062da2bd3c6b8b58486c7777a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x90587000 - 0x905afff7 com.apple.shortcut 1.0.1 (1.0) <131202e7766e327d02d55c0f5fc44ad7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x905b0000 - 0x905b5fff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x905b6000 - 0x905f8fef com.apple.NavigationServices 3.5.2 (163) <d3a7c9720479eed8ea35703125303871> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x90603000 - 0x90622ffa libJPEG.dylib ??? (???) <e7eb56555109e23144924cd64aa8daec> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x90623000 - 0x90949fe2 com.apple.QuickTime 7.6.2 (1327) <3754e41d846b7948f96c9ec4c690b520> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9094a000 - 0x90a90ff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <6a6623d3d1a7292b5c3763dcd108b55f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x90a91000 - 0x90aa9ff7 com.apple.CoreVideo 1.6.0 (20.0) <dd60118bac9aefaf88d9ab44558f05c4> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x90aaa000 - 0x90ab6fff libbz2.1.0.dylib ??? (???) <c5a3563ebe66db7fa456e0fb75b657df> /usr/lib/libbz2.1.0.dylib
    0x90ab7000 - 0x90b3eff7 libsqlite3.0.dylib ??? (???) <3334ea5af7a911637413334154bb4100> /usr/lib/libsqlite3.0.dylib
    0x90b3f000 - 0x9133dfef com.apple.AppKit 6.5.7 (949.46) <a80f8cb62f6bdcb3bed3c8675d55881d> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9133e000 - 0x9133effa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9133f000 - 0x913e6feb com.apple.QD 3.11.56 (???) <a94d0f5438b730e88e5efdb233295c52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x913ec000 - 0x9146bff5 com.apple.SearchKit 1.2.1 (1.2.1) <3140a605db2abf56b237fa156a08b28b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9146c000 - 0x9148aff3 com.apple.DirectoryService.Framework 3.5.6 (3.5.6) <daa1307737197c7757f44f16370249dc> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9148b000 - 0x914d4fef com.apple.Metadata 10.5.2 (398.25) <e0572f20350523116f23000676122a8d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x914d5000 - 0x914d5ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x914d6000 - 0x914d9fff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x914da000 - 0x91537ffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x91538000 - 0x91544ffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x91545000 - 0x9158ffe1 com.apple.securityinterface 3.0.2 (36684) <7109034b9898a11506fc67e887e69d2b> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x91590000 - 0x9192dfef com.apple.QuartzCore 1.5.8 (1.5.8) <a28fa54346a9f9d5b3bef076a1ee0fcf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9192e000 - 0x9197fff7 com.apple.HIServices 1.7.0 (???) <01b690d1f376e400ac873105533e39eb> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91980000 - 0x91985ffc com.apple.KerberosHelper 1.1 (1.0) <c6b942d705fa0460ace11af01f316db1> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x91986000 - 0x91986ffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91987000 - 0x91989ff5 libRadiance.dylib ??? (???) <8a844202fcd65662bb9ab25f08c45a62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x9198a000 - 0x9199dfff com.apple.IMUtils 4.0.8 (584) <2105663d09d2bee0d8742159d0581a3e> /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x9199e000 - 0x91ad7ff7 libicucore.A.dylib ??? (???) <cac059ebdac7d9a63ee0f7a648c9f6cf> /usr/lib/libicucore.A.dylib
    0x91ad8000 - 0x91b92fe3 com.apple.CoreServices.OSServices 227 (227) <30cebcb68b1b571df7d77474e0c31556> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91b93000 - 0x91ccbfe7 com.apple.imageKit 1.0.2 (1.0) <2e354566521df8b1e3a78e9aeab5e6b4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x91ccc000 - 0x91d10feb com.apple.DirectoryService.PasswordServerFramework 3.0.3 (3.0.3) <29109fed9f54cbe3d3faea0603362719> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x91d11000 - 0x91d9bfe3 com.apple.DesktopServices 1.4.8 (1.4.8) <3065de6531ce839c7cb5b6dd70e03f4f> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x91d9c000 - 0x91e19fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91e1a000 - 0x91e76ff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x91e77000 - 0x9217ffff com.apple.HIToolbox 1.5.5 (???) <b17766e3d8800a73f534c41f624f5ac4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92180000 - 0x921edffb com.apple.WhitePagesFramework 1.2 (122.0) /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x921f6000 - 0x921fcfff com.apple.print.framework.Print 218.0.3 (220.2) <5b7f4ef7c2df36aff9605377775781e4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92200000 - 0x924daff3 com.apple.CoreServices.CarbonCore 786.11 (786.13) <9e2d85d52e5e2951aa4dd53c48ccc52f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x924db000 - 0x924e0fff com.apple.DisplayServicesFW 2.0.2 (2.0.2) <97878a73074e7da4fe31ea010a5d5ae1> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x924e1000 - 0x924ecfff com.apple.dotMacLegacy 3.1 (246) <d335114af509bf38a7ead5274a93dfb1> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x924ed000 - 0x924f1fff com.apple.OpenDirectory 10.5 (10.5) <e7e4507f5ecd8c8cdcdb2fc0675da0b4> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x924f2000 - 0x92d82fff com.apple.WebCore 5530.18 (5530.18) <bed2e1280e908e17419ce0a159c19caa> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x92d83000 - 0x92dc4fe7 libRIP.A.dylib ??? (???) <69bd09fcd8d8b235cee7a405290d6818> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x92dc5000 - 0x92dcefff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92dd2000 - 0x92ddafff com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x92ddb000 - 0x92de7ff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x93051000 - 0x93090fef libTIFF.dylib ??? (???) <3589442575ac77746ae99ecf724f5f87> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x93091000 - 0x930befeb libvDSP.dylib ??? (???) <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x930bf000 - 0x9316ffff edu.mit.Kerberos 6.0.13 (6.0.13) <804bd1b3f08fb57396781f012006367c> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x93170000 - 0x931eaff8 com.apple.print.framework.PrintCore 5.5.4 (245.6) <03d0585059c20cb0bde5e000438c49e1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x931eb000 - 0x931faffe com.apple.DSObjCWrappers.Framework 1.3 (1.3) <98f7b46a9f1a099f77e1092ef8e29c63> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x931fb000 - 0x9335eff2 com.apple.CalendarStore 3.0.7 (858) /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x9335f000 - 0x93447ff3 com.apple.CoreData 100.2 (186.1) <8fb61e1714a4b8d587ce97605ad32547> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93448000 - 0x93499feb com.apple.framework.familycontrols 1.0.4 (1.0.4) <0c445b73c4531aca4355e3ffdd2715fa> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x9349a000 - 0x934cbffb com.apple.quartzfilters 1.5.0 (1.5.0) <22581f8fe9dd2cb261f97a897407ec3e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x934cc000 - 0x93508fff com.apple.DAVKit 3.0.6 (661) /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x93509000 - 0x9359cfff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x93736000 - 0x93774fff libGLImage.dylib ??? (???) <a6425aeb77f4da13212ac75df57b056d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x93775000 - 0x9377ffeb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93780000 - 0x93837ff3 com.apple.QTKit 7.6.2 (1327) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x93838000 - 0x938c4ff7 com.apple.framework.IOKit 1.5.2 (???) <97b9f9d584f48891377f0481b9104434> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x938c5000 - 0x938ccff7 libCGATS.A.dylib ??? (???) <211348279493364e9920adc86484cedd> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x938cd000 - 0x939a6ff7 com.apple.WebKit 5530.18 (5530.18) <08df2c1fd856bd9b672993dacb18495a> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x939a7000 - 0x939b2fe7 libCSync.A.dylib ??? (???) <9e3544fe087bb4dc760b7afe0850dd6c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x939b3000 - 0x93b05ff3 com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93b06000 - 0x93b78ff7 com.apple.iLifeMediaBrowser 2.0.3 (346) <2f558ebc56b9b3122efac1bcad78a0db> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x93b79000 - 0x93ce0ff3 libSystem.B.dylib ??? (???) <b47c8e6e45aef620730710a732bf1930> /usr/lib/libSystem.B.dylib
    0x93ce1000 - 0x94381fe3 com.apple.CoreGraphics 1.409.3 (???) <25dceb14af3455b768f56e8765ecf3ca> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x94382000 - 0x944b5fef com.apple.CoreFoundation 6.5.6 (476.18) <2d52bab73660117571bd6486dc318f8e> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x944b6000 - 0x944bafff libGIF.dylib ??? (???) <572a32e46e33be1ec041c5ef5b0341ae> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x944bb000 - 0x94879fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9487a000 - 0x94c8afef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x94c8b000 - 0x94ca0ffb com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x94ca1000 - 0x94cb8fff com.apple.datadetectors 1.0.1 (66.2) <b4676446cca8a1e4c28ca911026b7ceb> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x94cb9000 - 0x94d6bffb libcrypto.0.9.7.dylib ??? (???) <9d714c92872a93dd127ea8556b2c8945> /usr/lib/libcrypto.0.9.7.dylib
    0x94d6c000 - 0x94d6cffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94d6d000 - 0x94d71ffd com.apple.AOSNotification 1.0.0 (68.13) <d2a1f7c6e054d7451b17c7301e4dadd5> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x94d72000 - 0x94d96feb libssl.0.9.7.dylib ??? (???) <8084593b773bec8f2b9614fd23c5ed73> /usr/lib/libssl.0.9.7.dylib
    0x94d97000 - 0x94f16fff com.apple.AddressBook.framework 4.1.2 (700) <41a71b250286dc8d8bcee30784b894c8> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x95ef3000 - 0x95f0effb libPng.dylib ??? (???) <4780e979d35aa5ec2cea22678836cea5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x95f0f000 - 0x95f0fffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x95f10000 - 0x95f15fff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x95f16000 - 0x95f70ff7 com.apple.CoreText 2.0.4 (???) <f0b6c1d4f40bd21505097f0255abfead> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x95f71000 - 0x95f82ffe com.apple.CFOpenDirectory 10.5 (10.5) <6a7f55108d77db7384d0e2219d07e9f8> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x95f83000 - 0x96000feb com.apple.audio.CoreAudio 3.1.2 (3.1.2) <5a4e6329f8dbca5dcd70924525afd24a> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x96001000 - 0x96010fff libsasl2.2.dylib ??? (???) <bb7971ca2f609c070f87786a93d1041e> /usr/lib/libsasl2.2.dylib
    0x96011000 - 0x96012ffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x96043000 - 0x96043ff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x96044000 - 0x96215ffb com.apple.security 5.0.5 (36371) <c13e0bb1acfdcf94be4d3ee118ef190e> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x96216000 - 0x96218fff com.apple.securityhi 3.0 (30817) <72cb8b012603370e904b31a24a91121b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x96219000 - 0x966eafbe libGLProgrammability.dylib ??? (???) <7f18294a7bd0b6afe4319f29187fc70d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x966eb000 - 0x967ccff7 libxml2.2.dylib ??? (???) <2f6b294896866822330a8888b7f53b75> /usr/lib/libxml2.2.dylib
    0x967cd000 - 0x96a49fe7 com.apple.Foundation 6.5.8 (677.24) <aa84b0383891378c348ffa4a94853082> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x96a4a000 - 0x96aa3ff7 libGLU.dylib ??? (???) <a3b9be30100a25a6cd3ad109892f52b7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x96aa4000 - 0x96ad8fef com.apple.bom 9.0.1 (136.1.1) <e1f64b0dae30d560a1204c69c14751a0> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x96ad9000 - 0x96b7dfec com.apple.CFNetwork 438.10 (438.12) <fde64bbb20532794396fb21911ccaa98> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x96b7e000 - 0x96b8effc com.apple.LangAnalysis 1.6.4 (1.6.4) <8b7831b5f74a950a56cf2d22a2d436f6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x96b8f000 - 0x96bbefe3 com.apple.AE 402.3 (402.3) <b13bfda0ad9314922ee37c0d018d7de9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x96bbf000 - 0x96bf1fff com.apple.LDAPFramework 1.4.5 (110) <648b3ee893db8af0a5bbbe857ec0bb7d> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x96bf2000 - 0x96c40ff3 com.apple.datadetectorscore 1.0.2 (52.14) <4c0a8d505509b7748d3a0cfc887d2c2a> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x96c41000 - 0x96dfdff3 com.apple.QuartzComposer 2.1 (106.13) <40f034e8c8fd31c9081f5283dcf22b78> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x96dfe000 - 0x96dfeffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96ec9000 - 0x96ec9ffe com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <a2b462be6c51187eddf7d097ef0e0a04> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x96eca000 - 0x96ef3fff libcups.2.dylib ??? (???) <1b0435164b9dc6c773d0b1f24701e554> /usr/lib/libcups.2.dylib
    0x96ef4000 - 0x96f5affb com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x96f5b000 - 0x96f9bfff com.apple.CoreMediaIOServicesPrivate 20.0 (20.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x96f9c000 - 0x96febfff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x96fec000 - 0x96ff3fe9 libgcc_s.1.dylib ??? (???) <a9ab135a5f81f6e345527df87f51bfc9> /usr/lib/libgcc_s.1.dylib
    0x96ff4000 - 0x97011ff7 com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x97012000 - 0x97030fff libresolv.9.dylib ??? (???) <b5b1527c2d99495ad5d507ab0a4ea872> /usr/lib/libresolv.9.dylib
    0x97031000 - 0x97047fff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x97048000 - 0x97113fff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x97114000 - 0x97130fff com.apple.IMFramework 4.0.8 (584) <49551f914cd1c3ba154f15f3765803a9> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x97131000 - 0x97167fef libtidy.A.dylib ??? (???) <7b9fc90dc0d50da27a24f6f84ccdd7b7> /usr/lib/libtidy.A.dylib
    0x97168000 - 0x97168ffe com.apple.quartzframework 1.5 (1.5) <4b8f505e32e4f2d67967a276401f9aaf> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x97169000 - 0x9719bff7 com.apple.DotMacSyncManager 1.2.4 (308) <99bb01aa2cdb0d860a11a1097ffe421d> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x9719c000 - 0x9719cfff com.apple.Carbon 136 (136) <9961570a497d79f13b8ea159826af42d> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9719d000 - 0x97264ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x97265000 - 0x97265ff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x97266000 - 0x9726dffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x9726e000 - 0x97301ff3 com.apple.ApplicationServices.ATS 3.7 (???) <a535fc4982d3acff6530ec25c402e679> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x97302000 - 0x97326fff libxslt.1.dylib ??? (???) <0a9778d6368ae668826f446878deb99b> /usr/lib/libxslt.1.dylib
    0x97327000 - 0x97352fe7 libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
    0x97353000 - 0x9738afff com.apple.SystemConfiguration 1.9.2 (1.9.2) <01426a38ba44efa5d448daef8b3e9941> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9738b000 - 0x973a3fff com.apple.openscripting 1.2.8 (???) <572c7452d7e740e8948a5ad07a99602b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x973a4000 - 0x973b1fe7 com.apple.opengl 1.5.10 (1.5.10) <5a2813f80c9441170cc1ab8a3dac5038> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x973b2000 - 0x97492fff libobjc.A.dylib ??? (???) <7b92613fdf804fd9a0a3733a0674c30b> /usr/lib/libobjc.A.dylib
    0x97493000 - 0x974cdffe com.apple.securityfoundation 3.0.2 (36131) <39663c9b6f1a09d0566305d9f87cfc91> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0xc0000000 - 0xc0008fff +com.growl.growlframework 1.1.4 (1.1.4) <e42fe97093035d2485b764ccf9a15d70> /Users/stvjobs/Library/Mail/Bundles/GrowlMail.mailbundle/Contents/Frameworks/Gr owl.framework/Growl
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    I did some googling and it looks like this problem is Growl and Safari related. See: http://www.macfixit.com/article.php?story=20090227003450677

  • PL/SQL Procedure and Java

    Hi All,
    I am working on a Data Warehousing Product and generating Web Reports.
    These Web Reports are JSPs.
    The basic architechture used for this is :
    1. Get the inputs required for Report Generation through a Web GUI
    2. Validate and Process (If Valid) the inputs so that it can be applied on the Data in the DB to fetch appropriate information.
    3. The Data from the DB is retreived in the form of PL/SQL Procedures, which take the Processed information from Step 2 as Input and give the Output in the form of REF CURSORS.
    Note: There are a many PL/SQL Procedures that are being executed, based on the configuration the Client has set. This configuration enables the Client to set the columns he wants to see in the Web Reports. This configuration is set before the Reports are run.
    4. A call is made from Java to Oracle, each time a PL/SQL Procedure need to be executed. The REF CURSOR received as an Output from the PL/SQL Procedure is processed.
    5. The next PL/SQL Procedure is called (if existing), else the Processed Data (from REF CURSOR Output) is displayed in the JSP as Web Reports.
    The issue with above architechture is the PERFORMANCE.
    I would like to know:
    - The various ways in which data can be EFFICIENTLY & QUICKLY retrieved from PL/SQL Procedure in Java.
    - Are there any APIs that improve the Java-Oracle Data Fetch Efficiency
    - Is there any Java Framework available that can be used to increase the spped of Web Report generation.
    - Do you suggest any changes in the above mentioned architechture, that make this work a Sweet Sixeen Year olg guy! ;)
    - In general, any input that can increase the Speed of Web Report Generation.
    Kindly let me know if I have not been clear at any point, so that I can re-explain the same more clearly.
    And the most important thing, kindly scrap down your thoughts about the same.
    Thanks a lot in advance for your VALUABLE INPUTS.
    - Vikas

    Spring
    http://www.springframework.org/
    http://static.springframework.org/spring/docs/2.0.x/reference/jdbc.html
    http://static.springframework.org/spring/docs/2.0.x/reference/jdbc.html#jdbc-StoredProcedure

  • JNDI, LDAP, and Weblogic 6.0

    Hi-
    We are encountering an issue with JNDI and spurious "socket closed"
    exceptions. The players in our environment are Weblogic 6.0, Netscape
    Directory Server 4.1, (both running on Solaris 2.8) and JNDI as of JDK 1.3.
    We do JNDI lookups to connect to LDAP and most of the time everything works
    fine. Occasionally we get the following exception.
    java.lang.NullPointerException
    at com.sun.jndi.ldap.Connection.run(Connection.java:568)
    at java.lang.Thread.run(Thread.java:484)
    Exception encountered: Socket closed
    javax.naming.CommunicationException: Socket closed. Root exception is
    java.net.SocketException: Socket closed
    at java.net.SocketOutputStream.socketWrite(Native Method)
    at java.net.SocketOutputStream.write(SocketOutputStream.java:83)
    at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:72)
    at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:130)
    at com.sun.jndi.ldap.Connection.writeRequest(Connection.java:210)
    at com.sun.jndi.ldap.LdapClient.search(LdapClient.java:497)
    at com.sun.jndi.ldap.LdapCtx.doSearch(LdapCtx.java:1720)
    at com.sun.jndi.ldap.LdapCtx.searchAux(LdapCtx.java:1584)
    at com.sun.jndi.ldap.LdapCtx.c_search(LdapCtx.java:1509)
    at
    com.sun.jndi.toolkit.ctx.ComponentDirContext.p_search(ComponentDirContext.ja
    va:371)
    at
    com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.search(PartialCompositeD
    irContext.java:331)
    at
    com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.search(PartialCompositeD
    irContext.java:316)
    at
    javax.naming.directory.InitialDirContext.search(InitialDirContext.java:241)
    at adpsis.posse.ldap.LDAPReader.find(LDAPReader.java:37)
    at adpsis.posse.prfpos.PreferencesEJB.getUserName(PreferencesEJB.java:589)
    at
    adpsis.posse.prfpos.PreferencesEJB.getColorAttributes(PreferencesEJB.java:39
    1)
    at
    adpsis.posse.prfpos.PreferencesEJB.getColorPreferences(PreferencesEJB.java:3
    02)
    at
    adpsis.posse.prfpos.PreferencesEJBImpl.getColorPreferences(PreferencesEJBImp
    l.java:250)
    at
    adpsis.posse.prfpos.PreferencesEJBEOImpl.getColorPreferences(PreferencesEJBE
    OImpl.java:287)
    at
    adpsis.posse.prfpos.PreferencesEJBEOImpl_WLSkel.invoke(PreferencesEJBEOImpl_
    WLSkel.java:116)
    at
    weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:373)
    at
    weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java
    :128)
    at
    weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:237)
    at
    weblogic.rmi.internal.BasicRequestHandler.handleRequest(BasicRequestHandler.
    java:118)
    at
    weblogic.rmi.internal.BasicRequestDispatcher.dispatch(BasicRequestDispatcher
    .java:115)
    at weblogic.rmi.internal.ServerRequest.sendOneWayRaw(ServerRequest.java:88)
    at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:108)
    at
    weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java
    :247)
    at
    weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java
    :225)
    at
    adpsis.posse.prfpos.PreferencesEJBEOImpl_WLStub.getColorPreferences(Preferen
    cesEJBEOImpl_WLStub.java:221)
    at adpsis.posse.transformer.CSSServlet.doPost(CSSServlet.java:86)
    at adpsis.posse.transformer.CSSServlet.doGet(CSSServlet.java:214)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:748)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :213)
    at
    weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
    ntext.java:1265)
    at
    weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
    :1631)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    The only way to recover is to restart the Weblogic server. The LDAP server
    appears to be running normally and continues to service other instances of
    Weblogic. No errors are logged in the LDAP server, the JNDI lookup that
    establishes the DirContext works fine on restart and is used multiple times
    with no issues until..poof..socket closed. I'm not certain which part is at
    issue, Weblogic, LDAP, or JNDI.
    Any ideas?
    Regards,
    Brett Schmoll
    ADP/SIS

    WLS 6.0 will be supported in the next release of WLCS, which is due in the
    spring.
    - Ginny
    "aamerG" <[email protected]> wrote in message
    news:3a5cb774$[email protected]..
    Hi everyone,
    we are starting a new development project and would like to use Weblogic
    6.0. How soon do you think there we be a version of WLCS which works with
    6.0.
    TIA

  • Whats is difference between Java JRE  and  Java SDK

    Hi,
    what is the difference between Java JRE and Java SDK...
    i think both of them have the same set of files to be installed...
    I am not able to understand where they differ

    The JRE (Java runtime Environment) contains just the stuff necessary to run Java and the SDK (System Development Kit) contains the extra stuff necessary (and also helpful) to develop in Java.

  • What is difference between C# Gzip and Java swing GZIPOutputStream?

    Hi All,
    I have a Java swing tool where i can compress file inputs and we have C# tool.
    I am using GZIPOutputStream to compress the stream .
    I found the difference between C# and Java Gzip compression while a compressing a file (temp.gif ) -
    After Compression of temp.gif file in C# - compressed file size increased
    while in java i found a 2% percentage of compression of data.
    Could you please tell me , can i achieve same output in Java as compared to C# using GZIPOutputStream ?
    Thank a lot in advance.

    797957 wrote:
    Does java provides a better compression than C#?no idea, i don't do c# programming. and, your question is most likely really: "does java default to a higher compression level than c#".
    Btw what is faster compression vs. better compression?meaning, does the code spend more time/effort trying to compress the data (slower but better compression) or less time/effort trying to compress the data (faster but worse compression). most compression algorithms allow you to control this tradeoff depending on whether you care more about cpu time or disk/memory space.

  • What is the diffrence between package javax.sql and java.sql

    Is javax designed for J2EE?
    And when to use package javax?

    Hi,
    What is the diffrence between package javax.sql and java.sql?The JDBC 2.0 & above API is comprised of two packages:
    1.The java.sql package and
    2.The javax.sql package.
    java.sql provides features mostly related to client
    side database functionalities where as the javax.sql
    package, which adds server-side capabilities.
    You automatically get both packages when you download the JavaTM 2 Platform, Standard Edition, Version 1.4 (J2SETM) or the JavaTM 2, Platform Enterprise Edition, Version 1.3 (J2EETM).
    For further information on this please visit our website at http://java.sun.com/j2se/1.3/docs/guide/jdbc/index.html
    Hope this helps.
    Good Luck.
    Gayam.Srinivasa Reddy
    Developer Technical Support
    Sun Micro Systems
    http://www.sun.com/developers/support/

Maybe you are looking for

  • Help, please!

    I have invested many hours on an html-help file. Tried to open it (an .xpj file) this morning and I get the message Open project was cancelled or the application was unable to load database for "C:\Program Files\RoboHelp Office\Vision  Viewer Help\Vi

  • Sender Schema as ALE#SP

    Hi,   I'm trying an Idoc to file scenario. I'm posting idocs from r/3 to xi. In sxi_monitor it shows the sender schema as ALE#SP. This used to be shown as XIParty earlier. This is not really a problem, since I'm mapping to a file. But I'm just curiou

  • IPhoto Library to iDVD bakup

    Hi... My iPhoto library has finally reached the 4gb mark, and I was thinking of backing it up on a 4.7gb dvd. I could either drop the iPhoto folder into the DVD through the Finder, but is it possible to do this with iDVD and possibly view the picture

  • How to install HP Laser jet 1010

    I have windows 7 (64 bit) Labtop and i to install old HP laserjet 1010 printer  Now i got problem. I cannot find its driver for windows7  i  lost the disk. Then what should i do? My printer may be useless.  . Please help me in this regard. Sunnyk

  • SAP Std. transaction for missing parts

    Is there any SAP standard transaction (s) or procedure (s) which will give the list of missing components/ parts per sales order, process order, stock transfer, projects, subcontracting apart from V_V2, CO24 & ME2O standard transactions?