Process hangs when it tries to create an applicationmodule in a webapp

Hi,
Maybe someone can helpme with this.
Our messaging project works standalone perfectly with no datasource configuration on the applicationmodule. Now we try to start (embedded oc4j ) the background processes of the messaging project with a servlet on the viewcontroller project and then it uses the datasource configuration, this works until we do
MessagingServiceImpl am = (MessagingServiceImpl)Configuration.createRootApplicationModule("nl.justid.cdd.model.service.messaging.MessagingService", "MessagingService" + ConfigFactory.getConfiguration().getString(Constant.DATASOURCE_TYPE));
It seems to wait endlessly on this.
I found out that'is something to do with session cookie. in method useApplicationModule of oracle.jbo.common.ampool.SessionCookieImpl.java
I changed the following parameters on the applicatiomodule configuration
<jbo.ejb.useampool>true</jbo.ejb.useampool> this was false
<jbo.maxpoolcookieage>10</jbo.maxpoolcookieage> this was -1
now it works in embedded oc4j but when I deploy it on a oc4j container , it doesn't
thanks edwin

I noticed the following things in your testcase:
1. Your configuration was referencing a datasource named "jdbc/ScottCoreDS"
2. Your servlet is creating its own threads.
Section "8.2.4.2 Using a JDBC Datasource Connection Type" of the ADF Developer's Guide for Forms/4GL Developers on the ADF Learning Center at http://www.oracle.com/technology/products/adf/learnadf.html gives details on how to use datasources and the SRDemo Sample application illustrates that the application module needs to use the managed connection named "jdbc/ScottDS" while the jbo.server.internal_connection property used for state management should use the native datasource named "jdbc/ScottCoreDS".
I changed your configuration to reference "jdbc/ScottDS" datasource, and I added the -Doc4j.userThreads=true flag to the Java Options field in the Run configuration, and then when running your example servlet, I see things work as expected.

