WL 4.5.1 hangs on repeated Refresh!!

Hi,
          I am due to deploy a two tier app (JSP/Servlets) in a few days. I use
          weblogic 4.5.1 on a Solaris box (1GB RAM, 2 processor). The server starts
          with a heap of 512MB, noclassgc. The app works beautifully; but, on a
          particular page (quite DB intensive; and I use connection pooling), if I hit
          refresh repeatedly, the server just donesn't return any html after a while.
          the server does't hang or crash; it just doesn't do anything. I twiddled
          with many weblogic properties including executeThreadCount (i set it to 25),
          connection pool sizes.. etc...
          All my JSPs get a connection from the pool and close it at the end. I also
          have a connection.close() in the finally block. Also, the weblogic console
          shows that the connections are being release fast. But, I did notice that
          the poolSize never increaed from the initial size even though I have set
          capacityIncremet to 1. Please help!!!
          Here is my sample .jsp code:
          <%import stuff%>
          <%System.out.println("Begin-------");%>
          <%
          get connection from connection pool
          prepare statement
          rs=ps.executeQuery()
          iterate through rs
          display in html table
          close resultset
          close statement
          close connection
          finally{
          close connection
          System.out.println("End--------");
          %>
          When I load this page, I see both the "Begin---" and "End----" lines on the
          weblogic log. But, when I start hitting refresh before I see any HTML on
          the browser, I see only a bunch of "Begin-----"s and NO "End-----" at
          all!!!!!! I am not instantiating any user defined classes in the .jsp. the
          sqlq query is not an expensive one either. What's going on???
          Please HELP!!!
          Thanks!,
          Shrisha
          Shrisha Radhakrishna
          mailto:[email protected]
          mailto:[email protected]
          http://members.tripod.com/cricforum
          (408) 844-7503 (Off)
          (408) 910-9422 (Cell)
          

Hi,
          I am due to deploy a two tier app (JSP/Servlets) in a few days. I use
          weblogic 4.5.1 on a Solaris box (1GB RAM, 2 processor). The server starts
          with a heap of 512MB, noclassgc. The app works beautifully; but, on a
          particular page (quite DB intensive; and I use connection pooling), if I hit
          refresh repeatedly, the server just donesn't return any html after a while.
          the server does't hang or crash; it just doesn't do anything. I twiddled
          with many weblogic properties including executeThreadCount (i set it to 25),
          connection pool sizes.. etc...
          All my JSPs get a connection from the pool and close it at the end. I also
          have a connection.close() in the finally block. Also, the weblogic console
          shows that the connections are being release fast. But, I did notice that
          the poolSize never increaed from the initial size even though I have set
          capacityIncremet to 1. Please help!!!
          Here is my sample .jsp code:
          <%import stuff%>
          <%System.out.println("Begin-------");%>
          <%
          get connection from connection pool
          prepare statement
          rs=ps.executeQuery()
          iterate through rs
          display in html table
          close resultset
          close statement
          close connection
          finally{
          close connection
          System.out.println("End--------");
          %>
          When I load this page, I see both the "Begin---" and "End----" lines on the
          weblogic log. But, when I start hitting refresh before I see any HTML on
          the browser, I see only a bunch of "Begin-----"s and NO "End-----" at
          all!!!!!! I am not instantiating any user defined classes in the .jsp. the
          sqlq query is not an expensive one either. What's going on???
          Please HELP!!!
          Thanks!,
          Shrisha
          Shrisha Radhakrishna
          mailto:[email protected]
          mailto:[email protected]
          http://members.tripod.com/cricforum
          (408) 844-7503 (Off)
          (408) 910-9422 (Cell)
          

Similar Messages

  • WL 4.5.1 Hangs on repeated Refresh!! Help!!

    Hi,
    I am due to deploy a two tier app (JSP/Servlets) in a few days. I use
    weblogic 4.5.1 on a Solaris box (1GB RAM, 2 processor). The server starts
    with a heap of 512MB, noclassgc. The app works beautifully; but, on a
    particular page (quite DB intensive; and I use connection pooling), if I hit
    refresh repeatedly, the server just donesn't return any html after a while.
    the server does't hang or crash; it just doesn't do anything. I twiddled
    with many weblogic properties including executeThreadCount (i set it to 25),
    connection pool sizes.. etc...
    All my JSPs get a connection from the pool and close it at the end. I also
    have a connection.close() in the finally block. Also, the weblogic console
    shows that the connections are being release fast. But, I did notice that
    the poolSize never increaed from the initial size even though I have set
    capacityIncremet to 1. Please help!!!
    Here is my sample .jsp code:
    <%import stuff%>
    <%System.out.println("Begin-------");%>
    <%
    get connection from connection pool
    prepare statement
    rs=ps.executeQuery()
    iterate through rs
    display in html table
    close resultset
    close statement
    close connection
    finally{
    close connection
    System.out.println("End--------");
    %>
    When I load this page, I see both the "Begin---" and "End----" lines on the
    weblogic log. But, when I start hitting refresh before I see any HTML on
    the browser, I see only a bunch of "Begin-----"s and NO "End-----" at
    all!!!!!! I am not instantiating any user defined classes in the .jsp. the
    sqlq query is not an expensive one either. What's going on???
    I did some further investigation and noticed that If I hit stop (after WL
    stops responding) and go to any .jsp that doesn't require a connection pool,
    it works!! I saw from some newsgroup thread abt. the
    weblogic.system.httpThreadCount. I tried this too; no avail.
    Please HELP!!!
    Thanks so much!,
    Shrisha
    Shrisha Radhakrishna
    mailto:[email protected]
    mailto:[email protected]
    http://members.tripod.com/cricforum
    (408) 844-7503 (Off)
    (408) 910-9422 (Cell)

    I do have a try block and I close resultset, prepared statement, and
    connection in all pages.. :-)).. Also, I did a thread dump and noticed
    that all the executeThreads were waiting at the executeQuery() statement.
    Thanks!,
    Shrisha
    "Wei Guan" <[email protected]> wrote in message
    news:[email protected]...
    >
    >
    Cheers - Wei
    Shrisha Radhakrishna <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    I am due to deploy a two tier app (JSP/Servlets) in a few days. I
    use
    weblogic 4.5.1 on a Solaris box (1GB RAM, 2 processor). The serverstarts
    with a heap of 512MB, noclassgc. The app works beautifully; but, on a
    particular page (quite DB intensive; and I use connection pooling), if Ihit
    refresh repeatedly, the server just donesn't return any html after awhile.
    the server does't hang or crash; it just doesn't do anything. I
    twiddled
    with many weblogic properties including executeThreadCount (i set it to25),
    connection pool sizes.. etc...
    All my JSPs get a connection from the pool and close it at the end. Ialso
    have a connection.close() in the finally block. Also, the weblogicconsole
    shows that the connections are being release fast. But, I did notice
    that
    the poolSize never increaed from the initial size even though I have set
    capacityIncremet to 1. Please help!!!
    Here is my sample .jsp code:
    <%import stuff%>
    <%System.out.println("Begin-------");%>
    <%
    get connection from connection pool
    prepare statement
    rs=ps.executeQuery()
    iterate through rs
    display in html table
    close resultset
    close statement
    close connection
    finally{
    close connection
    System.out.println("End--------");
    }where is your try and catch block???
    put
    close resultset
    close statement
    close connectioninto your finally block and you don't need them in try block.
    I don't know it is related or not.
    When WL 4.5.1 hangs, do a thread dump, read the call stack and you might
    spot something useful.
    %>
    When I load this page, I see both the "Begin---" and "End----" lines onthe
    weblogic log. But, when I start hitting refresh before I see any HTML
    on
    the browser, I see only a bunch of "Begin-----"s and NO "End-----" at
    all!!!!!! I am not instantiating any user defined classes in the .jsp.the
    sqlq query is not an expensive one either. What's going on???
    I did some further investigation and noticed that If I hit stop (after
    WL
    stops responding) and go to any .jsp that doesn't require a connectionpool,
    it works!! I saw from some newsgroup thread abt. the
    weblogic.system.httpThreadCount. I tried this too; no avail.
    Please HELP!!!
    Thanks so much!,
    Shrisha
    Shrisha Radhakrishna
    mailto:[email protected]
    mailto:[email protected]
    http://members.tripod.com/cricforum
    (408) 844-7503 (Off)
    (408) 910-9422 (Cell)

  • Since upgrading to FF6 and now through FF7 web pages need repeated refreshing to load this does not happen with other browsers. I have tried many solutions. None have worked. Any ideas?

    Problem began after a Firefox 6 update (i do not remember which one) and has continued through current use of Firefox 7.0.1. Almost all '''web pages load only through repeated refreshing'''. If I do not refresh the web page it will just continue to try to load (as seen by the green rotating ring continually revolving) in a new window with a new tab (as I have set it to do). Nothing stops, nothing crashes. Once the web page completes and opens (after the refreshings) I can close the window click on the bookmark icon or originating link and the web page will load and open quickly (as it should). I have searched for solutions on the Mozilla site and have done many of the possible solutions (deleting history and caches, etc.) Problem seems to be communication in origin (my FF browser talking to web page server). I do not use a proxy. My set up to the internet is: laptop thru Verizon USB modem to internet. Operates as a wireless dial-up with speeds averaging 55 kbs (fast enough for me). I have used this set up for years with no previous trouble. Anyone have similar trouble, ideas or solutions?

    Thanks for your reply cor-el. I had never heard of nor seen the pref network.http.max-connections until I read about it in some of the replies in this support forum. People were saying 256 was the old setting and a new setting of 48 would correct my problem. When I followed the instructions to get to - see - and change the setting I discovered that my network.http.max-connections was already set to 48. I never did this. The only way I can think of that this setting was changed is that it happened by an automatic update to my Firefox browser. So, the problem I have was probably happening while this setting was at 48 all along. It is still set at 48 and I am still having the same problem. I will try as you suggest and set it to 30 and see what happens. I'll let you know the results. That's again for your response.

  • Firefox 3.6.13 hangs freezes repeatedly with multiple tabs open

    I am running FF v3.6.13 on a Vista laptop. I typically have over 60 tabs open during a session (pretty much the same ones each time). In the last two weeks, FF has started freezing repeatedly while these tabs are open, whether I am using it or it is sitting idle. I either get a dialog box stating that Firefox is not responding and asking if I want to end it or wait for it to respond, or it simply hangs and I have to kill it via Task Manager.
    However, if I run FF with only a few tabs open, it remains running and stable. So, I don't believe it is an extension problem.
    Any ideas what is happening?

    @ Falling Rock
    You seem to have found a plausible answer to the problem. <br>
    But at least as I view your post it is breaking the post container, I will repeat your answer and add line breaks in an attempt to make it easier for those like myself to view what you have written; without requiring excessive scrolling.
    Repeat of above post
    ''Hey, M.,
    I have had this problem with v3.6.13 and earlier versions, too,<br> but I never was anywhere near 60 tabs! WOwwww! <br>
    IMHO, the "issue"is probably caused by your having stretched your virtual memory too far. <br>
    My system is XP Pro x86 SP3 with only 2 GB RAM; <br>you must have 4GB or upwards on a 64-bit system, to grow to 60 tabs. <br>Mine gets flaky around 12-15, esp. with a Word doc window or two running as well. <br>Mine used to go troublesome around 8 or so, but I increased my Virtual Memory setting in Windows. <br>You might try increasing the virtual memory setting significantly, if Windows will let you. <br> See if that will help your problem. Good luck!
    ''

  • 3 Flash-LED - No boot, wait awhile - works, hangs - rinse/repeat

    I am having 3 flashes of LED no boot issue here with my Mac at work. 3 flashing lights - I've changed out the ram with 3 different pairs (all known to be working) as well as tested each memory bank (in pairs). The funny thing is - after leaving it off overnight or for a length of time - it will boot and work for a while. Then it will hang/lock and rinse repeat with the no-boot 3 flashes of the LED. This is a Dual 2.0 G5 (currently w/ 2Gb Ram). This was/is a hand-me-down at my place of employment and i am rather New to the whole MAC scene so any help would be appreciated. Also, any ballpark figure on what an Authorized Apple dealer would charge for diagnosis would be helpful as well. Thanks in advance.

    Hi TalkingsMAC-
    Greetings and welcome to the Apple boards
    Known to be working how? Are they from the same model G5?
    Each subsequent OSX system upgrade tends to make a system pickier about the RAM that it will use.
    Since it is winking at you, the first thing to do is get past the memory issue. Make sure it is installed correctly and in matched pairs: Power Mac G5: Memory Specifications and Requirements
    This may be helpful: Memory (DIMMs) Replacement Instructions
    As far as the charge why not call and ask?
    Luck-
    -DaddyPaycheck

  • Repeater refresh bug?

    I am having a problem with nested Repeater controls not
    refreshing properly to reflect the data that is bound to the data
    provider for each of the Repeater controls. My problem is related
    to the following:
    I have two classes, say Parent and Child which are as
    follows:
    [Bindable]
    public class Parent {
    public var children : ArrayCollection = new
    ArrayCollection();
    [Bindable]
    public class Child {
    public var name : String = “foo”;
    public var isEnabled : Boolean = true;
    public var isSelected : Boolean = false;
    public var enabledChildren : ArrayCollection = …;
    public var disabledChildren : ArrayCollection = …;
    The enabledChildren and disabledChildren collections contain
    references to other Child objects that exist within the children
    collection of another parent.
    Then I have the following nested Repeater control structure:
    <mx:Repeater id="parentRepeater"
    dataProvider="{model.parents}">
    <mx:Repeater id="childRepeater" dataProvider="{
    parentRepeater.currentItem.options}">
    <mx:CheckBox label="{childRepeater.currentItem.name}"
    enabled="{childRepeater.currentItem.isEnabled}"
    selected="{childRepeater.currentItem.isSelected}"
    click="optionClicked(event);" />
    </mx:Repeater>
    </mx:Repeater>
    Where model.parents references an ArrayCollection of Parent
    objects.
    The problem that I am having is that when a checkbox is
    clicked, the optionClicked function is called, and within this
    function there is logic that iterates over the enabledChildren and
    disabledChildren collections of the Child object bound to the
    clicked checkbox, and it sets the isEnabled and isSelected
    properties of each Child object in these collections to either true
    or false, depending on the current state of the checkbox that was
    clicked.
    However, when I do this, the checkbox controls are not
    updated properly, as the enabled and/or selected state of the
    checkbox does not accurately reflect the value that is stored in
    the object that is bound to this control.
    The only way that I am able to have the checkboxes redraw
    properly is to do a manual refresh on the model.parents collection,
    but doing so causes the view to flicker pretty noticeably.
    Is there any way to perform this type of operation and have
    all of the controls update properly without having to do the manual
    refresh? I know that the data that is bound to the controls is
    being updated properly, but the actual view of the controls is not
    being updated.
    Any help that could be offered on this matter would be
    greatly appreciated.

    "Its impossible to use a two-dimensions Array with a
    Repeater. " that is not correct. It is true that you should avoid
    arrays as dataPRoviders, but I see you are using an
    arrayCollection, which is good. What are (dataType) the child
    objects of the model.parents?
    what you have is close, I don't see an obvious problem. How
    are you updating the dataProvider? You must be using the Collection
    API, and never the low-level array[] notation.
    Tracy

  • JDev 9.0.3 - Working with Custom Tags Hangs JDev Repeatedly!

    All,
    I recently upgraded from JDev 9.0.2 to 9.0.3 because of the new support for JSP 1.2 and Servlets 2.3. As you probably know, JSP 1.2 includes additional support for custom tag development. Unfortunately, JDev 9.0.3 keeps hanging repeatedly when trying to work with a custom tag library. I have seen a couple other postings on this forum that indicate the fact that I'm not alone in this experience.
    It seems that I am able to open a taglib and make a modification, and then save the taglib without a problem. However, if I attempt to make any further changes to that taglib again without restarting JDev, it just hangs JDev and I have to kill the JDev process and restart JDev. This has made JDev extremely frustrating and unusable developing custom tags. I do not have this problem with JDev 9.0.2, but that version does not support the additionally tag library functionality of JSP 1.2, which is supported by 9.0.3.
    Is this a bug with 9.0.3? Does anyone know of a workaround I can try?
    Thanks in advance,
    Kyle Corley

    Hi,
    Logged as bug 2725712.
    Thanks,
    Brian
    JDev Team

  • Repeated refresh or regeneration of clip thumbnails

    When I'm editing in PPRO CC 2014.2 I have noticed now that each time I set a IN AND OUT MARKERS either in the SOURCE WINDOW or do a insert clip onto the SEQUENCE PANE,  all the thumbnails of each clip in the Project window and on the sequence
    completely go blank to regenerate or refresh the image of the thumbnail per each clip.
    I have to wait until the regeneration is done before I can continue.
    I have the Latest desktop MacPro 3.5 GHz 6-Core INtel Xeon with 32 gigs of ram.

    Is there a fix for this well known issue reported back from December 2014?
    I'm editing, or trying to edit a documentary, the experience is a pain.
    The video thumbnails and audio waveforms on my sequence timeline refresh constantly every time I hit play, stop, zoom in, zoom out, cut etc...
    - 180hrs of footage aprox.
    - DSLR 5D EOS Mark III, 7D(1080 23.98) and some B-Roll GoPro Hero 3(1080 29.97)
    - 7min Sequence (my progress is to slow because editing process its unbearable)
    - Disabling clip thumbnails and audio waveforms does not solve the issue, even watching my edit the performance is lagging, no fluid play.
    On the other hand I'm editing a feature film, and the expirience is less painful than the documentary.
    Every now and then when I razor cut an audio clip it bring the beachball of death. Only solution is to Force Quit Premier and pray that you saved before or have some luck if Autosaved your...
    Exporting a OMF or AAF from Premier its almost impossible without trial and error and work arounds.
    - 36hrs of footage aprox
    - ARRI ALEXA ProRess 4444(2K 23.98) transcode to ProRes HQ(2K 23.98)
    - 1hr45min Sequence
    I come from a family of filmmakers, this is what we do. Im a Professional and a Power User. I make a living out of this. I have 13 years in the business and I take my job seriously. I only use professional software.
    Are we out in the woods?
    Adobe...
    Premier Pro CC 2014.2
    OSX Yosemite 10.10.3 (14D136)
    iMac (27-inch, Late 2012)
    3.4 GHz Intel Core i7
    32 GB 1600 MHz DDR3
    MacHD
    NVIDIA GeForce GTX 680MX 2048 MB
    OWC ThunderBay 4 Raid 5
    OWC Elite Pro Dual
    Promise Pegasus R6 Raid 5

  • Safari 5.0.6 repeatedly refreshing back a page - can't find anyone else with this issue.

    I have already searched for this issue, and no one mentions anything quite like it. There are plenty of threads about refreshing problems, but not like the one I'm having.
    For quite awhile now, the same problem has been occurring: I will be on a web page and suddenly safari will refresh and bounce back to a prior page - anything I was doing at the moment disappears (such as filling out a form, writing an email, etc) and I have to start from the beginning. Even things like what I'm typying right now could refresh and disappear at any moment - it's driving me nuts!
    Has anyone else had this problem, or heard of it, and what was the recommended solution?
    Thanks in advance for your help!

    Ok..
    You can also try troubleshooting the Safari .plist  (preferences)
    Go to ~/Library/Preferences. Move the com.apple.Safari.plist file from the Preferences folder to the Desktop.
    Quit then relaunch Safari to test. If that helped, move the .plist file to the Trash.
    ~ (Tilde) character represents your Home folder.
    If it's not Extensions nor corrupted preferences, possibly a third party Safari addon.
    Safari: Unsupported third-party add-ons may cause Safari to unexpectedly quit or have performance issues

  • Finder repeatedly 'refreshes' after update of Quicktime

    Software update showed an update of Quicktime, so I installed it. It required restarting, so I quit applications that were open but it timed out before I got everything done. I restarted, and that is when my Finder started 'refreshing' periodically.By that I mean the desktop disappears for a few seconds and then all the icons and windows come back. I booted up from an eDrive I had created through TechTools and ran the computer through directory rebuilding, and optimized, and checked out all the hardware, etc. Rebooted and still have the same problem. Any thoughts?

    Yep - me too. Finder crashes every few minutes.. Will try re-installing QT 7.5.5 and see what happens...
    Here's the Crash info:
    The application Finder quit unexpectedly
    2009-01-21 18:40:07 -0800
    Date/Time: 2009-01-21 18:40:07.876 -0800
    OS Version: 10.4.11 (Build 8S165)
    Report Version: 4
    Command: Finder
    Path: /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Parent: WindowServer [71]
    Version: 10.4.7 (10.4.7)
    Build Version: 1
    Project Name: Finder_FE
    Source Version: 5292900
    PID: 286
    Thread: 3
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x9002704c
    Thread 0:
    0 libSystem.B.dylib 0x9fdf6f48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9fdf6e9c mach_msg + 60
    2 com.apple.CoreFoundation 0x9fcec9ac __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9fcec2b0 CFRunLoopRunSpecific + 268
    4 com.apple.HIToolbox 0x932adb20 RunCurrentEventLoopInMode + 264
    5 com.apple.HIToolbox 0x932ad1b4 ReceiveNextEventCommon + 380
    6 com.apple.HIToolbox 0x932f2348 AcquireNextEventInMode + 72
    7 com.apple.HIToolbox 0x932f2138 RunApplicationEventLoop + 132
    8 com.apple.finder 0x00008960 0x1000 + 31072
    9 com.apple.finder 0x00004f18 0x1000 + 16152
    10 com.apple.finder 0x00069ff0 0x1000 + 430064
    11 com.apple.finder 0x00069e98 0x1000 + 429720
    Thread 1:
    0 libSystem.B.dylib 0x9fe1ac8c kevent + 12
    1 com.apple.DesktopServices 0x909fbe50 TFSNotificationTask::FSNotificationTaskProc(void*) + 56
    2 ...ple.CoreServices.CarbonCore 0x9f503740 PrivateMPEntryPoint + 76
    3 libSystem.B.dylib 0x9fe17908 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9fe17fc8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x9fe1caac pthreadcondwait + 480
    2 ...ple.CoreServices.CarbonCore 0x9f503930 MPWaitOnQueue + 224
    3 com.apple.DesktopServices 0x909fc4cc TNodeSyncTask::SyncTaskProc(void*) + 116
    4 ...ple.CoreServices.CarbonCore 0x9f503740 PrivateMPEntryPoint + 76
    5 libSystem.B.dylib 0x9fe17908 pthreadbody + 96
    Thread 3 Crashed:
    0 <<00000000>> 0x9002704c 0 + -1878888372
    1 <<00000000>> 0x017fb384 0 + 25146244
    Thread 3 crashed with PPC Thread State 64:
    srr0: 0x000000009002704c srr1: 0x000000004000d030 vrsave: 0x0000000000000000
    cr: 0x00000002 xer: 0x0000000000000000 lr: 0x00000000017fac64 ctr: 0x000000009002704c
    r0: 0x00000000017fac64 r1: 0x00000000059aef40 r2: 0x0000000000000000 r3: 0x00000000017fce24
    r4: 0x00000000059aef80 r5: 0x0000000000000000 r6: 0x00000000017fd0f8 r7: 0x0000000000000000
    r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0x0000000000000000 r11: 0x00000000017fd054
    r12: 0x000000009002704c r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x0000000000000000
    r16: 0x0000000000000000 r17: 0x0000000000000000 r18: 0x0000000000000000 r19: 0x0000000000000000
    r20: 0x0000000000000000 r21: 0x0000000000000000 r22: 0x0000000000000000 r23: 0x0000000000000000
    r24: 0x0000000000000000 r25: 0x0000000000000000 r26: 0x00000000017fd0f8 r27: 0x00000000017fb39c
    r28: 0x0000000000000000 r29: 0x0000000000000000 r30: 0x0000000000000000 r31: 0x00000000017fac2c
    Binary Images Description:
    0x1000 - 0x31dfff com.apple.finder 10.4.7 /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    0x505000 - 0x5f3fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x724000 - 0x726fff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x8fe00000 - 0x8fe52fff dyld 46.16 /usr/lib/dyld
    0x9002a000 - 0x9035cfff com.apple.QuickTime 7.6.0 (1290) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x909f9000 - 0x90a81fff com.apple.DesktopServices 1.3.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90aea000 - 0x90b5cfff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b72000 - 0x90b84fff libauto.dylib /usr/lib/libauto.dylib
    0x90ec8000 - 0x90f48fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90fe9000 - 0x91001fff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x910b0000 - 0x910f5fff com.apple.bom 8.5.1 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x91112000 - 0x91120fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91123000 - 0x912defff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dd000 - 0x913e6fff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ed000 - 0x913f5fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f9000 - 0x91421fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91434000 - 0x9143ffff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91453000 - 0x91481fff com.apple.openscripting 1.2.7 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x914fc000 - 0x914fcfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fe000 - 0x91536fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x915c1000 - 0x915d0fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x915d9000 - 0x915e6fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91630000 - 0x91649fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x91676000 - 0x91707fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91842000 - 0x918a0fff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918cf000 - 0x918f0fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91904000 - 0x91929fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9199a000 - 0x919aefff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91b48000 - 0x91b66fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91c72000 - 0x91c76fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c78000 - 0x91ce2fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91d06000 - 0x91d09fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91e10000 - 0x91e52fff com.apple.LaunchServices 183 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91f4c000 - 0x91f6bfff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fd7000 - 0x92045fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x92050000 - 0x920e5fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920ff000 - 0x92687fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926ba000 - 0x929e5fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a15000 - 0x92b03fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92fc8000 - 0x92fc8fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fca000 - 0x92fdefff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92ff6000 - 0x93006fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93012000 - 0x93027fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93039000 - 0x930c0fff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930d4000 - 0x930dffff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93131000 - 0x93140fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9314c000 - 0x931b2fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931e3000 - 0x93232fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93260000 - 0x9327dfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9328f000 - 0x9329cfff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x932a5000 - 0x935b3fff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93a74000 - 0x93af5fff com.apple.SearchKit 1.0.8 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9414a000 - 0x941bcfff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941f5000 - 0x942bafff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9430d000 - 0x9430dfff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94519000 - 0x94556fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94c1d000 - 0x94c8efff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94fbd000 - 0x94fc3fff com.apple.filesync 3.1 (99.9.0) /System/Library/PrivateFrameworks/FileSync.framework/Versions/A/FileSync
    0x9572e000 - 0x95830fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x9588b000 - 0x95952fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x96326000 - 0x963f8fff com.apple.ColorSync 4.4.11 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x96500000 - 0x96542fff com.apple.CFNetwork 129.24 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9675a000 - 0x9680bfff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x97b40000 - 0x97b86fff com.apple.ImageIO.framework 1.5.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x97ba8000 - 0x97c5ffff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x97e75000 - 0x97e8ffff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x97f0b000 - 0x97f49fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9edd1000 - 0x9eeb6fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9eebe000 - 0x9eebefff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9eec0000 - 0x9eed5fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x9eeda000 - 0x9ef91fff com.apple.QD 3.10.27 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9efce000 - 0x9f01bfff com.apple.CoreText 1.0.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9f046000 - 0x9f401fff com.apple.CoreGraphics 1.258.82 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9f48e000 - 0x9f4b7fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9f4c8000 - 0x9f79ffff com.apple.CoreServices.CarbonCore 681.18 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9f805000 - 0x9f880fff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9f8bd000 - 0x9faf0fff com.apple.Foundation 6.4.11 (567.40) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9fc14000 - 0x9fc19fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9fc1b000 - 0x9fc9ffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x9fcc9000 - 0x9fda3fff com.apple.CoreFoundation 6.4.11 (368.35) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9fdec000 - 0x9ffa8fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    Model: PowerMac3,5, BootROM 4.2.5f1, 2 processors, PowerPC G4 (2.1), 800 MHz, 1.5 GB
    Graphics: GeForce3, GeForce3, AGP, 64 MB
    Memory Module: DIMM0/J21, 512 MB, SDRAM, PC133-333
    Memory Module: DIMM1/J22, 512 MB, SDRAM, PC133-333
    Memory Module: DIMM2/J23, 512 MB, SDRAM, PC100-322S
    AirPort: AirPort, 9.52
    Modem: Spring, UCJ, V.90, 7.0F, APPLE VERSION 0007, 7/31/2000
    Network Service: Built-in Ethernet, Ethernet, en0
    PCI Card: ATTO ExpressPCI UL3D, scsi-2, SLOT-5
    PCI Card: ATTO ExpressPCI UL3D, scsi-2, SLOT-5
    Parallel ATA Device: ST380011A, 74.53 GB
    Parallel ATA Device: PIONEER DVD-RW DVR-103
    SCSI Device: SCSI Target Device @ 0
    SCSI Device: SCSI Target Device @ 1
    SCSI Device: SCSI Target Device @ 5
    USB Device: Hub, Up to 12 Mb/sec, 500 mA
    USB Device: USB Monitor, LG Electronics Inc., Up to 1.5 Mb/sec, 500 mA
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: Kensington USB PocketMouse Wireless, Kensington, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    jeff

  • Portal Logon page repeating/ redirecting to itself on first attempt

    All,
    Apologies in advance if this is not the appropriate forum.  We are in the process of migrating a NW7.0SPS13/EP7.0SPS13 installation from a remote site to a local site with a database only UME and SSO to an ECC6.0 backend.  The new target installation has picked up a rather odd behavior.  When loggin onto the portal, the logon page repeats/refreshes/redirects to itself with valid ID and password with no error message.  The only apparent action is the clearing of the password field.
    My only clue so far is the absence of this script in the http trace on the initial logon attempt which shows up on the second attempt:
    http://<host>:51100/irj/portalapps/com.sap.portal.httpconnectivity.httpauthentication/scripts/CAManagerScript.js
    I did find this related thread and attempted the suggestions with no luck:
    Re: portal logon page coming again
    I felt this might be the best place to post question since this may be an authentication/connectivity issue.
    Thanks in advance,
    Lee

    You are correct, we are not implementing SPNego but at this point I will take any suggestions that might be conceptually related...
    We are attempting to migrate/clone the entire server (OS,J2EE,MSSQL05...) from a remote hosted environment to a local network environment.
    I checked the Everyone, Authenticated, and Anonymous groups for the correct roles/Java permissions and all seems to be in-line with the correctly functioning remote system with correct user assignment.
    With some further log filtering I was able to where find this error:
    The default keystore view [TicketKeystore] does not exist. Authentication stack: [ticket]. The possible reasons for that problem are: keystore does not exist or the user has no permission to read from the keystore view. You can delete the TicketKeystore and restart the engine so that the engine automatically re-creates it.
    I suspect the SAPLogonTicketKeystore was recreated incorrectly...  I will have the migration team recreate it again.  FWIW, I am unfamiliar with the process of assigning user access to this object as the error suggests.
    Thanks for the suggestions...

  • Chromium segfaults and hangs all X11

    Hi, I'm getting this issue frequently (once or twice a day) using chromium. Maybe someone can point me in the right direction.
    I get random crashes while web surfing with chromium. The whole UI blocks: I can move my mouse pointer, but nothing reacts, not only in chromium, but nothing at all in the desktop environment (Gnome 3). I have to change to a tty and issue "systemctl restart gdm" or reboot to get back to normal.
    This is what I could find in journalctl:
    jul 20 20:30:04 computer.localdomain chromium.desktop[5240]: [6499:6500:0720/203004:ERROR:gpu_watchdog_thread.cc(253)] The GPU process hung. Terminating after 10000 ms.
    jul 20 20:30:04 computer.localdomain kernel: Watchdog[6500]: segfault at 0 ip 00007f92693bd806 sp 00007f9255468880 error 6 in chromium[7f9265787000+573c000]
    jul 20 20:30:04 computer.localdomain chromium.desktop[5240]: [5240:5240:0720/203004:ERROR:gpu_process_transport_factory.cc(440)] Failed to establish GPU channel.

    I started to get the same errors a couple of days ago, usually after resuming from standby. X11 hangs and only refreshes once you switch to some tty and back. A restart is necessary to solve the problem
    Linux x220-arch 3.15.7-1-ARCH #1 SMP PREEMPT Mon Jul 28 20:06:17 CEST 2014 x86_64 GNU/Linux
    extra/chromium 36.0.1985.125-1 [installed]
    00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09) (prog-if 00 [VGA controller])

  • My Mountain Lion OSX is very slow and some of my applications get hang and also shutting down is slow

    I have noted after install of Mountain Lion OSX my system and aplication opening has slow

    Open Console.app by clicking on Spotlight in the top-right of the screen and typing 'Console', then press 'return.
    Look in the sidebar under 'FILES' for 'System Log' and click on it.
    Click the 'Clear Display' icon in the taskbar, and then 'Insert Marker'. Make a note of the time on the marker.
    Press the power button once to display the shutdown window. Make sure 'Reopen Windows when logging back in' is selected. Shutdown the computer (not 'Restart').
    When the computer is off, press the power button again and log in. The Console window should be at the front of your screen. Skim through the messages and look for any obvious hangs or repeated messages.

  • Dynamic Repeater Data

    I constructed a small search box, and am using flash remoting
    to get the
    data that fills a grid - and that works great.
    I'm trying to show phone numbers for the selected person from
    the grid, and
    thought a repeater would work well for this.
    When someone clicks on a contact my grid, it does a flash
    remote query
    to pull back all the telephone numbers a person has (voice,
    fax, mobile etc).
    I get the query back, but can't figure out how to get the
    repeater to change
    to show the results (they could have multiple voice, and no
    fax number so the
    repeater portion is supposed to be dynamic).
    I've got a handler setup, and it executes when my data comes
    back, and I've
    tried to do something like this:
    q1.dataProvider = results;
    q1 being the query holding the telephone number data. This
    does not give me
    any error, but the repeater does not update.
    What am I missing?

    Thank you for the reply ScareCrow.
    The repeater I'm referring to is actually the flash cfform
    element. For example:
    <cfformgroup type="repeater" query="q1">
    <cfinput type="text" name="edit_phone"
    bind="{(grid.selectedItem!=undefined)?q1.currentItem.phone:''}"
    />
    </cfformgroup>
    I am trying to have the repeater refresh, so I was trying to
    stuff the results of the flash remote call (a query) into the data
    provider for the repeater.
    q1.dataProvider = results;
    That does not give me any error, but it does not update the
    screen either to show the results pulled back from the server.
    Any idea? It should be possible, as it is client side
    correct?

  • Still photos hanging in video

    Still pictures hang and repeat in imovie '09 video. Using Ken Burns effect. Have not had problem when using pix this way before.

    FYI:  after several weeks of trying everything suggested in the forums and waiting for an answer to this post, I said what the heck and sent the video to iTunes. Surprise, Surprise, the video played through perfectly with no hanging photos, sent on to IDVD for a perfect DVD. Who knew?

Maybe you are looking for

  • Migration from Excel 2003 - VBA to 2010

    Hi, I support an application that uses VBA macros in XLS 2003 spreadsheets.  As support is being discontinued, I need to migrate to 2010.  I am having trouble finding information on what functions/features are not compatible in the later version.  Is

  • Restore Back up via CD Problem

    Hi all - hope someone can help. Just bought a new PC and I backed up all my ITUNES library from the old one on 40-odd CDs (no DVD drive on the old PC). I'm trying to restore these to the new PC. I've followed the instructions to file>back up disc, bu

  • Text box should get focus

    Hi,           In my jsp page I have a form witho two text fields i.e input type="text"           These two text fields get the values from scanning. Since scanning           generates an event enter(it is going to submit the form), so after I scan   

  • HELP -Need to record in 640x480

    I need to take Captivate 2 shots of Windows XP in 640x480 resolution. (Note: It will not help me to resize to 640x480 after recording ) XP normally allows a minimum resolution of 800x600. I've been told to choose the compatibility tab in preferences

  • Help to Configure Connection Pool For Jdeveloper

    Hi , I am using Jdeveloper 10.1.2 and Oravle AS 10.1.2. Language Used : J2EE,Struts and EJB I am portletizing struts application. I need help to configure Connection pool. By default it is taking a datasource.xml not the one i had defined. Pls help m