Similar Messages

  • Can i use a 2nd iphone if i install itunes on another user account.when i tried to create a second library i messed up both phones, the second one now has all my contacts and when it sends txts it either says its my other phone or email address

    can i use a 2nd iphone if i install itunes on another user account.when i tried to create a second library i messed up both phones, the second one now has all my contacts and when it sends txts it either says its my other phone or email address. i can cope with the first phone and getting it back on itunes but dont want to syn the 2nd phone until i know it is independant of the other one. Does it matter that both phones use the same itunes store account?

    Deleting the account on your phone only removes if from your phone.  The account and it's data remain intact and doing so will not effect your daughter's phone.
    To do this, first go to Settings>iCloud on your phone and turn any synced data (contacts, calendars, etc.) to Off, and when prompted, choose to keep the data on the phone.  When finished, scroll to the bottom and tap Delete Account.  Then set up a new iCloud account with a different Apple ID and turn any data you want to sync with iCloud (contact, calendars, etc.) back to On.  This will upload your data to your new iCloud account.

  • Im trying to make a simple 360 rotation for a 3d logo in CC 2014 but when i tried to create the 1st key frame the image when out axis

    im trying to make a simple 360 rotation for a 3d logo in CC 2014 but when i tried to create the 1st key frame the image when out axis

    I find that if you have multiple 3d object  they must be merged into a single 3d layer their positions reset to align to the same axises then sized and positioned along them. The layer should then be able to be animated well around an axis like the y axis. Here a Sphere, Cylinder and ring. http://www.mouseprints.net/old/dpr/McAssey-CC.mp4

  • I tried updating iphone 6 to 8.1.3 But the phone went dead. I have tried using restore options - both update and erase, but the process stops when it tries to update Iphone firmware.

    I tried updating iphone 6 to 8.1.3 But the phone went dead. I have tried using restore options - both update and erase, but the process stops when it tries to update Iphone firmware.

    Put your phone in DFU mode,
    Hold the Power Button (3 secs)
    Continue holding the power button and also hold the home button (15 secs)
    Release the power button while continuing to hold the home button (10 secs)
    Your device should prompt with the "Connect to iTunes Screen"
    Restore.

  • Recently installed OSX 10.8.2 and found that there was NO ~/Library and when I tried to create one I was told that it already exists.

    Recently installed OSX 10.8.2 and found that there was NO ~/Library and when I tried to create one I was told that it already exists.
    Does anyone know why ?

    It's hidden. Choose Go to Folder from the Finder's Go menu and supply that path to access it.
    (71284)

  • I want to use multiple colors in the same box - Pantone plus process. I am trying to create a support plate of cyan under a PMS.

    I want to use multiple colors in the same box - Pantone plus process. I am trying to create a support plate of cyan under a PMS.

    How is the external drive formatted?
    Allan

  • C++ process hangs when started from Java

    I am trying to execute a c++ code from java on a remote Windows machine. In order to deal with the remote part, I have created a Web service from where the actual command is run using Runtime.exec(). The c++ exe is not being called directly from the java code. I have a batch file that eventually calls the exe.
    The problem is, both java and c++ processes hang. The java code on server side does handle the output stream and error stream. Also, the c++ code is logging everything in a file on Windows. The strange thing is that, when I remove the WS call and run the java code on server side as a standalone java program, it succeeds. Also, execution of the batch file alone does not hang. Here is the java code:
    public class RunCPlusPlusExecutable {
    public int runExecutable() {
        int exitValue = 0;
        try {
            Process p = null;
            Runtime rt = Runtime.getRuntime();
            System.out.println("About to execute" + this + rt);
            p = rt.exec("c:/temp/execcplusplus.bat");
            System.out.println("Process HashCode=" + p.hashCode());
            StreamProcessor errorHandler = new StreamProcessor(p.getErrorStream(), "Error");
            StreamProcessor outputHandler = new StreamProcessor(p.getInputStream(), "Output");
            errorHandler.start();
            outputHandler.start();
            exitValue = p.waitFor();
            System.out.println("Exit value : " + exitValue);
            if (exitValue == 0)
                System.out.println("SUCCESS");
            else
                System.out.println("FAILURE");
        } catch (IOException e) {
            e.printStackTrace();
        } catch (InterruptedException e) {
            e.printStackTrace();
        } catch (Exception e) {
        return exitValue;
    class StreamProcessor extends Thread {
        private InputStream is = null;
        private String type = null;
        private InputStreamReader isr = null;
        private BufferedReader br = null;
        private FileWriter writer = null;
        private BufferedWriter out = null;
        StreamProcessor(InputStream is, String type) {
            this.is = is;
            this.type = type;
        public void run() {
            try {
                isr = new InputStreamReader(is);
                br = new BufferedReader(isr);
                writer = new FileWriter("*******path to log file********");
                out = new BufferedWriter(writer);
                String line = null;
                while ((line = br.readLine()) != null) {
                    Date date = new Date();
                    out.write("[" + type + "]: " + date + " : " + line);
                    out.newLine();
                writer.flush();
            } catch (IOException ioe) {
                ioe.printStackTrace();
            } finally {
                try {
                    if (br != null)
                        br.close();
                    if (isr != null)
                        isr.close();
                    if (out != null)
                        out.close();
                    if (writer != null)
                        writer.close();
                } catch (IOException e) {
                    e.printStackTrace();
    String line = null;
                while ((line = br.readLine()) != null) {
                    Date date = new Date();
                    out.write("[" + type + "]: " + date + " : " + line);
                    out.newLine();
                writer.flush();
            } catch (IOException ioe) {
                ioe.printStackTrace();
            } finally {
                try {
                    if (br != null)
                        br.close();
                    if (isr != null)
                        isr.close();
                    if (out != null)
                        out.close();
                    if (writer != null)
                        writer.close();
                } catch (IOException e) {
                    e.printStackTrace();
    The WS server is running from some admin user. And I have been running the standalone java program from some other user. It seems that the c++ executable is giving referenced memory error when being executed from WS call. There are pop-ups citing the error with OK and Cancel buttons(visible when logged in as admin). The error states
    The instruction at 0x05473030 referenced memory at 0x000001d4. The memory could not be read
    Any idea what is causing the problem and how to debug it? Why does this memory error comes only when the exe is run through WS call? Please note that I won't be able to debug the c++ code and the web service is an apache axis2 service.
    Thanks

    How can I know? Its your environment, not mine. The only thing we know is that when running the stuff through one path things blow up and when you run them through another path, things don't blow up. User rights is an obvious suspect, but not necessarily the actual problem. Generally when rights are the problem, you get some form of "access denied" exception, not a code hang.
    Another likely possibility is that of network settings; perhaps your server goes through a proxy and your local applications do not, or the other way around.
    Yet another likely possibility is that the version of Java used is different, or different versions of libraries are no the classpath causing differences in behavior. There is only one way to figure it out: get to know your environment very well and through solid reasoning and experimentation try to figure out where the breaking point is. It all starts with answering this question: what might be different in the environment of the web server, and outside of it? I can't know, only you can. Good luck.

  • Server Hangs when I tried to Access web Application that deployed in Managed Server

              Hai All!
              Here is my problem ! I started Admin Server and Managed server in a same machine.
              I deployed HttpClusterServlet in web.xml of Managed server. When i started servers
              they start fine and says Clustering started.... But when i tried to Access index.jsp
              that is in Managed Server default web application ..Nothing happens. It neither
              throws exception nor shows the desired page.. Seems to be Browser hang and server
              hang. At this stage i am unable to access Admin console also.(I can access before
              i tried index.jsp of managed server).. It seems to be Hang Allover..
              Pls suggest me how to come out of this hanging...
              Rgds
              Manohar
              

    See my answer to your last post. The short answer is that the HttpClusterServlet is
              likely to be the problem and not the cluster. You can try one of the web server plugins
              or a hardware load balancer as a temporary workaround. You should file a case with
              support too...
              Manu Kar wrote:
              > Hai All!
              >
              > Here is my problem ! I started Admin Server and Managed server in a same machine.
              > I deployed HttpClusterServlet in web.xml of Managed server. When i started servers
              > they start fine and says Clustering started.... But when i tried to Access index.jsp
              > that is in Managed Server default web application ..Nothing happens. It neither
              > throws exception nor shows the desired page.. Seems to be Browser hang and server
              > hang. At this stage i am unable to access Admin console also.(I can access before
              > i tried index.jsp of managed server).. It seems to be Hang Allover..
              >
              > Pls suggest me how to come out of this hanging...
              >
              > Rgds
              > Manohar
              

  • Error when users tries to create a cart.

    Hi there ladies and gents,
    We are getting an error when a user is trying to create a cart, the following error appears
    "No data found for contact person "XXXXXXXX" Inform system administrator"
    We have check PPOMA_BBP and also HR have checked there area and all seems ok???
    Any ideas???

    What i can tell you after running BBP_BP_OM_INTEGRATE for business partner, employee role, i get the following : -
    @5C\QError@     Error determining address for employee DD0A7F0F4A3D83F1AA8D0016353BF3FF     @5F\QNo long text exists@
    and
    @5C\QError@     Employee relationship between BP 0000004261 and BP(Org) 0000002669 missing     @35\QLong text exists@
    The help says the following but i am sorry to say it means nothing to me : -
    Employee relationship between BP 0000004261 and BP(Org) 0000002669 missing
    Message no. BBP_UM_UI040
    System Response
    The assignments of the BP units of the employee &V2& -> Natural person of the employee (if necessary -> Contract) -> Work Center -> Position -> BP of the Position lead to BP &V1&. There is, however, no connection between the business partner objects.

  • Drop Down List empty when user trying to create a Shopping Cart.

    Hi,
        While Creating a Shopping cart.User is unable to select a vendor or a category from the drop down list,As the Drop down list is empty.I have Checked The Extended Attributes Tab for the user in PPOMA_BBP tcode.Are There any other configurations to be checked.
    Appreciate your inputs!!
    Thanks
    Rakesh.

    Hi Muthu,
                 Thanks For your reply.The User is trying to create a Shopping cart,Whilst creating it he is trying to select a Vendor from the Drop downlist.But the drop down list is showing up empty values.The User is unable to pass the vendor to the shopping cart from the drop down list.
    Thanks
    Rakesh.

  • ABAP process hangs when calling a jCO Server J2EE-available RFC

    Hi there
    Here's the scenario:
    We have deployed a jCO server under the SAP WAS. This jCO server implements two functions. They are both called from ABAP process through RFC. We are using the same RFC destination for both
    First function is defined with import/export parameters and the second one only operates with a TABLE parameter.
    Incidentally, these functions are captured by the jCO server, which calls an IBM MQ server
    First function works fine. Second function hangs and there is not even a timeout so the ABAP process (run on foreground) can stay forever.
    The interesting part is that the same application works really fine when called from a Tomcat using a standalon instance of the jCO.
    Additional info:
    We have noticed that some time after the second function gets called, there are five dumps on the system (the same amount of servers we make available). These are CALL_FUNCTION_SIGNON_REJECTED.
    The fun part of the dumps is that the user making the RFC call is a different user that the one we use for the jCO connection, and the client number is '000', instead of the '728' we are using for the connection. Somehow they seem related but we do not know how yet:
    Short text
        You are not authorized to logon to the target system (error code 1).
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "SAPMSSY1" had to be terminated because it has
        come across a statement that unfortunately cannot be executed.
    Error analysis
        RFC (Remote Function Call) sent with invalid
        user ID "%_LOG01% " or client 000.
        User "ARINSO " under client 001 from system "SMD " has tried to carry out an
         RFC
        call under the user ID "%_LOG01% " and client 000 (Note: For releases < 4.0,
         the
         information on caller and caller system do not exist.).
    Call Program........."SAPLSMSY_ACTUALIZE_DATA"
    Function Module..... "SCSM_SYSTEM_LIST"
    Call Destination.... "SM_ET7CLNT000_READ"
    Source Server....... "sapwasmd_SMD_10"
    Source IP Address... "172.17.82.80"
    Termination occurred in the ABAP program "SAPMSSY1" - in
         "REMOTE_FUNCTION_CALL".
        The main program was "SAPMSSY1 ".
        In the source code you have the termination point in line 67
        of the (Include) program "SAPMSSY1".
    Any tip or suggestion on where to look at is more than welcome
    Thanks in advance,
    Miguel

    And this is the content of the defaultTrace.0.trc log from the WAS
    1.#005056AB04C500440000000200002B0000046B495CA1AF67#1243862737727#com.sap.caf.um.relgrou
    ps.imp.principals.RelGroupFactory##com.sap.caf.um.relgroups.imp.principals.RelGroupFactor
    y.RelGroupFactory()#######SAPEngine_System_Thread[impl:5]_13##0#0#Info#1#/System/Server#P
    lain###sap.com caf/um/relgroups/imp MAIN_NW701P03_C 2846629#
    #1.#005056AB04C500240000000100002B0000046B495CCDAAFB#1243862740608#com.sap.engine.library
    .monitor.mapping.ccms.Trace##com.sap.engine.library.monitor.mapping.ccms.Trace####n/a##b3
    89a8004eaf11dec9b7005056ab04c5#SAPEngine_System_Thread[impl:5]_39##0#0#Error##Plain###Reg
    isterNode</Kernel/System Threads Pool/WaitingTasksCount>: com.sap.engine.library.monitor.
    mapping.ccms.CcmsConnectorException: 2100850: Invalid configuration group for node'/Kerne
    l/System Threads Pool/WaitingTasksCount' (MANAGERS.SThreadPool.WaitingInRequestQueueCount
    , max. 40 characters)#
    #1.#005056AB04C500240000000200002B0000046B495CCDB4CC#1243862740612#com.sap.engine.library
    .monitor.mapping.ccms.Trace##com.sap.engine.library.monitor.mapping.ccms.Trace####n/a##b3
    89a8004eaf11dec9b7005056ab04c5#SAPEngine_System_Thread[impl:5]_39##0#0#Error##Plain###Reg
    isterNode</Kernel/System Threads Pool/WaitingTasksQueueOverflow>: com.sap.engine.library.
    monitor.mapping.ccms.CcmsConnectorException: 2100850: Invalid configuration group for nod
    e'/Kernel/System Threads Pool/WaitingTasksQueueOverflow' (MANAGERS.SThreadPool.Waiting4Fr
    eeReqQueueSlotCount, max. 40 characters)#
    #1.#005056AB04C500240000000300002B0000046B495CCDCDA1#1243862740618#com.sap.engine.library
    .monitor.mapping.ccms.Trace##com.sap.engine.library.monitor.mapping.ccms.Trace####n/a##b3
    89a8004eaf11dec9b7005056ab04c5#SAPEngine_System_Thread[impl:5]_39##0#0#Error##Plain###Reg
    isterNode</Kernel/Application Threads Pool/WaitingTasksCount>: com.sap.engine.library.mon
    itor.mapping.ccms.CcmsConnectorException: 2100850: Invalid configuration group for node'/
    Kernel/Application Threads Pool/WaitingTasksCount' (MANAGERS.AThreadPool.WaitingInRequest
    QueueCount, max. 40 characters)#
    #1.#005056AB04C500240000000400002B0000046B495CCDD69B#1243862740620#com.sap.engine.library
    .monitor.mapping.ccms.Trace##com.sap.engine.library.monitor.mapping.ccms.Trace####n/a##b3
    89a8004eaf11dec9b7005056ab04c5#SAPEngine_System_Thread[impl:5]_39##0#0#Error##Plain###Reg
    isterNode</Kernel/Application Threads Pool/WaitingTasksQueueOverflow>: com.sap.engine.lib
    rary.monitor.mapping.ccms.CcmsConnectorException: 2100850: Invalid configuration group fo
    r node'/Kernel/Application Threads Pool/WaitingTasksQueueOverflow' (MANAGERS.AThreadPool.
    Waiting4FreeReqQueueSlotCount, max. 40 characters)#
    #1.#005056AB04C500600000001600002B0000046B4960688301#1243862801089#com.sap.slm.exec.messa
    ge.SLMApplication#sap.com/tcslmslmapp#com.sap.slm.exec.message.SLMApplication#Guest#0##
    n/a##c59827604eaf11de9fb3005056ab04c5#SAPEngine_Application_Thread[impl:3]_0##0#0#Error##
    Java###null##
    #1.#005056AB04C500730000000000002B0000046B4CF0593ABD#1243878100908#System.err#arinso.com/
    valtran_validator#System.err#Guest#0##ET7#MIGUELGU                        #4A240FF606CD5E
    5AE10000000A38418C#Thread[JCO.ServerThread-11,5,SAPEngine_Application_Thread[impl:3]_Grou
    p]##0#0#Error##Plain###com.sap.mw.jco.JCO$AbapException: (126) 1: Array index out of rang
    e: 48#
    #1.#005056AB04C500730000000100002B0000046B4CF0594028#1243878100909#System.err#arinso.com/
    valtran_validator#System.err#Guest#0##ET7#MIGUELGU                        #4A240FF606CD5E
    5AE10000000A38418C#Thread[JCO.ServerThread-11,5,SAPEngine_Application_Thread[impl:3]_Grou
    p]##0#0#Error##Plain### at com.efh.jco.valtran.sap.ValtranRequestHandler.serverExceptionO
    ccurred(ValtranRequestHandler.java:164)#
    #1.#005056AB04C500730000000200002B0000046B4CF059406B#1243878100910#System.err#arinso.com/
    valtran_validator#System.err#Guest#0##ET7#MIGUELGU                        #4A240FF606CD5E
    5AE10000000A38418C#Thread[JCO.ServerThread-11,5,SAPEngine_Application_Thread[impl:3]_Grou
    p]##0#0#Error##Plain### at com.sap.mw.jco.JCO.fireServerExceptionOccurred(JCO.java:880)#
    #1.#005056AB04C500730000000300002B0000046B4CF05940A3#1243878100910#System.err#arinso.com/
    valtran_validator#System.err#Guest#0##ET7#MIGUELGU                        #4A240FF606CD5E
    5AE10000000A38418C#Thread[JCO.ServerThread-11,5,SAPEngine_Application_Thread[impl:3]_Grou
    p]##0#0#Error##Plain### at com.sap.mw.jco.JCO$Server.listen(JCO.java:8187)#
    #1.#005056AB04C500730000000400002B0000046B4CF05940DB#1243878100910#System.err#arinso.com/
    valtran_validator#System.err#Guest#0##ET7#MIGUELGU                        #4A240FF606CD5E
    5AE10000000A38418C#Thread[JCO.ServerThread-11,5,SAPEngine_Application_Thread[impl:3]_Grou
    p]##0#0#Error##Plain### at com.sap.mw.jco.JCO$Server.work(JCO.java:8303)#
    #1.#005056AB04C500730000000500002B0000046B4CF0594111#1243878100910#System.err#arinso.com/
    valtran_validator#System.err#Guest#0##ET7#MIGUELGU                        #4A240FF606CD5E
    5AE10000000A38418C#Thread[JCO.ServerThread-11,5,SAPEngine_Application_Thread[impl:3]_Grou
    p]##0#0#Error##Plain### at com.sap.mw.jco.JCO$Server.loop(JCO.java:8250)#
    #1.#005056AB04C500730000000600002B0000046B4CF0594143#1243878100910#System.err#arinso.com/
    valtran_validator#System.err#Guest#0##ET7#MIGUELGU                        #4A240FF606CD5E
    5AE10000000A38418C#Thread[JCO.ServerThread-11,5,SAPEngine_Application_Thread[impl:3]_Grou
    p]##0#0#Error##Plain### at com.sap.mw.jco.JCO$Server.run(JCO.java:8166)#
    #1.#005056AB04C500730000000700002B0000046B4CF05941F0#1243878100910#System.err#arinso.com/
    valtran_validator#System.err#Guest#0##ET7#MIGUELGU                        #4A240FF606CD5E
    5AE10000000A38418C#Thread[JCO.ServerThread-11,5,SAPEngine_Application_Thread[impl:3]_Grou
    p]##0#0#Error##Plain### at java.lang.Thread.run(Thread.java:770)#

  • Photoshop CC hangs when I open or create a file

    This is the error report:
    Date/Time:       2014-04-08 18:08:41 -0500
    OS Version:      10.9.2 (Build 13C64)
    Architecture:    x86_64
    Report Version:  18
    Command:         Photoshop
    Path:            /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/MacOS/Adobe Photoshop CC
    Version:         14.2.1 (14.2.1.570)
    Parent:          launchd [167]
    PID:             87824
    Event:           hang
    Duration:        2.16s
    Steps:           22 (100ms sampling interval)
    Hardware model:  MacBookPro8,3
    Active cpus:     8
    Fan speed:       1997 rpm
    Free pages:      23768 pages (-1999)
    Pageins:         518 pages
    Pageouts:        0 pages
    Swapins:         0 pages
    Swapouts:        0 pages
    Process:         Adobe Photoshop CC [87824]
    Path:            /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/MacOS/Adobe Photoshop CC
    Architecture:    x86_64
    Parent:          launchd [167]
    UID:             501
    Task size:       60027 pages (-92)
    Pageins:         497 pages
    CPU Time:        1.164s
      Thread 0x1f9c9d   DispatchQueue 1          priority   41-47   cpu time   1.159s
      22 ??? (Adobe Photoshop CC + 11828) [0x100002e34]
        22 ??? (Adobe Photoshop CC + 3088793) [0x1002f2199]
          22 ??? (Adobe Photoshop CC + 3088375) [0x1002f1ff7]
            22 ??? (Adobe Photoshop CC + 582975) [0x10008e53f]
              22 ??? (Adobe Photoshop CC + 24898056) [0x1017bea08]
                22 ??? (Adobe Photoshop CC + 24893234) [0x1017bd732]
                  22 -[NSApplication run] + 553 (AppKit) [0x7fff85b80b2c]
                    22 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122 (AppKit) [0x7fff85b8ca2b]
                      22 _DPSNextEvent + 1434 (AppKit) [0x7fff85b8d3de]
                        22 _BlockUntilNextEventMatchingListInModeWithFilter + 65 (HIToolbox) [0x7fff8912a5bc]
                          22 ReceiveNextEventCommon + 173 (HIToolbox) [0x7fff8912a685]
                            22 RunCurrentEventLoopInMode + 226 (HIToolbox) [0x7fff8912aa0d]
                              22 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff896d00b5]
                                22 __CFRunLoopRun + 1525 (CoreFoundation) [0x7fff896d08e5]
                                  22 __CFRunLoopDoTimers + 298 (CoreFoundation) [0x7fff897865aa]
                                    22 __CFRunLoopDoTimer + 1151 (CoreFoundation) [0x7fff8971509f]
                                      22 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20 (CoreFoundation) [0x7fff89715564]
                                        22 __NSFireTimer + 96 (Foundation) [0x7fff90f940f4]
                                          22 ??? (Adobe Photoshop CC + 24893476) [0x1017bd824]
                                            22 ??? (Adobe Photoshop CC + 580624) [0x10008dc10]
                                              22 ??? (Adobe Photoshop CC + 581199) [0x10008de4f]
                                                22 ??? (Adobe Photoshop CC + 603665) [0x100093611]
                                                  22 ??? (Adobe Photoshop CC + 607597) [0x10009456d]
                                                    22 ??? (Adobe Photoshop CC + 6551651) [0x10063f863]
                                                      22 ??? (Adobe Photoshop CC + 629282) [0x100099a22]
                                                        22 ??? (Adobe Photoshop CC + 18402813) [0x10118cdfd]
                                                          22 ??? (Adobe Photoshop CC + 18402975) [0x10118ce9f]
                                                            22 ??? (Adobe Photoshop CC + 18405725) [0x10118d95d]
                                                              22 OWLWidgetShow + 491 (AdobeOwl) [0x104cc4657]
                                                                22 ??? (AdobeOwl + 315521) [0x104cc5081]
                                                                  22 ??? (AdobeOwl + 259756) [0x104cb76ac]
                                                                    22 ??? (AdobeOwl + 164632) [0x104ca0318]
                                                                      22 ??? (AdobeOwl + 341296) [0x104ccb530]
                                                                        22 ??? (AdobeOwl + 336956) [0x104cca43c]
                                                                          22 ??? (AdobeOwl + 338643) [0x104ccaad3]
                                                                            22 ??? (AdobeOwl + 859404) [0x104d49d0c]
                                                                              22 ??? (AdobeOwl + 859770) [0x104d49e7a]
                                                                                22 ??? (AdobeOwl + 871942) [0x104d4ce06]
                                                                                  22 ??? (AdobeOwl + 483113) [0x104cedf29]
                                                                                    22 ??? (AdobeOwl + 595416) [0x104d095d8]
                                                                                      22 ??? (AdobeOwl + 560155) [0x104d00c1b]
                                                                                        22 ??? (AdobeOwl + 558016) [0x104d003c0]
                                                                                          22 ??? (AdobeOwl + 514281) [0x104cf58e9]
                                                                                            22 -[NSView(NSInternal) _setHidden:setNeedsDisplay:] + 281 (AppKit) [0x7fff85ba07e5]
                                                                                              22 -[NSView _recursiveLostHiddenAncestor] + 363 (AppKit) [0x7fff85cc8e7b]
                                                                                                 22 -[NSView _recursiveLostHiddenAncestor] + 363 (AppKit) [0x7fff85cc8e7b]
                                                                                                   22 -[NSView _recursiveLostHiddenAncestor] + 363 (AppKit) [0x7fff85cc8e7b]
                                                                                                     22 -[NSView _recursiveLostHiddenAncestor] + 128 (AppKit) [0x7fff85cc8d90]
                                                                                                       22 ??? (Adobe Photoshop CC + 25689606) [0x10187fe06]
                                                                                                         22 ??? (Adobe Photoshop CC + 18402613) [0x10118cd35]
                                                                                                           22 ??? (Adobe Photoshop CC + 18402813) [0x10118cdfd]
                                                                                                             22 ??? (Adobe Photoshop CC + 18403261) [0x10118cfbd]
                                                                                                               22 ??? (Adobe Photoshop CC + 1045317) [0x1000ff345]
                                                                                                                 22 ??? (Adobe Photoshop CC + 583236) [0x10008e644]
                                                                                                                   22 ??? (Adobe Photoshop CC + 658559) [0x1000a0c7f]
                                                                                                                     22 ??? (Adobe Photoshop CC + 7391570) [0x10070c952]
                                                                                                                       22 ??? (Adobe Photoshop CC + 7296649) [0x1006f5689]
                                                                                                                         22 ??? (Adobe Photoshop CC + 25877834) [0x1018add4a]
                                                                                                                           22 ??? (Adobe Photoshop CC + 24449184) [0x1017510a0]
                                                                                                                             22 ??? (Adobe Photoshop CC + 24429512) [0x10174c3c8]
                                                                                                                               22 ??? (Adobe Photoshop CC + 6702478) [0x10066458e]
                                                                                                                                 22 ??? (Adobe Photoshop CC + 13475973) [0x100cda085]
                                                                                                                                   22 ??? (Adobe Photoshop CC + 13543755) [0x100cea94b]
                                                                                                                                     22 ??? (Adobe Photoshop CC + 13405389) [0x100cc8ccd]
                                                                                                                                       22 ??? (Adobe Photoshop CC + 13408459) [0x100cc98cb]
                                                                                                                                         22 ??? (Adobe Photoshop CC + 12643990) [0x100c0ee96]
                                                                                                                                           22 ??? (Adobe Photoshop CC + 12644364) [0x100c0f00c]
                                                                                                                                             22 ??? (Adobe Photoshop CC + 12650197) [0x100c106d5]
                                                                                                                                               22 ??? (AdobeCoolType + 353271) [0x1058743f7]
                                                                                                                                                 22 CTCleanup + 724119 (AdobeCoolType) [0x10592d645]
                                                                                                                                                   22 CTCleanup + 388882 (AdobeCoolType) [0x1058db8c0]
                                                                                                                                                     22 CTCleanup + 389039 (AdobeCoolType) [0x1058db95d]
                                                                                                                                                       17 CTCleanup + 724408 (AdobeCoolType) [0x10592d766]
                                                                                                                                                         17 ??? (AdobeCoolType + 73805) [0x10583004d]
                                                                                                                                                           17 CTCleanup + 325486 (AdobeCoolType) [0x1058cc11c]
                                                                                                                                                             17 CTCleanup + 324222 (AdobeCoolType) [0x1058cbc2c]
                                                                                                                                                               14 CTCleanup + 1026999 (AdobeCoolType) [0x105977565]
                                                                                                                                                                 14 CTCleanup + 1025852 (AdobeCoolType) [0x1059770ea]
                                                                                                                                                                   14 CTCleanup + 1005255 (AdobeCoolType) [0x105972075]
                                                                                                                                                                     14 CTCleanup + 1005353 (AdobeCoolType) [0x1059720d7]
                                                                                                                                                                       14 CTFontManagerCreateFontDescriptorsFromURL + 54 (CoreText) [0x7fff8b32b94e]
                                                                                                                                                                         14 CreateFontsWithURL(__CFURL const*, bool) + 22 (CoreText) [0x7fff8b32c31c]
                                                                                                                                                                           13 CGFontCreateFontsWithURL + 383 (CoreGraphics) [0x7fff8dbc44fe]
                                                                                                                                                                             13 CGFontCreateFontsWithPath + 40 (CoreGraphics) [0x7fff8dbc48e9]
                                                                                                                                                                               13 create_private_data_with_path + 19 (libCGXType.A.dylib) [0x7fff8a8731f4]
                                                                                                                                                                                 13 FPFontCreateFontsWithPath + 253 (libFontParser.dylib) [0x7fff90128e1f]
                                                                                                                                                                                   5  TFont::CreateFontEntitiesForFile(char const*, bool, TSimpleArray<TFont*>&, bool, short, char const*) + 1306 (libFontParser.dylib) [0x7fff9012981e]
                                                                                                                                                                                     5  TLWFNType1Font::TLWFNType1Font(TResourceForkSurrogate const&, TResourceFileDataSurrogate const&, TResourceFileDataSurrogate const&) + 452 (libFontParser.dylib) [0x7fff9013cc86]
                                                                                                                                                                                       5  TType1ParsingContext::ParseType1Font() + 14 (libFontParser.dylib) [0x7fff9013d610]
                                                                                                                                                                                         5  TParsingContext::ParseType1Font() + 486 (libFontParser.dylib) [0x7fff9013d8b4]
                                                                                                                                                                                            2  TParsingContext::DoParse(TParserDictionary const*) + 857 (libFontParser.dylib) [0x7fff9013e4db]
                                                                                                                                                                                              1  TParsingContext::DoCharStrings() + 334 (libFontParser.dylib) [0x7fff90143524]
                                                                                                                                                                                                1  TParsingContext::GetBinaryString(unsigned int&, unsigned int&, unsigned int&) + 390 (libFontParser.dylib) [0x7fff90142ff8]
                                                                                                                                                                                                  1  TParsingContext::FillBuf() + 182 (libFontParser.dylib) [0x7fff9013e05e]
                                                                                                                                                                                                    1  TParsingContext::DecryptBuf() + 241 (libFontParser.dylib) [0x7fff901425ab]
                                                                                                                                                                                                      1  <executing in user space>
                                                                                                                                                                                              1  TParsingContext::DoCharStrings() + 378 (libFontParser.dylib) [0x7fff90143550]
                                                                                                                                                                                                1  TType1LWFNParsingContext::CharString(unsigned int, unsigned int, unsigned int, char const*, char const*, unsigned int) + 374 (libFontParser.dylib) [0x7fff90143a8a]
                                                                                                                                                                                                  1  TSimpleDictionary<TStringKeyValuePair, char const*, unsigned int>::GetValue(char const*, unsigned int&) const + 30 (libFontParser.dylib) [0x7fff9013fbfe]
                                                                                                                                                                                                    1  TSimpleDictionary<TStringKeyValuePair, char const*, unsigned int>::BinarySearch(char const*, int, unsigned long) const + 64 (libFontParser.dylib) [0x7fff9013fc7c]
                                                                                                                                                                                                      1  _platform_strcmp + 227 (libsystem_platform.dylib) [0x7fff8a59cde3]
                                                                                                                                                                                                        1  <executing in user space>
                                                                                                                                                                                            1  TParsingContext::DoParse(TParserDictionary const*) + 1003 (libFontParser.dylib) [0x7fff9013e56d]
                                                                                                                                                                                              1  TParsingContext::HandleReaction(int) + 4484 (libFontParser.dylib) [0x7fff90140e40]
                                                                                                                                                                                                1  TParsingContext::DoEncoding(TEncodingProtocol*) + 188 (libFontParser.dylib) [0x7fff9014181a]
                                                                                                                                                                                                  1  TParsingContext::GetToken() + 2404 (libFontParser.dylib) [0x7fff9013f188]
                                                                                                                                                                                                    1  TParsingContext::FillBuf() + 86 (libFontParser.dylib) [0x7fff9013dffe]
                                                                                                                                                                                                      1  TType1LWFNParsingContext::GetBytes(unsigned long&) + 43 (libFontParser.dylib) [0x7fff9013e0c9]
                                                                                                                                                                                                        1  TType1LWFNResourceChain::GetNextResource() const + 55 (libFontParser.dylib) [0x7fff90142415]
                                                                                                                                                                                                          1  TResourceFileDataSurrogate::TResourceFileDataSurrogate(TResourceForkSurrogate const&, unsigned int, short) + 67 (libFontParser.dylib) [0x7fff901300cf]
                                                                                                                                                                                                            1  TResourceFileDataReference::TResourceFileDataReference(TResourceForkSurrogate const&, unsigned int, short) + 147 (libFontParser.dylib) [0x7fff901301d5]
                                                                                                                                                                                                              1  TResourceForkFileReference::GetResource(unsigned int, short, unsigned long*, unsigned char*) const + 33 (libFontParser.dylib) [0x7fff90130227]
                                                                                                                                                                                                                1  RMGetResource + 43 (CarbonCore) [0x7fff91350517]
                                                                                                                                                                                                                  1  GetResourcePtrCommon + 531 (CarbonCore) [0x7fff91350730]
                                                                                                                                                                                                                   *1  hndl_alltraps + 219 (mach_kernel) [0xffffff80002f322b]
                                                                                                                                                                                                                     *1  user_trap + 748 (mach_kernel) [0xffffff80002dc26c]
                                                                                                                                                                                                                       *1  vm_fault + 4767 (mach_kernel) [0xffffff8000278fdf]
                                                                                                                                                                                                                         *1  vm_fault_enter + 2631 (mach_kernel) [0xffffff8000277587]
                                                                                                                                                                                                                           *1  pmap_enter_options + 1647 (mach_kernel) [0xffffff80002c417f]
                                                                                                                                                                                                                             *1  do_mfence + 3 (mach_kernel) [0xffffff80002d70c3]
                                                                                                                                                                                            1  TParsingContext::DoParse(TParserDictionary const*) + 43 (libFontParser.dylib) [0x7fff9013e1ad]
                                                                                                                                                                                              1  TParserDictionary::CommenceDictionaryParsing(TParsingContext&) const + 55 (libFontParser.dylib) [0x7fff9013e70f]
                                                                                                                                                                                                1  TParsingContext::SkipTo(Token) + 91 (libFontParser.dylib) [0x7fff9013e7c5]
                                                                                                                                                                                                  1  TParsingContext::SkipTo(Token) + 62 (libFontParser.dylib) [0x7fff9013e7a8]
                                                                                                                                                                                                    1  TParsingContext::GetToken() + 1827 (libFontParser.dylib) [0x7fff9013ef47]
                                                                                                                                                                                                      1  <executing in user space>
                                                                                                                                                                                            1  TParsingContext::DoParse(TParserDictionary const*) + 299 (libFontParser.dylib) [0x7fff9013e2ad]
                                                                                                                                                                                              1  TParsingContext::DoSubrs() + 270 (libFontParser.dylib) [0x7fff90142c5c]
                                                                                                                                                                                                1  TParsingContext::GetToken() + 2042 (libFontParser.dylib) [0x7fff9013f01e]
                                                                                                                                                                                                  1  <executing in user space>
                                                                                                                                                                                   2  TFont::CreateFontEntitiesForFile(char const*, bool, TSimpleArray<TFont*>&, bool, short, char const*) + 930 (libFontParser.dylib) [0x7fff901296a6]
                                                                                                                                                                                     2  TResourceFileDataSurrogate::TResourceFileDataSurrogate(TResourceForkSurrogate const&, unsigned int, short) + 67 (libFontParser.dylib) [0x7fff901300cf]
                                                                                                                                                                                       2  TResourceFileDataReference::TResourceFileDataReference(TResourceForkSurrogate const&, unsigned int, short) + 147 (libFontParser.dylib) [0x7fff901301d5]
                                                                                                                                                                                         2  TResourceForkFileReference::GetResource(unsigned int, short, unsigned long*, unsigned char*) const + 33 (libFontParser.dylib) [0x7fff90130227]
                                                                                                                                                                                            2  RMGetResource + 43 (CarbonCore) [0x7fff91350517]
                                                                                                                                                                                              2  GetResourcePtrCommon + 413 (CarbonCore) [0x7fff913506ba]
                                                                                                                                                                                               *2  hndl_alltraps + 219 (mach_kernel) [0xffffff80002f322b]
                                                                                                                                                                                                 *2  user_trap + 748 (mach_kernel) [0xffffff80002dc26c]
                                                                                                                                                                                                   *2  vm_fault + 2660 (mach_kernel) [0xffffff80002787a4]
                                                                                                                                                                                                     *2  vm_fault_page + 994 (mach_kernel) [0xffffff8000274412]
                                                                                                                                                                                                       *2  lck_rw_sleep + 81 (mach_kernel) [0xffffff800022d921]
                                                                                                                                                                                                         *2  thread_block_reason + 204 (mach_kernel) [0xffffff8000235d8c]
                                                                                                                                                                                                           *2  ??? (mach_kernel + 223627) [0xffffff800023698b]
                                                                                                                                                                                                             *2  machine_switch_context + 354 (mach_kernel) [0xffffff80002d7e42]
                                                                                                                                                                                   2  TFont::CreateFontEntitiesForFile(char const*, bool, TSimpleArray<TFont*>&, bool, short, char const*) + 3152 (libFontParser.dylib) [0x7fff90129f54]
                                                                                                                                                                                     2  TSFNTOpenTypeCIDFont::IsCFFCIDFont(TSFNTData const&) + 54 (libFontParser.dylib) [0x7fff90136394]
                                                                                                                                                                                       2  TSFNTType1CFFDescriptor::TSFNTType1CFFDescriptor(TSFNTData const&, unsigned int) + 154 (libFontParser.dylib) [0x7fff9013648c]
                                                                                                                                                                                         2  TType1CFFDescriptor::TType1CFFDescriptor(TDataReference, TStringRef const&) + 223 (libFontParser.dylib) [0x7fff901366d1]
                                                                                                                                                                                            1  TType1CFFDescriptor::GetCFFFontSet() + 184 (libFontParser.dylib) [0x7fff90136d3c]
                                                                                                                                                                                              1  TCFFFontSetInfo::GetArrayInfo(TCFFArrayInfo&, unsigned int) const + 128 (libFontParser.dylib) [0x7fff90136f2a]
                                                                                                                                                                                                1  TCFFFontSetInfo::GetIndexedArrayOffset(MDataReference&, TCFFArrayInfo const&, unsigned int) const + 141 (libFontParser.dylib) [0x7fff901370df]
                                                                                                                                                                                                  1  ReadByteInc(MDataReference&) + 27 (libFontParser.dylib) [0x7fff90136e3a]
                                                                                                                                                                                                   *1  hndl_alltraps + 219 (mach_kernel) [0xffffff80002f322b]
                                                                                                                                                                                                     *1  user_trap + 748 (mach_kernel) [0xffffff80002dc26c]
                                                                                                                                                                                                       *1  vm_fault + 3761 (mach_kernel) [0xffffff8000278bf1]
                                                                                                                                                                                                         *1  thread_block_reason + 204 (mach_kernel) [0xffffff8000235d8c]
                                                                                                                                                                                                           *1  ??? (mach_kernel + 223627) [0xffffff800023698b]
                                                                                                                                                                                                             *1  machine_switch_context + 354 (mach_kernel) [0xffffff80002d7e42]
                                                                                                                                                                                            1  TType1CFFDescriptor::GetCFFFontSet() + 80 (libFontParser.dylib) [0x7fff90136cd4]
                                                                                                                                                                                              1  ReadByteInc(MDataReference&) + 27 (libFontParser.dylib) [0x7fff90136e3a]
                                                                                                                                                                                               *1  hndl_alltraps + 219 (mach_kernel) [0xffffff80002f322b]
                                                                                                                                                                                                 *1  user_trap + 748 (mach_kernel) [0xffffff80002dc26c]
                                                                                                                                                                                                   *1  vm_fault + 3761 (mach_kernel) [0xffffff8000278bf1]
                                                                                                                                                                                                     *1  thread_block_reason + 204 (mach_kernel) [0xffffff8000235d8c]
                                                                                                                                                                                                       *1  ??? (mach_kernel + 223627) [0xffffff800023698b]
                                                                                                                                                                                                         *1  machine_switch_context + 354 (mach_kernel) [0xffffff80002d7e42]
                                                                                                                                                                                   2  TFont::CreateFontEntitiesForFile(char const*, bool, TSimpleArray<TFont*>&, bool, short, char const*) + 2698 (libFontParser.dylib) [0x7fff90129d8e]
                                                                                                                                                                                     2  TArrayOfFontsWithUniquePostscriptNames::Append(TFont* const&) + 72 (libFontParser.dylib) [0x7fff9012bf66]
                                                                                                                                                                                       2  TSFNTFont::GetPostscriptName() const + 35 (libFontParser.dylib) [0x7fff9012c073]
                                                                                                                                                                                         2  TnameTable::GetPostscriptName() const + 64 (libFontParser.dylib) [0x7fff9012c2b4]
                                                                                                                                                                                            2  TnameTable::FindName(unsigned short, unsigned short, unsigned short, unsigned short) const + 47 (libFontParser.dylib) [0x7fff9012c40d]
                                                                                                                                                                                             *2  hndl_alltraps + 219 (mach_kernel) [0xffffff80002f322b]
                                                                                                                                                                                               *2  user_trap + 748 (mach_kernel) [0xffffff80002dc26c]
                                                                                                                                                                                                 *2  vm_fault + 3761 (mach_kernel) [0xffffff8000278bf1]
                                                                                                                                                                                                   *2  thread_block_reason + 204 (mach_kernel) [0xffffff8000235d8c]
                                                                                                                                                                                                     *2  ??? (mach_kernel + 223627) [0xffffff800023698b]
                                                                                                                                                                        

    Hi Curt,
    Thanks for your input. In this case, Photoshop CC did hang in a stalled state (Mac spinning beachball, Photoshop (Not Responding) and I had to force quit. That's how the report was generated. If you look at the top it says that it was a hung process. I suppose it generates the report because of the forced quit. Here's the top of the report:
    Date/Time:       2014-04-08 18:08:41 -0500
    OS Version:      10.9.2 (Build 13C64)
    Architecture:    x86_64
    Report Version:  18
    Command:         Photoshop
    Path:            /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/MacOS/Adobe Photoshop CC
    Version:         14.2.1 (14.2.1.570)
    Parent:          launchd [167]
    PID:             87824
    Event:           hang

  • When im trying of create my itunes account it doesnt accept the safety code of my card

    says it has to be three digits, my card is visa

    If you're gifting content, it's supposed to do that. If not, click here and ask the iTunes Store staff for assistance.
    (123146)

  • I am getting a warning message when i am trying to create a host-named sitecollection.

    Hi guys,
          I am trying to create a host-named site collection. I have created the root site collection. After that i have tried to create customer root site. I have doing this process with the guidance of this link.
    http://technet.microsoft.com/en-us/library/cc424952.aspx#section2a
    When i tried to create a customer root site. I am getting a warning message
    " WARNING: The port specified for the new host header site does not match any known bindings in the specified Web
    Application.  The new site will not be accessible if the Web Application is not extended to an IIS Web Site serving
    this port."
    I couldn't when this warning message comes. I tried to bind the server with webapplication which is created for host-named site collection. No use.
    Can anyone help me to solve. And i wanna know why this error message comes!!!
    Thanks in advance
    Rajendran.

    First, you shouldn't create a host named site collection on a Web app that has host header named.  Doing that implements host names at two different levels and will not work reliably.  Second I'm not sure what you mean when you say you didn't
    use the FQDN but used just the domain name.  A Full url will always be either an FQDN or a shorter Netbios name.  If you use a Netbios name it simply assumes the local AD domain of the workstation to create an FQDN as the url  There is no way
    to use just the domain name.  For example, Contoso.com is the domain name.  Server.contoso.com or WEbsite.contoso.com are FQDNs.  YOu can also use a shorter version that is just server or website, but when those resolve in TCP/IP they would
    still resolve using server.contoso.com or website.contoso.com if the workstation where your browser is was in the contoso.com domain.  What is the URL for your root site and your host named site?
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • JNDI hanging when trying to BIND

    We are currently having problems with our application hanging when it tries to obtain LDAP context. I have attached a thread dump. Once all the threads start hanging the weblogic server cannot do any work and needs to be restarted. Any help would be appreciatted.
    I can make it happen by creating a load on the server.
    Code snippet:
    we call a static method to return us a context instance, context is not shared.
    env.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.ldap.LdapCtxFactory");
    env.put(Context.PROVIDER_URL, "ldap://"+directoryHost+":"+directoryPort);
    env.put(Context.SECURITY_PRINCIPAL, name);
    env.put(Context.SECURITY_CREDENTIALS, password);
    env.put(Context.REFERRAL,"follow");
    DirContext ctx = new InitialDirContext(env);
    return ctx;
    Thread dump (there are a few threads like this)
    "ExecuteThread: '36' for queue: 'default'" daemon prio=5 tid=0x2718c808 nid=0x77
    c waiting on monitor [0x2852f000..0x2852fdc0]
    at java.lang.Object.wait(Native Method)
    - waiting on <55e31f0> (a com.sun.jndi.ldap.LdapRequest)
    at com.sun.jndi.ldap.Connection.readReply(Connection.java:283)
    - locked <55e31f0> (a com.sun.jndi.ldap.LdapRequest)
    at com.sun.jndi.ldap.LdapClient.ldapBind(LdapClient.java:310)
    - locked <55e31d8> (a com.sun.jndi.ldap.LdapClient)
    at com.sun.jndi.ldap.LdapClient.authenticate(LdapClient.java:163)
    - locked <55e31d8> (a com.sun.jndi.ldap.LdapClient)
    at com.sun.jndi.ldap.LdapCtx.connect(LdapCtx.java:2386)
    at com.sun.jndi.ldap.LdapCtx.<init>(LdapCtx.java:239)
    at com.sun.jndi.ldap.LdapCtxFactory.getInitialContext(LdapCtxFactory.jav
    a:74)
    at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:6
    60)
    at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:241
    at javax.naming.InitialContext.init(InitialContext.java:217)
    at javax.naming.InitialContext.<init>(InitialContext.java:193)
    at javax.naming.directory.InitialDirContext.<init>(InitialDirContext.jav
    a:78)
    at com.truecontext.wasabi.business.util.LDAPUtil.getContext(LDAPUtil.jav
    a:318)
    at com.truecontext.wasabi.business.devman.dao.SynchronizationProfileDAOi
    Planet.getObjectsByFilter(SynchronizationProfileDAOiPlanet.java:562)
    at com.truecontext.wasabi.business.devman.dao.SynchronizationProfileDAOi
    Planet.getObjectsByFilter(SynchronizationProfileDAOiPlanet.java:544)
    at com.truecontext.wasabi.business.devman.dao.SynchronizationProfileDAOi
    Planet.findSynchronizationProfileDataByDeviceAndUser(SynchronizationProfileDAOiP
    lanet.java:1319)
    at com.truecontext.wasabi.business.devman.ejb.DeviceMgrEJB.findSynchroni
    zationProfileDataByDeviceAndUser(DeviceMgrEJB.java:6502)
    at com.truecontext.wasabi.business.devman.ejb.DeviceMgrEJB_fo5kg5_EOImpl
    .findSynchronizationProfileDataByDeviceAndUser(DeviceMgrEJB_fo5kg5_EOImpl.java:7
    010)
    at com.truecontext.wasabi.business.devman.ejb.DeviceMgrSyncSessionEJB.fi
    ndSynchronizationProfileDataByDeviceAndUser(DeviceMgrSyncSessionEJB.java:880)
    at com.truecontext.wasabi.business.devman.ejb.DeviceMgrSyncSessionEJB_th
    6b7o_EOImpl.findSynchronizationProfileDataByDeviceAndUser(DeviceMgrSyncSessionEJ
    B_th6b7o_EOImpl.java:166)
    at com.truecontext.wasabi.business.sync.ejb.SFSyncEngineEJB.beginSync(SF
    SyncEngineEJB.java:1008)
    at com.truecontext.wasabi.business.sync.ejb.SFSyncEngineEJB.doProcess(SF
    SyncEngineEJB.java:867)
    at com.truecontext.wasabi.business.sync.ejb.SFSyncEngineEJB.doProcess(SF
    SyncEngineEJB.java:782)
    at com.truecontext.wasabi.business.sync.ejb.SFSyncEngineEJB_62algz_EOImp
    l.doProcess(SFSyncEngineEJB_62algz_EOImpl.java:199)
    at com.truecontext.wasabi.presentation.sync.servlet.SFSyncListener.onMes
    sage(SFSyncListener.java:352)
    at com.truecontext.wasabi.presentation.sync.servlet.SFSyncListener.doPos
    t(SFSyncListener.java:284)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run
    (ServletStubImpl.java:1058)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:401)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:306)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationActio
    n.run(WebAppServletContext.java:5445)
    at weblogic.security.service.SecurityServiceManager.runAs(SecurityServic
    eManager.java:780)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe
    rvletContext.java:3105)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
    pl.java:2588)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
    Environment:
    iplanet directory server 5.1 Service Pack 2
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_08-b03) (also tried 1.4.2)
    OS Name Microsoft Windows 2000 Server
    Version     5.0.2195 Service Pack 4 Build 2195
    BEA Weblogic Server 7.0 sp2

    We are having the same problem as well and this has been reported else where as well.
    We were able to reproduce this problem on the full blown Weblogic application, with a simple program which creates a large number of connection in quick succession - after a certain number of connections ( about 60), the client simply hangs! It turns out that this is a known problem with iPlanet 5.1 with SSL: http://www.openldap.org/lists/openldap-software/200205/msg00567.html
    I have also posted this message to the Directory Server forum at Sun, but have not heard anything yet!
    http://swforum.sun.com/jive/thread.jspa?threadID=46914&tstart=0
    There have been quite a few other cases of this problem ( probably manifesting itself in other forms!)
    http://forum.java.sun.com/thread.jsp?forum=51&thread=358357
    Let me know if you come up with a solution to your problem

Maybe you are looking for

  • Adobe software - How I want to buy it

    As a video editor I only want software that is of use to me in my activity, namely: - Adobe Premiere Adobe Encore Adobe Audition Adobe After Effects Adobe Photoshop + export plug-ins (media encoder etc) What I would like is for Adobe to bundle this s

  • Import c struct from dll header file into TestStand?

    Hi, I'm writing a TestStand sequence to call some CVI functions I have compiled into a dll. One header file in the CVI code is the interface to the dll and declares some functions and some C structs which are to be passed into the functions as pointe

  • Is my firefox 64 or 32 bit

    Build identifier: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0 I would like to know

  • Gnome-Shell 3.8 freezes a few seconds when i start an application.

    Hi! I've been using GnomeShell for abount 1 year now. But there is an pretty anoying thing with it. When i open (for example google-chrome) the clock stops and i cant click on anything for about 3 seconds. But not only when i start an application but

  • Problems with Apple Mail and SSL SMTP

    All of a sudden I'm having trouble sending mail through SMTP when using SSL on port 465. No other mail clients (Outlook, Thunderbird, Entourage) have the problem. It was working then quit. I'm scratching my head. Any ideas? Regards, Rob