Login.jspx page refreshing in infinite loop in adf security

HI,
I have applied adf security to my application. If i create page def for login.jspx page it is refreshing in infinite loop.
Thanks,
Nitesh

troubleshoot this issue as described in the post
Thanks
KT

Similar Messages

  • "Page has Changed" infinite loop

    When I click the Edit button, a message appears:
    "Page has Changed. A new version of this page has been
    detected. The new version will be loaded."
    (There is no "new version" of the page, so this message seems
    erroneous.)
    I click OK. I click the Edit button again. The same message
    appears. The page never goes into "Edit" mode, so this process
    becomes an infinite loop, preventing me from editing the page.
    What is the problem?

    Hello antlion,
    Please post the url for the site you're working with.
    Does this happen with all of your InContext Editing enabled
    pages, or just one? Are you the only one working on the page in
    InContext Editing and Dreamweaver, or is it possible there is an
    editing/synchronizing conflict with another user?
    Best regards,
    Corey

  • How to show pages based on user logged in adf security ?

    Hi All,
    JDev ver : 11.1.1.4.0
    I have three Roles MANAGERS, ADMIN, ANALYST with users in each role.
    And i used form based authentication. There are seperate screens for each user, i want to show according to the user entered with Roles.
    How to Configure these roles in Resource Grants and what should be done in login action..
    For me the page now going forward, it remains in the login page itself
    How to do that ?
    thanks,
    Gopinath

    Hi..
    try out following sample
    http://andrejusb.blogspot.com/2011/05/oracle-webcenter-11g-ps3-adf-security.htmlalso check this >http://andrejusb.blogspot.com/2009/01/practical-adf-security-deployment-on.html

  • Error  while parsing JSF jspx page when including javascript  loops

    Hi All,
    I have a jspx document which contains jsf tags including trinidad tags. I have added a javascript function in the page, which contains a for loop statement, however when I run the page I get an error
    com.sun.facelets.FaceletException: Error Parsing /xAdvisorWeb/bundles/receivetask/manageinbox.jspx: Error Traced[line: 48] The content of elements must consist of well-formed character data or markup.
    at com.sun.facelets.compiler.SAXCompiler.doCompile(SAXCompiler.java:234)
    at com.sun.facelets.compiler.Compiler.compile(Compiler.java:104)
    at com.sun.facelets.impl.DefaultFaceletFactory.createFacelet(DefaultFaceletFactory.java:192)
    at com.sun.facelets.impl.DefaultFaceletFactory.getFacelet(DefaultFaceletFactory.java:141)
    at com.sun.facelets.impl.DefaultFaceletFactory.getFacelet(DefaultFaceletFactory.java:93)
    at com.sun.facelets.FaceletViewHandler.buildView(FaceletViewHandler.java:503)
    at com.sun.facelets.FaceletViewHandler.renderView(FaceletViewHandler.java:553)
    at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:178)
    at org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:384)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:138)
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:995)
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:930)
    at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:145)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._invokeDoFilter(TrinidadFilterImpl.java:326)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:290)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:213)
    at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:90)
    at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:190)
    at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:130)
    at com.ibm.ws.webcontainer.filter.WebAppFilterChain._doFilter(WebAppFilterChain.java:87)
    at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:761)
    at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:673)
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:498)
    at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:464)
    at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.java:90)
    at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:744)
    Please note that normal javascript code has worked in my jsf page, this problem only occurs only when I add for loop or while loop in the javascript function. Can we not add javascript loops in a jsf page? Is there something else I need to include?
    This is the relevant code snippet :
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:tr="http://myfaces.apache.org/trinidad"
    xmlns:ch="http://www.chordiant.com/jsf"
    xmlns:chrd="http://chordiant.com/jsf/chrd">
    <f:view locale="#{preferLocale.locale}">
    <f:verbatim escape="true">
    <script>
    function validateInput(){
    for(int i=0;i<3;i++)
    alert('Hi');
    return false;
    </script>
    </f:verbatim>
    <tr:commandLink styleClass="ttmBtnCmdLink" onclick="return validateInput();"
    action="#{manageInbox.executeTaskForAssignedWorkItems}">
    <tr:outputText value="#{msgs.execute_btn}"
    styleClass="ttmBtnOutTxt" />
    </tr:commandLink>
    Any help will be much appreciated.
    Thanks in advance,
    Debajyoti

    M-Y wrote:
    replace "<" with "& l t ;"
    remove spaces in "& l t ;" when u paste it in ur code
    in my previous 2 replies i entered it with out spaces and it was getting converted to "<"The forum engine parses HTML entities. So just replace the & by its HTML entity &amp; and it will work: &lt;.
    But no, this is not going to work. JavaScript doesn't recognize HTML entities as operators.
    Follow the suggestion rlubke gave. Or, even better, put all Javascripts in its own .js file and include this file in the HTML head.

  • Webcenter custom login.jspx page

    I have a custom webcenter application where I need to have a seperate login page that should authenticate and go to the home page.
    So i have a template for login page and another template for the home page.The home page template contains a welcome <user> text , The requirement was very simple once we login, the user should be authenticated and see the home page
    I used the login backing beans 'doLogin()' method to do the authentication but it never redirects to any page and even if it authenticates in the same page, after going to the home page , the page is still not authenticated and i need to refresh the page for the authentication to be reflected in my home page.
    Which is the best way to handle this scenario? Do i need to do something specifically to handle the navigation

    Hi,
    it's been already discussed.follow the thread -Re: Problem creating login page in portal webapplication
    Regards,
    Hoque

  • Pages in an infinite loop of crashing due to NSRangeException

    Hi there, Im opening Pages 5.2 and it tries to reopen a doc that seeimginly crashed. It gives the option to attempt to re-open or not, either selection results in a NSRangeException crash.
    Running a mid-2013 MBA, on Mavericks - any help hugely appreciated....
    Process:         Pages [749]
    Path:            /Applications/Pages.app/Contents/MacOS/Pages
    Identifier:      com.apple.iWork.Pages
    Version:         5.2 (1860)
    Build Info:      Pages-1860000000000000~1
    App Item ID:     409201541
    App External ID: 501232653
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [149]
    Responsible:     Pages [749]
    User ID:         501

    Thanks for your reply Peter, but I assure you, Im holding down shift gives a slow animated opening, but it does not offer to reopen the file but does crash with an NSRangeException, details below;
    Process:         Pages [1176]
    Path:            /Applications/Pages.app/Contents/MacOS/Pages
    Identifier:      com.apple.iWork.Pages
    Version:         5.2 (1860)
    Build Info:      Pages-1860000000000000~1
    App Item ID:     409201541
    App External ID: 501232653
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [146]
    Responsible:     Pages [1176]
    User ID:         501
    Date/Time:       2014-06-18 12:44:42.401 +0200
    OS Version:      Mac OS X 10.9.3 (13D65)
    Report Version:  11
    Anonymous UUID:  ED5D13FC-98FD-0CD4-6904-795D0B9E5D7C
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSArrayM objectAtIndex:]: index 1 beyond bounds [0 .. 0]'
    terminating with uncaught exception of type NSException
    abort() called
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x00007fff8476725c __exceptionPreprocess + 172
    1   libobjc.A.dylib                     0x00007fff86589e75 objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff846455a5 -[__NSArrayM objectAtIndex:] + 245
    3   Pages                               0x0000000101df5781 Pages + 628609
    4   Pages                               0x0000000103438705 PagesConvertSandboxDocument + 22976334
    5   Pages                               0x000000010317659b PagesConvertSandboxDocument + 20084196
    6   Pages                               0x0000000101df14a5 Pages + 611493
    7   Pages                               0x00000001034d4268 PagesConvertSandboxDocument + 23614129
    8   AppKit                              0x00007fff875adf05 -[NSClipView _scrollTo:animateScroll:flashScrollerKnobs:] + 1972
    9   AppKit                              0x00007fff876d79c8 -[NSClipView _scrollTo:animate:] + 28
    10  AppKit                              0x00007fff8772821f -[NSClipView _scrollTo:] + 19
    11  AppKit                              0x00007fff87728202 -[NSClipView _scrollPoint:fromView:] + 86
    12  AppKit                              0x00007fff87728186 -[NSView scrollPoint:] + 38
    13  Pages                               0x00000001034d3d9a PagesConvertSandboxDocument + 23612899
    14  Pages                               0x0000000101df35c0 Pages + 619968
    15  Pages                               0x0000000101db7d0e Pages + 376078
    16  Pages                               0x0000000101d60763 Pages + 18275
    17  Pages                               0x0000000101d5fe32 Pages + 15922
    18  AppKit                              0x00007fff877d93ac -[NSWindowController _windowDidLoad] + 450
    19  AppKit                              0x00007fff877bffa6 -[NSWindowController window] + 110
    20  Pages                               0x00000001025ae5a3 PagesConvertSandboxDocument + 7730668
    21  Pages                               0x00000001025a3f49 PagesConvertSandboxDocument + 7688082
    22  AppKit                              0x00007fff8781c547 -[NSDocument addWindowController:] + 228
    23  Pages                               0x000000010258b0f6 PagesConvertSandboxDocument + 7586111
    24  AppKit                              0x00007fff879fd4f0 __90-[NSDocumentController(NSInternal) _autoreopenDocumentsFromRecords:withCompletionHandler:]_block_invoke1626 + 87
    25  Pages                               0x00000001025d07c0 PagesConvertSandboxDocument + 7870473
    26  AppKit                              0x00007fff879f4fee __89-[NSDocumentController reopenDocumentForURL:withContentsOfURL:display:completionHandler:]_block_invoke 924 + 201
    27  AppKit                              0x00007fff879f4c93 __89-[NSDocumentController reopenDocumentForURL:withContentsOfURL:display:completionHandler:]_block_invoke _7 + 24
    28  libdispatch.dylib                   0x00007fff8e8951bb _dispatch_call_block_and_release + 12
    29  libdispatch.dylib                   0x00007fff8e89228d _dispatch_client_callout + 8
    30  libdispatch.dylib                   0x00007fff8e899ef0 _dispatch_main_queue_callback_4CF + 333
    31  CoreFoundation                      0x00007fff846ce5a9 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
    32  CoreFoundation                      0x00007fff846897c4 __CFRunLoopRun + 1636
    33  CoreFoundation                      0x00007fff84688f25 CFRunLoopRunSpecific + 309
    34  HIToolbox                           0x00007fff870c0a0d RunCurrentEventLoopInMode + 226
    35  HIToolbox                           0x00007fff870c07b7 ReceiveNextEventCommon + 479
    36  HIToolbox                           0x00007fff870c05bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    37  AppKit                              0x00007fff8754426e _DPSNextEvent + 1434
    38  AppKit                              0x00007fff875438bb -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    39  AppKit                              0x00007fff875379bc -[NSApplication run] + 553
    40  AppKit                              0x00007fff875227a3 NSApplicationMain + 940
    41  Pages                               0x0000000101d68d31 Pages + 52529
    42  libdyld.dylib                       0x00007fff8a3095fd start + 1
    43  ???                                 0x0000000000000001 0x0 + 1
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff86aed866 __pthread_kill + 10
    1   libsystem_pthread.dylib                 0x00007fff9052035c pthread_kill + 92
    2   libsystem_c.dylib                       0x00007fff8bc19b1a abort + 125
    3   libc++abi.dylib                         0x00007fff8eb2ef31 abort_message + 257
    4   libc++abi.dylib                         0x00007fff8eb54952 default_terminate_handler() + 264
    5   libobjc.A.dylib                         0x00007fff8658a30d _objc_terminate() + 103
    6   libc++abi.dylib                         0x00007fff8eb521d1 std::__terminate(void (*)()) + 8
    7   libc++abi.dylib                         0x00007fff8eb52246 std::terminate() + 54
    8   libobjc.A.dylib                         0x00007fff8658a0b0 objc_terminate + 9
    9   libdispatch.dylib                       0x00007fff8e8922a1 _dispatch_client_callout + 28
    10  libdispatch.dylib                       0x00007fff8e899ef0 _dispatch_main_queue_callback_4CF + 333
    11  com.apple.CoreFoundation                0x00007fff846ce5a9 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
    12  com.apple.CoreFoundation                0x00007fff846897c4 __CFRunLoopRun + 1636
    13  com.apple.CoreFoundation                0x00007fff84688f25 CFRunLoopRunSpecific + 309
    14  com.apple.HIToolbox                     0x00007fff870c0a0d RunCurrentEventLoopInMode + 226
    15  com.apple.HIToolbox                     0x00007fff870c07b7 ReceiveNextEventCommon + 479
    16  com.apple.HIToolbox                     0x00007fff870c05bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    17  com.apple.AppKit                        0x00007fff8754426e _DPSNextEvent + 1434
    18  com.apple.AppKit                        0x00007fff875438bb -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    19  com.apple.AppKit                        0x00007fff875379bc -[NSApplication run] + 553
    20  com.apple.AppKit                        0x00007fff875227a3 NSApplicationMain + 940
    21  com.apple.iWork.Pages                   0x0000000101d68d31 0x101d5c000 + 52529
    22  libdyld.dylib                           0x00007fff8a3095fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff86aee662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff8e894421 _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff8e894136 _dispatch_mgr_thread + 52
    Thread 2:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff86ae9b16 syscall_thread_switch + 10
    1   libsystem_platform.dylib                0x00007fff885dcdf6 _OSSpinLockLockSlow + 63
    2   libCGXType.A.dylib                      0x00007fff881fe42a xt_path_builder_create_path_for_glyph + 128
    3   com.apple.CoreGraphics                  0x00007fff889c9036 CGFontCreateGlyphPath + 46
    4   com.apple.CoreGraphics                  0x00007fff889c8fb0 CGFontCreateGlyphBitmap + 392
    5   com.apple.CoreGraphics                  0x00007fff889c8d95 CGGlyphBuilder::create_missing_bitmaps(CGGlyphIdentifier const*, unsigned long, CGGlyphBitmap const**) + 109
    6   libRIP.A.dylib                          0x00007fff91590a7f render_glyphs + 197
    7   libRIP.A.dylib                          0x00007fff9158fd4a draw_glyph_bitmaps + 1739
    8   libRIP.A.dylib                          0x00007fff9158f1da ripc_DrawGlyphs + 2204
    9   com.apple.CoreGraphics                  0x00007fff88e76327 draw_glyphs + 1449
    10  com.apple.CoreGraphics                  0x00007fff889c800a CGContextShowGlyphsWithAdvances + 471
    11  com.apple.CoreText                      0x00007fff8a5d1afb CTFontDrawGlyphsWithAdvances + 3643
    12  com.apple.CoreText                      0x00007fff8a5d0c16 TRun::DrawGlyphs(CGContext*, CFRange) const + 262
    13  com.apple.CoreText                      0x00007fff8a5d0576 TLine::DrawGlyphs(CGContext*) const + 240
    14  com.apple.iWork.Pages                   0x00000001036e7731 0x101d5c000 + 26785585
    15  com.apple.iWork.Pages                   0x00000001036e71bb 0x101d5c000 + 26784187
    16  com.apple.iWork.Pages                   0x00000001036bbcd6 0x101d5c000 + 26606806
    17  com.apple.iWork.Pages                   0x0000000103851b32 0x101d5c000 + 28269362
    18  com.apple.iWork.Pages                   0x0000000103851c07 0x101d5c000 + 28269575
    19  com.apple.iWork.Pages                   0x000000010386907d 0x101d5c000 + 28364925
    20  com.apple.iWork.Pages                   0x000000010386939e 0x101d5c000 + 28365726
    21  com.apple.iWork.Pages                   0x00000001025efab8 0x101d5c000 + 8993464
    22  com.apple.CoreFoundation                0x00007fff846ccfda __51-[__NSSetM enumerateObjectsWithOptions:usingBlock:]_block_invoke + 90
    23  libdispatch.dylib                       0x00007fff8e8998d9 _dispatch_client_callout2 + 8
    24  libdispatch.dylib                       0x00007fff8e89982a _dispatch_apply_invoke + 87
    25  libdispatch.dylib                       0x00007fff8e89228d _dispatch_client_callout + 8
    26  libdispatch.dylib                       0x00007fff8e894082 _dispatch_root_queue_drain + 326
    27  libdispatch.dylib                       0x00007fff8e895177 _dispatch_worker_thread2 + 40
    28  libsystem_pthread.dylib                 0x00007fff90520ef8 _pthread_wqthread + 314
    29  libsystem_pthread.dylib                 0x00007fff90523fb9 start_wqthread + 13
    Thread 3:: Dispatch queue: com.apple.root.default-priority
    0   libobjc.A.dylib                         0x00007fff86581094 objc_msgSend + 20
    1   com.apple.iWork.Pages                   0x0000000103889463 0x101d5c000 + 28496995
    2   com.apple.CoreFoundation                0x00007fff846ae837 -[NSArray indexOfObject:] + 199
    3   com.apple.iWork.Pages                   0x000000010231857d 0x101d5c000 + 6014333
    4   com.apple.iWork.Pages                   0x00000001038880d4 0x101d5c000 + 28491988
    5   com.apple.iWork.Pages                   0x00000001038691e2 0x101d5c000 + 28365282
    6   com.apple.iWork.Pages                   0x00000001025efab8 0x101d5c000 + 8993464
    7   com.apple.CoreFoundation                0x00007fff846ccfda __51-[__NSSetM enumerateObjectsWithOptions:usingBlock:]_block_invoke + 90
    8   libdispatch.dylib                       0x00007fff8e8998d9 _dispatch_client_callout2 + 8
    9   libdispatch.dylib                       0x00007fff8e89982a _dispatch_apply_invoke + 87
    10  libdispatch.dylib                       0x00007fff8e89975b dispatch_apply_f + 603
    11  com.apple.CoreFoundation                0x00007fff846ccedf -[__NSSetM enumerateObjectsWithOptions:usingBlock:] + 191
    12  com.apple.iWork.Pages                   0x00000001025f0212 0x101d5c000 + 8995346
    13  libdispatch.dylib                       0x00007fff8e8951bb _dispatch_call_block_and_release + 12
    14  libdispatch.dylib                       0x00007fff8e89228d _dispatch_client_callout + 8
    15  libdispatch.dylib                       0x00007fff8e894082 _dispatch_root_queue_drain + 326
    16  libdispatch.dylib                       0x00007fff8e895177 _dispatch_worker_thread2 + 40
    17  libsystem_pthread.dylib                 0x00007fff90520ef8 _pthread_wqthread + 314
    18  libsystem_pthread.dylib                 0x00007fff90523fb9 start_wqthread + 13
    Thread 4:: Dispatch queue: TSURemoteDefaults.Check
    0   libsystem_kernel.dylib                  0x00007fff86ae9a56 semaphore_wait_trap + 10
    1   libdispatch.dylib                       0x00007fff8e8969f9 _dispatch_semaphore_wait_slow + 206
    2   libxpc.dylib                            0x00007fff8f20e7ef xpc_connection_send_message_with_reply_sync + 195
    3   com.apple.CoreFoundation                0x00007fff8465ae43 -[CFPrefsPlistSource copyReplyForDaemonMessage:toConnection:error:] + 243
    4   com.apple.CoreFoundation                0x00007fff847b57e0 __47-[CFPrefsPlistSource alreadylocked_synchronize]_block_invoke_2 + 352
    5   com.apple.CoreFoundation                0x00007fff8465a70b withDaemonConnection + 299
    6   com.apple.CoreFoundation                0x00007fff8465a16b -[CFPrefsPlistSource alreadylocked_synchronize] + 587
    7   com.apple.CoreFoundation                0x00007fff84659e63 _copyValueForKey + 131
    8   com.apple.CoreFoundation                0x00007fff84659db7 -[CFPrefsPlistSource copyValueForKey:] + 71
    9   com.apple.CoreFoundation                0x00007fff84659c15 -[CFPrefsSearchListSource alreadylocked_copyValueForKey:] + 149
    10  com.apple.CoreFoundation                0x00007fff84659b4f -[CFPrefsSource copyValueForKey:] + 79
    11  com.apple.CoreFoundation                0x00007fff84659ae0 __CFPreferencesCopyAppValue_block_invoke + 32
    12  com.apple.CoreFoundation                0x00007fff84653cbe +[CFPrefsSearchListSource withSearchListForIdentifier:perform:] + 846
    13  com.apple.CoreFoundation                0x00007fff84653928 CFPreferencesCopyAppValue + 168
    14  com.apple.CFNetwork                     0x00007fff8ffc665f DiskCookieStorage::setupDefaultCookiePolicyFromPreferences() + 29
    15  com.apple.CFNetwork                     0x00007fff8ff0a7af DiskCookieStorage::initialize(MemoryCookies const*) + 45
    16  com.apple.CFNetwork                     0x00007fff8ff0a6ed _createByFile(__CFDictionary const*) + 125
    17  com.apple.CFNetwork                     0x00007fff8fed8a0a _createByIdentifier(__CFDictionary const*) + 472
    18  com.apple.CFNetwork                     0x00007fff8fed8724 cacheOrCreate(__CFDictionary const*, PrivateHTTPCookieStorage* (*)(__CFDictionary const*), unsigned char) + 252
    19  com.apple.CFNetwork                     0x00007fff8fed8451 _CFHTTPCookieStorageCreateWithProperties_possiblyFromCache(__CFAllocator const*, __CFDictionary const*, unsigned char) + 943
    20  com.apple.CFNetwork                     0x00007fff8fed8050 ___ZNK14StorageSession17copyCookieStorageEv_block_invoke + 348
    21  libdispatch.dylib                       0x00007fff8e89228d _dispatch_client_callout + 8
    22  libdispatch.dylib                       0x00007fff8e8921fc dispatch_once_f + 79
    23  com.apple.CFNetwork                     0x00007fff8fed7ef2 StorageSession::copyCookieStorage() const + 106
    24  com.apple.CFNetwork                     0x00007fff8fed7d8d _CFHTTPCookieStorageGetDefault + 47
    25  com.apple.Foundation                    0x00007fff8d1697fe __46+[NSHTTPCookieStorage sharedHTTPCookieStorage]_block_invoke + 44
    26  libdispatch.dylib                       0x00007fff8e89228d _dispatch_client_callout + 8
    27  libdispatch.dylib                       0x00007fff8e8921fc dispatch_once_f + 79
    28  com.apple.Foundation                    0x00007fff8d1697d0 +[NSHTTPCookieStorage sharedHTTPCookieStorage] + 42
    29  com.apple.Foundation                    0x00007fff8d144601 +[NSURLRequest checkForSharedCookieStoreNeed:] + 71
    30  com.apple.Foundation                    0x00007fff8d16d09f createCFRequest + 313
    31  com.apple.Foundation                    0x00007fff8d254346 +[NSURLConnection sendAsynchronousRequest:queue:completionHandler:] + 77
    32  com.apple.iWork.Pages                   0x00000001022e1621 0x101d5c000 + 5789217
    33  com.apple.iWork.Pages                   0x00000001022e0e2c 0x101d5c000 + 5787180
    34  libdispatch.dylib                       0x00007fff8e89228d _dispatch_client_callout + 8
    35  libdispatch.dylib                       0x00007fff8e894885 _dispatch_source_invoke + 413
    36  libdispatch.dylib                       0x00007fff8e894617 _dispatch_queue_drain + 359
    37  libdispatch.dylib                       0x00007fff8e8959c1 _dispatch_queue_invoke + 110
    38  libdispatch.dylib                       0x00007fff8e893f87 _dispatch_root_queue_drain + 75
    39  libdispatch.dylib                       0x00007fff8e895177 _dispatch_worker_thread2 + 40
    40  libsystem_pthread.dylib                 0x00007fff90520ef8 _pthread_wqthread + 314
    41  libsystem_pthread.dylib                 0x00007fff90523fb9 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff86aede6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff90520f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff90523fb9 start_wqthread + 13
    Thread 6:: Dispatch queue: NSOperationQueue Serial Queue
    0   libsystem_kernel.dylib                  0x00007fff86aed716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff90521c77 _pthread_cond_wait + 787
    2   com.apple.Foundation                    0x00007fff8d0ed930 -[NSCondition waitUntilDate:] + 344
    3   com.apple.Foundation                    0x00007fff8d0e47d8 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    4   com.apple.AppKit                        0x00007fff8773ef80 _getDataDetectorsScanner + 410
    5   com.apple.AppKit                        0x00007fff8773e3b8 checkDataDetectors + 142
    6   com.apple.AppKit                        0x00007fff8773bdd3 NSSpellCheckerCheckString + 14080
    7   com.apple.iWork.Pages                   0x000000010391250f 0x101d5c000 + 29058319
    8   com.apple.Foundation                    0x00007fff8d0bd8a1 -[__NSOperationInternal _start:] + 631
    9   com.apple.Foundation                    0x00007fff8d0bd54b __NSOQSchedule_f + 64
    10  libdispatch.dylib                       0x00007fff8e89228d _dispatch_client_callout + 8
    11  libdispatch.dylib                       0x00007fff8e894673 _dispatch_queue_drain + 451
    12  libdispatch.dylib                       0x00007fff8e8959c1 _dispatch_queue_invoke + 110
    13  libdispatch.dylib                       0x00007fff8e893f87 _dispatch_root_queue_drain + 75
    14  libdispatch.dylib                       0x00007fff8e895177 _dispatch_worker_thread2 + 40
    15  libsystem_pthread.dylib                 0x00007fff90520ef8 _pthread_wqthread + 314
    16  libsystem_pthread.dylib                 0x00007fff90523fb9 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff86aede6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff90520f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff90523fb9 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff86aede6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff90520f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff90523fb9 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff86aede6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff90520f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff90523fb9 start_wqthread + 13
    Thread 10:: Dispatch queue: com.apple.root.default-priority
    0   com.apple.CoreGraphics                  0x00007fff889cbb35 crossing_count + 113
    1   com.apple.CoreGraphics                  0x00007fff889c98d8 path_evaluate_levels + 358
    2   com.apple.CoreGraphics                  0x00007fff889c9724 path_get_expected_outside_orientation + 14
    3   com.apple.CoreGraphics                  0x00007fff889c96d9 path_fix_orientation + 15
    4   com.apple.CoreGraphics                  0x00007fff889c931e CGPathCreateByNormalizingGlyphPath + 28
    5   libCGXType.A.dylib                      0x00007fff881fe6bb create_path_for_glyph + 51
    6   libCGXType.A.dylib                      0x00007fff881fe5ba xt_path_builder_create_path_for_glyph + 528
    7   com.apple.CoreGraphics                  0x00007fff889c9036 CGFontCreateGlyphPath + 46
    8   com.apple.CoreGraphics                  0x00007fff889c8fb0 CGFontCreateGlyphBitmap + 392
    9   com.apple.CoreGraphics                  0x00007fff889c8d95 CGGlyphBuilder::create_missing_bitmaps(CGGlyphIdentifier const*, unsigned long, CGGlyphBitmap const**) + 109
    10  libRIP.A.dylib                          0x00007fff91590a7f render_glyphs + 197
    11  libRIP.A.dylib                          0x00007fff9158fd4a draw_glyph_bitmaps + 1739
    12  libRIP.A.dylib                          0x00007fff9158f1da ripc_DrawGlyphs + 2204
    13  com.apple.CoreGraphics                  0x00007fff88e76327 draw_glyphs + 1449
    14  com.apple.CoreGraphics                  0x00007fff889c800a CGContextShowGlyphsWithAdvances + 471
    15  com.apple.CoreText                      0x00007fff8a5d1afb CTFontDrawGlyphsWithAdvances + 3643
    16  com.apple.CoreText                      0x00007fff8a5d0c16 TRun::DrawGlyphs(CGContext*, CFRange) const + 262
    17  com.apple.CoreText                      0x00007fff8a5d0576 TLine::DrawGlyphs(CGContext*) const + 240
    18  com.apple.iWork.Pages                   0x00000001036e7731 0x101d5c000 + 26785585
    19  com.apple.iWork.Pages                   0x00000001036e71bb 0x101d5c000 + 26784187
    20  com.apple.iWork.Pages                   0x00000001036bbcd6 0x101d5c000 + 26606806
    21  com.apple.iWork.Pages                   0x0000000103851b32 0x101d5c000 + 28269362
    22  com.apple.iWork.Pages                   0x0000000103851c07 0x101d5c000 + 28269575
    23  com.apple.iWork.Pages                   0x000000010386907d 0x101d5c000 + 28364925
    24  com.apple.iWork.Pages                   0x000000010386939e 0x101d5c000 + 28365726
    25  com.apple.iWork.Pages                   0x00000001025efab8 0x101d5c000 + 8993464
    26  com.apple.CoreFoundation                0x00007fff846ccfda __51-[__NSSetM enumerateObjectsWithOptions:usingBlock:]_block_invoke + 90
    27  libdispatch.dylib                       0x00007fff8e8998d9 _dispatch_client_callout2 + 8
    28  libdispatch.dylib                       0x00007fff8e89982a _dispatch_apply_invoke + 87
    29  libdispatch.dylib                       0x00007fff8e89228d _dispatch_client_callout + 8
    30  libdispatch.dylib                       0x00007fff8e894082 _dispatch_root_queue_drain + 326
    31  libdispatch.dylib                       0x00007fff8e895177 _dispatch_worker_thread2 + 40
    32  libsystem_pthread.dylib                 0x00007fff90520ef8 _pthread_wqthread + 314
    33  libsystem_pthread.dylib                 0x00007fff90523fb9 start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff86aede6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff90520f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff90523fb9 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff86aede6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff90520f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff90523fb9 start_wqthread + 13
    Thread 13:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff86ae9b16 syscall_thread_switch + 10
    1   libsystem_platform.dylib                0x00007fff885dcdf6 _OSSpinLockLockSlow + 63
    2   libCGXType.A.dylib                      0x00007fff881fe42a xt_path_builder_create_path_for_glyph + 128
    3   com.apple.CoreGraphics                  0x00007fff889c9036 CGFontCreateGlyphPath + 46
    4   com.apple.CoreGraphics                  0x00007fff889c8fb0 CGFontCreateGlyphBitmap + 392
    5   com.apple.CoreGraphics                  0x00007fff889c8d95 CGGlyphBuilder::create_missing_bitmaps(CGGlyphIdentifier const*, unsigned long, CGGlyphBitmap const**) + 109
    6   libRIP.A.dylib                          0x00007fff91590a7f render_glyphs + 197
    7   libRIP.A.dylib                          0x00007fff9158fd4a draw_glyph_bitmaps + 1739
    8   libRIP.A.dylib                          0x00007fff9158f1da ripc_DrawGlyphs + 2204
    9   com.apple.CoreGraphics                  0x00007fff88e76327 draw_glyphs + 1449
    10  com.apple.CoreGraphics                  0x00007fff889c800a CGContextShowGlyphsWithAdvances + 471
    11  com.apple.CoreText                      0x00007fff8a5d1afb CTFontDrawGlyphsWithAdvances + 3643
    12  com.apple.CoreText                      0x00007fff8a5d0c16 TRun::DrawGlyphs(CGContext*, CFRange) const + 262
    13  com.apple.CoreText                      0x00007fff8a5d0576 TLine::DrawGlyphs(CGContext*) const + 240
    14  com.apple.iWork.Pages                   0x00000001036e7731 0x101d5c000 + 26785585
    15  com.apple.iWork.Pages                   0x00000001036e71bb 0x101d5c000 + 26784187
    16  com.apple.iWork.Pages                   0x00000001036bbcd6 0x101d5c000 + 26606806
    17  com.apple.iWork.Pages                   0x0000000103851b32 0x101d5c000 + 28269362
    18  com.apple.iWork.Pages                   0x0000000103851c07 0x101d5c000 + 28269575
    19  com.apple.iWork.Pages                   0x000000010386907d 0x101d5c000 + 28364925
    20  com.apple.iWork.Pages                   0x000000010386939e 0x101d5c000 + 28365726
    21  com.apple.iWork.Pages                   0x00000001025efab8 0x101d5c000 + 8993464
    22  com.apple.CoreFoundation                0x00007fff846ccfda __51-[__NSSetM enumerateObjectsWithOptions:usingBlock:]_block_invoke + 90
    23  libdispatch.dylib                       0x00007fff8e8998d9 _dispatch_client_callout2 + 8
    24  libdispatch.dylib                       0x00007fff8e89982a _dispatch_apply_invoke + 87
    25  libdispatch.dylib                       0x00007fff8e89228d _dispatch_client_callout + 8
    26  libdispatch.dylib                       0x00007fff8e894082 _dispatch_root_queue_drain + 326
    27  libdispatch.dylib                       0x00007fff8e895177 _dispatch_worker_thread2 + 40
    28  libsystem_pthread.dylib                 0x00007fff90520ef8 _pthread_wqthread + 314
    29  libsystem_pthread.dylib                 0x00007fff90523fb9 start_wqthread + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x00007fff86aede6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff90520f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff90523fb9 start_wqthread + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff86aede6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff90520f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff90523fb9 start_wqthread + 13
    Thread 16:
    0   com.apple.CoreFoundation                0x00007fff8461d2b0 _CFRuntimeSetInstanceTypeIDAndIsa + 0
    1   com.apple.CoreFoundation                0x00007fff8461ed09 CFDictionaryCreateMutable + 89
    2   com.apple.CoreFoundation                0x00007fff8466a78f _CFBundleCreateQueryTableAtPath + 79
    3   com.apple.CoreFoundation                0x00007fff8466a6c7 _CFBundleCopyQueryTable + 263
    4   com.apple.CoreFoundation                0x00007fff84669f73 _CFBundleCopyURLsOfKey + 339
    5   com.apple.CoreFoundation                0x00007fff84669c56 _CFBundleCopyFindResources + 2310
    6   com.apple.CoreFoundation                0x00007fff846e545e CFBundleCopyResourceURLsOfTypeForLocalization + 62
    7   com.apple.datadetectorscore             0x00007fff86793a08 DDStampContextFillInWithTypeString + 586
    8   com.apple.datadetectorscore             0x00007fff86793215 DDScannerCreateWithType + 149
    9   com.apple.AppKit                        0x00007fff8773f327 +[NSSpellChecker(NSDDScannerBackgroundLoading) _startLoadOfScanner:] + 116
    10  com.apple.Foundation                    0x00007fff8d11c76b __NSThread__main__ + 1318
    11  libsystem_pthread.dylib                 0x00007fff9051f899 _pthread_body + 138
    12  libsystem_pthread.dylib                 0x00007fff9051f72a _pthread_start + 137
    13  libsystem_pthread.dylib                 0x00007fff90523fc9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff765e3310  rcx: 0x00007fff5dea1e78  rdx: 0x0000000000000000
      rdi: 0x0000000000000707  rsi: 0x0000000000000006  rbp: 0x00007fff5dea1ea0  rsp: 0x00007fff5dea1e78
       r8: 0x6e6f697470656378   r9: 0x00007fff8bc418d0  r10: 0x0000000008000000  r11: 0x0000000000000206
      r12: 0x00007fff5dea2000  r13: 0x00007fff5dea24d0  r14: 0x0000000000000006  r15: 0x00007fff5dea1ee0
      rip: 0x00007fff86aed866  rfl: 0x0000000000000206  cr2: 0x0000000110263000
    Logical CPU:     0
    Error Code:      0x02000148
    Trap Number:     133
    Binary Images:
           0x101d5c000 -        0x103ffdfff  com.apple.iWork.Pages (5.2 - 1860) <95A0A705-0B49-3006-8382-FF6E1A475EDD> /Applications/Pages.app/Contents/MacOS/Pages
           0x104928000 -        0x10493bfff  com.apple.MediaLibrary (1.0.2 - 637.6) <AA668564-6D62-33C9-A173-9AA8566A8B57> /System/Library/Frameworks/MediaLibrary.framework/Versions/A/MediaLibrary
        0x7fff6362c000 -     0x7fff6365f817  dyld (239.4) <042C4CED-6FB2-3B1C-948B-CAF2EE3B9F7A> /usr/lib/dyld
        0x7fff84091000 -     0x7fff840f1fff  com.apple.ISSupport (1.9.9 - 57) <E1E343D7-222C-3458-9D1F-FC600B7F1C50> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff8411c000 -     0x7fff8411dff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8411e000 -     0x7fff84146ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
        0x7fff84154000 -     0x7fff8415bff8  liblaunch.dylib (842.90.1) <38D1AB2C-A476-385F-8EA8-7AB604CA1F89> /usr/lib/system/liblaunch.dylib
        0x7fff8415c000 -     0x7fff8415cff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
        0x7fff8415d000 -     0x7fff84164fff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff84231000 -     0x7fff843effff  com.apple.GeoServices (1.0 - 702.15.12) <5A4D463F-689F-3822-BF26-A19D51503019> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff84467000 -     0x7fff84589fff  com.apple.avfoundation (2.0 - 651.12.1) <FF001F98-E198-3B1D-A7EB-A8C48E6E34A3> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff84619000 -     0x7fff847fefff  com.apple.CoreFoundation (6.9 - 855.16) <A63E680E-E4B2-368B-8564-9DBE0D8DDB91> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff848d1000 -     0x7fff84a25ff3  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <69B273E8-5A8E-3FC7-B807-C16B657662FE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff84b14000 -     0x7fff84b22fff  com.apple.opengl (9.6.1 - 9.6.1) <B22FA400-5824-36AF-9945-5FEC31995A0E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff84b23000 -     0x7fff84b25fff  com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff84b26000 -     0x7fff84db7ff7  com.apple.AOSKit (1.06 - 176) <35525B2F-B02F-31FD-A3B2-FD6AE6D32C11> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff84e3d000 -     0x7fff84e40fff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff84e41000 -     0x7fff84e42fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
        0x7fff84e43000 -     0x7fff84eaffff  com.apple.framework.IOKit (2.0.1 - 907.100.13) <057FDBA3-56D6-3903-8C0B-849214BF1985> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff84eb0000 -     0x7fff84ec0fff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
        0x7fff84ec1000 -     0x7fff84effff7  com.apple.ShareKit (1.0 - 185.1) <B4F384BA-961B-3B77-882E-7D4F63767492> /System/Library/PrivateFrameworks/ShareKit.framework/Versions/A/ShareKit
        0x7fff84f63000 -     0x7fff85486fff  com.apple.QuartzComposer (5.1 - 319) <8B90921F-911B-3240-A1D5-3C084F3E6A36> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff854ae000 -     0x7fff857e4fff  com.apple.MediaToolbox (1.0 - 1273.54) <E11683F7-BB60-37EB-98B6-BD519D93CB30> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff857e5000 -     0x7fff85831ffe  com.apple.CoreMediaIO (407.0 - 4561) <040A98E4-F480-315B-BCEE-C18AF686492C> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff85832000 -     0x7fff85832fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff85833000 -     0x7fff85862fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
        0x7fff85863000 -     0x7fff8587eff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
        0x7fff8587f000 -     0x7fff8596dfff  libJP2.dylib (1043) <C4031D64-6C57-3FB4-9D87-874D387381DB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff85990000 -     0x7fff85d07ff6  com.apple.JavaScriptCore (9537 - 9537.75.12) <C3A7612F-34CC-3547-B01C-522D255B69ED> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff85d08000 -     0x7fff85f62ffd  com.apple.security (7.0 - 55471.14.4) <1D5DA20E-DB48-3E1D-9BF5-BAA694192B25> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff85f63000 -     0x7fff860a4fff  com.apple.QTKit (7.7.3 - 2826.19) <E634E6EC-2C7A-3F86-997B-CFC5D9F89E6B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff860d4000 -     0x7fff8611dfff  com.apple.CoreMedia (1.0 - 1273.54) <CAB7303A-9AB2-317A-99C3-BEAA8AE8764B> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8611e000 -     0x7fff86130fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff86131000 -     0x7fff86260fef  com.apple.MediaControlSender (2.0 - 200.34.4) <FC24EC8D-2E46-3F76-AF63-749F30857B96> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff86261000 -     0x7fff86262ffb  libScreenReader.dylib (333.11) <11D709B9-AA71-3B2C-9F06-F7CDD5B05574> /usr/lib/libScreenReader.dylib
        0x7fff86263000 -     0x7fff86266fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff86267000 -     0x7fff86332fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff86333000 -     0x7fff8657bff7  com.apple.CoreData (107 - 481.3) <E78734AA-E3D0-33CB-A014-620BBCAB2E96> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8657c000 -     0x7fff86729f27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
        0x7fff8672a000 -     0x7fff86791ff7  com.apple.CoreUtils (2.0 - 200.34.4) <E53B97FE-E067-33F6-A9C1-D4EC2A20FB9F> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff86792000 -     0x7fff867f6fff  com.apple.datadetectorscore (5.0 - 354.4) <37093186-6019-3071-8D67-F3EF429F8F08> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff86aa2000 -     0x7fff86ad7ffc  com.apple.LDAPFramework (2.4.28 - 194.5) <4ADD0595-25B9-3F09-897E-3FB790AD2C5A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff86ad8000 -     0x7fff86af4ff7  libsystem_kernel.dylib (2422.100.13) <498AEBD7-4194-3CF2-AA16-D5D03FFBD8C0> /usr/lib/system/libsystem_kernel.dylib
        0x7fff86af5000 -     0x7fff86afcfff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
        0x7fff86afd000 -     0x7fff86b44fff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff86b8c000 -     0x7fff86c15fff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff86c16000 -     0x7fff86c3afff  com.apple.quartzfilters (1.8.0 - 1.7.0) <39C08086-9866-372F-9420-81F5689149DF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff86c3b000 -     0x7fff86c46ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff86c47000 -     0x7fff86c5dfff  com.apple.CoreMediaAuthoring (2.2 - 947) <F1886A05-1C29-3F88-88C0-4A1013530AD1> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff86c5e000 -     0x7fff87091ffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff87092000 -     0x7fff8733cff5  com.apple.HIToolbox (2.1.1 - 698) <A388E773-AE7B-3FD1-8662-A98E6E24EA16> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff87354000 -     0x7fff87359fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
        0x7fff87364000 -     0x7fff87371ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
        0x7fff87372000 -     0x7fff873a1fff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff873a2000 -     0x7fff873f1ff7  com.apple.framework.internetaccounts (2.1 - 210) <D7175985-03A5-315B-B788-FBDC0019B0EA> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff873f2000 -     0x7fff87402ffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
        0x7fff87403000 -     0x7fff874f2fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8750b000 -     0x7fff8751ffff  com.apple.aps.framework (4.0 - 4.0) <2D42DCDD-055E-3EE1-97F8-FC447B495D3E> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff87520000 -     0x7fff88096ff7  com.apple.AppKit (6.9 - 1265.20) <D2A7AF23-0FEA-3D7D-9CF5-B4E262224577> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff880cd000 -     0x7fff88191ff7  com.apple.backup.framework (1.5.3 - 1.5.3) <088FEDED-BF5C-33F4-A51A-646C8149BDAA> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff88192000 -     0x7fff8819cfff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8819d000 -     0x7fff881c2ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff881c3000 -     0x7fff881cefff  libGL.dylib (9.6.1) <4B65BF9F-F34A-3CD1-94E8-DB26DAA0A59D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff881d0000 -     0x7fff881d0ffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff881ed000 -     0x7fff881eeff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff881fc000 -     0x7fff881ffffa  libCGXType.A.dylib (599.23.13) <E459DD26-592F-3DBD-8C47-B342ECE8FFD3> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
        0x7fff88200000 -     0x7fff882eafff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
        0x7fff882eb000 -     0x7fff88351fff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff88352000 -     0x7fff88352fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff88591000 -     0x7fff885acff7  libPng.dylib (1043) <23D2DAB7-C9A9-392F-989A-871E89E7751D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff885da000 -     0x7fff885e0ff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
        0x7fff885e1000 -     0x7fff8860bff7  libsandbox.1.dylib (278.11) <BD3D8652-8871-36DB-A27D-3BE4F18428B4> /usr/lib/libsandbox.1.dylib
        0x7fff8871f000 -     0x7fff88737ff7  com.apple.GenerationalStorage (2.0 - 160.3) <64749B08-0212-3AC8-9B49-73D662B09304> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff88738000 -     0x7fff88738fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff88739000 -     0x7fff88740ff7  com.apple.phonenumbers (1.1.1 - 105) <767A63EB-244C-34F1-9FFA-D1A6BED60C31> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff88741000 -     0x7fff8898aff7  com.apple.AddressBook.framework (8.0 - 1371) <86409BC9-C2EB-3BBC-8F4D-43DCA2B23C5D> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff889a5000 -     0x7fff892c4f43  com.apple.CoreGraphics (1.600.0 - 599.23.13) <3A1952C7-1D67-3DEC-A5AB-5399FF4F2A92> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff892c5000 -     0x7fff89526fff  com.apple.imageKit (2.5 - 774) <AACDE16E-ED9F-3B3F-A792-69BA1942753B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff89527000 -     0x7fff8954eff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
        0x7fff89567000 -     0x7fff89597fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff89598000 -     0x7fff89599fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
        0x7fff8959a000 -     0x7fff895a2ff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff895a3000 -     0x7fff8961afff  com.apple.CoreServices.OSServices (600.4 - 600.4) <C63562F5-6DF5-3EE9-8897-FF61A44C8251> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8961b000 -     0x7fff89627ff7  com.apple.OpenDirectory (10.9 - 173.90.1) <256C265B-7FA6-326D-9F60-18DADF5F3A0E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff89628000 -     0x7fff89680ff7  com.apple.Symbolication (1.4 - 129.0.2) <B1F008C4-184D-36A2-922F-4A67A075D512> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff89681000 -     0x7fff897b1ff7  com.apple.desktopservices (1.8.3 - 1.8.3) <225BEC20-F8E0-3F22-9560-890A1A5B9050> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff897b2000 -     0x7fff89809fff  com.apple.ViewBridge (1.0 - 46.2) <4AF3CB98-7691-39A2-8DC3-ABE5CC55CE7F> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
        0x7fff8980a000 -     0x7fff898a7fff  com.apple.imcore (10.0 - 1000) <DF924E35-74AB-389C-9279-1828518218F8> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
        0x7fff898a8000 -     0x7fff898d1fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff898d2000 -     0x7fff898d7fff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8a306000 -     0x7fff8a309ff7  libdyld.dylib (239.4) <7C9EC3B7-DDE3-33FF-953F-4067C743951D> /usr/lib/system/libdyld.dylib
        0x7fff8a310000 -     0x7fff8a375ffb  com.apple.Heimdal (4.0 - 2.0) <F34D6627-9F80-3823-8B57-DB629307DF87> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8a44f000 -     0x7fff8a46cff7  com.apple.framework.Apple80211 (9.3.2 - 932.59) <DA61BF63-978E-342D-8F7F-83D0169A7F48> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8a46d000 -     0x7fff8a4d0ffb  com.apple.SystemConfiguration (1.13.1 - 1.13.1) <2C8E1A73-5AD6-3A7D-8ED8-D6755555A993> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8a4d3000 -     0x7fff8a5baff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
        0x7fff8a5bb000 -     0x7fff8a67dff5  com.apple.CoreText (367.20 - 367.20) <B80D086D-93A9-3C35-860E-9C3FDD027F3B> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8a67e000 -     0x7fff8a688ff7  com.apple.CrashReporterSupport (10.9 - 539) <B25A09EC-A021-32EC-86F8-05B4837E0EDE> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8a689000 -     0x7fff8a752fff  com.apple.LaunchServices (572.26 - 572.26) <EF8A4A15-0861-35C5-9744-5E1BC5C26DD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8a753000 -     0x7fff8a764ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
        0x7fff8a765000 -     0x7fff8a76cff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
        0x7fff8a76d000 -     0x7fff8a771ff7  libheimdal-asn1.dylib (323.92.1) <CAE21FFF-5763-399C-B7C5-EEBFFEEF2242> /usr/lib/libheimdal-asn1.dylib
        0x7fff8a772000 -     0x7fff8a8a8ffc  com.apple.WebKit (9537 - 9537.75.14) <81BB019D-78E2-3CD9-B148-5F5EA5357D2B> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff8a8a9000 -     0x7fff8a8acfff  com.apple.AppleSystemInfo (3.0 - 3.0) <61FE171D-3D88-313F-A832-280AEC8F4AB7> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8a979000 -     0x7fff8aa4afff  com.apple.QuickLookUIFramework (5.0 - 622.7) <13841701-34C2-353D-868D-3E08D020C90F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8aa4b000 -     0x7fff8aa62ffa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff8aa7f000 -     0x7fff8ab07ff7  com.apple.CorePDF (4.0 - 4) <92D15ED1-D2E1-3ECB-93FF-42888219A99F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff8ab08000 -     0x7fff8ab43fff  com.apple.bom (14.0 - 193.1) <EF24A562-6D3C-379E-8B9B-FAE0E4A0EF7C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8ab44000 -     0x7fff8ab95fff  com.apple.QuickLookFramework (5.0 - 622.7) <17685CEC-C94B-3F83-ADE1-B24840B35E44> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8ab96000 -     0x7fff8afe4fef  com.apple.VideoToolbox (1.0 - 1273.54) <4699BB55-7387-3981-9217-869215F00CA9> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8afe5000 -     0x7fff8aff7ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <E51DE5CA-9859-3C13-A24F-37EF4385C1D6> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8b076000 -     0x7fff8b07effc  libGFXShared.dylib (9.6.1) <25BBF325-AC57-3BAA-9427-2D14CC243AE6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8b07f000 -     0x7fff8b456fef  com.apple.CoreAUC (6.25.00 - 6.25.00) <2D7DC96C-BA83-3220-A03F-C790D50A23D8> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8b457000 -     0x7fff8b458ff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8b459000 -     0x7fff8b4b2fff  libTIFF.dylib (1043) <D7CAE68F-6087-3B40-9CB8-EC6DB47BF877> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8b4b3000 -     0x7fff8b4f5ff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
        0x7fff8b4f6000 -     0x7fff8b692ff3  com.apple.QuartzCore (1.8 - 332.3) <72003E51-1287-395B-BCBC-331597D45C5E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8b696000 -     0x7fff8b6e9fff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff8b9d5000 -     0x7fff8b9eeff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8b9ef000 -     0x7fff8b9f3ff7  libsystem_stats.dylib (93.90.3) <4E51D5B0-92A0-3D0D-B90E-495A1ED3E391> /usr/lib/system/libsystem_stats.dylib

  • Use Adf Security In jspx page

    Hi guys,
    Currently I am using default adf security.is there any way to use same security on my login jspx page.
    Thanks,
    Raul

    hi user,
    i hope that you are looking for
    http://www.fireboxtraining.com/blog/2012/02/09/oracle-adf-11g-authentication-using-custom-adf-login-form/
    http://docs.oracle.com/cd/E26098_01/web.1112/e16182/adding_security.htm
    please see the if you want custom login.
    Figure 35-3 Using the Configure ADF Security Wizard to Generate a Simple Login Page
    there is lot of youtube videos. just google it out.
    this is to timo:
    What do you mean by  '...I am using default adf security...'
    if i am understood correctly. while creating new fusion web apps while configuring adf-security HTTP Basic Authentication is comes as default option. he mentioning in that way.
    do You want to secure the login page itself? This doesn't make sense as you need to login to get to the login page.
    i hope he is not asking like as you mentioned.
    from my experience i will interpret like this
    "Currently I am using default adf security".
    he is currently using default adf security(HTTP Basic Authentication).
    is there any way to use same security on my login jspx page.
    he need use the same adf-security concept on custom login page.
    Thanks

  • Problem with using Request dispatcher in my login,jspx

    Hi
    I am using Jdev 11g and new to adf.
    I am trying to work with adf security.
    I designed a login.jspx page and loginproxy.jspx accoridng to the following link
    http://groundside.com/blog/DuncanMills.php?title=j2ee_security_a_jsf_based_login_form&more=1&c=1&tb=1&pb=1
    I have added this code in login.java
         ExternalContext ectx =    FacesContext.getCurrentInstance().getExternalContext();
         HttpServletRequest request =    (HttpServletRequest)ectx.getRequest();
         HttpServletResponse response =    (HttpServletResponse)ectx.getResponse();
         RequestDispatcher dispatcher =   request.getRequestDispatcher("loginnew.jspx");
    RequestDispatcher dispatcher =   request.getRequestDispatcher("j_security_check");
        request.setAttribute("j_username", username);
        request.setAttribute("j_password", password);
         dispatcher.forward(request,response);
    When it tries to execute dispatch statement, it goes in an infinite loop and finally gets me a stack overflow error and also in the cosole it prints series of exceptions like
    ActionListenerImpl><processAction> javax.servlet.ServletException: javax.servlet.ServletException: java.lang.NoClassDefFoundError: Could not initialize class oracle.adf.controller.ControllerException
    javax.faces.el.EvaluationException: javax.servlet.ServletException: javax.servlet.ServletException: java.lang.NoClassDefFoundError: Could not initialize class oracle.adf.controller.ControllerExceptionI have to validate the user against database hence i created a login.jspx with a backing bean so that i can access the username and password and validate the credentials against db and redirect user to the appropriate page.
    The functionality i want to implement is very simple but i just cant get it to work using adf security.
    any help is highly appreciated.
    thanks
    at

    Hi Pedja,
    Thanks for the prompt reply.
    I have been following the link you mentioned to create ADF security and successfully implementedthe first part where if i directly give any internal page url it redirects me back to login page.
    Instead of using weblogic-sql authenticator, i wanted to manually authenticate the user in loginbean.java where i check the username passowrd against the db.
    I had also implemented the method to access username,password mentioned in the following thread
    Re: ADF security on my jspx  page as login page
    Insted of using authentication.login, i am calling the db method to do the validation.
    The thing is after my db validation it does redirect me to the success page(menu.jspx). but when i click links on menu.jspx it redirects me back to login page.
    so i understand that user is not yet set in the session.
    I am stuck at the point how do i code the login.jspx, currently my login.jspx does not have any j_security_check and i think this is what is creating the problem.
    while searching for adding jsecurity in jspx i landed on the blog of 2006 and started using that.
    Can you please point me to some link which explains how to code login.jspx , i have been trying hard for couple of days.
    Thanks again
    ash

  • What's wrong with a simple login.jspx?

    Hello,
    I wrote a simple login.jspx page by following the indications at http://download.oracle.com/docs/cd/E15523_01/web.1111/b31974/adding_security.htm#BABDEICH
    Now, the page works with Firefox 5, but does not with IE 7. When under IE 7, the page keeps reloading giving errors about *"AdfBootStrap undefined*" or *"AdfLogger undefined".*
    What is wrong? Please note that I have already read all the threads on the forum about this issue, without actually solving my problem (I have not really seen any useful solutions there to be honest).
    Jdeveloper is 11.1.1.5.0, only adf authentication is enabled.
    The error messages are like the following ones:
    http://forums.oracle.com/forums/thread.jspa?threadID=952977&tstart=29
    thanks.
    Edited by: user10047839 on 27-giu-2011 8.07
    Changing from jspx to jsp does not solve the problem.

    Hello codeplay,
    in the source code of the page I have the following similar to your line:
    <script type="text/javascript" src="/Myapp/afr/partition/ie/default/opt/boot-11.1.1.5.0-1095.js"></script>
    No lines with SHERMAN inside.
    I could not open "/Myapp/afr/partition/ie/default/opt/boot-11.1.1.5.0-1095.js" or
    "afr/partition/ie/default/opt/boot-11.1.1.5.0-1095.js". Page not found
    Why does it happen with login page only?
    In firefox, as opposite to ie, where the page is rendered a little better (not as good as it should be though, due to these problems), I can login and be redirected to the secured main page, which is another .jsp, more complex than the simple login page, and there I have no problems at all.
    I noticed that the badly rendered page has a link pointing to the generated html below. NOTE that JavaScript IS ENABLED in my IE despite what this html says at the end. I checked this twice:
    WHAT IS WRONG??????????
    <html lang="en-EN"><head><script>
    ** Copyright (c) 2008, Oracle and/or its affiliates. All rights reserved.
    * This is the loopback script to process the url before the real page loads. It introduces
    * a separate round trip. During this first roundtrip, we currently do two things:
    * - check the url hash portion, this is for the PPR Navigation.
    * - do the new window detection
    * the above two are both controled by parameters in web.xml
    * Since it's very lightweight, so the network latency is the only impact.
    * here are the list of will-pass-in parameters (these will replace the param in this whole
    * pattern:
    * viewIdLength view Id length (characters),
    * loopbackIdParam loopback Id param name,
    * loopbackId loopback Id,
    * loopbackIdParamMatchExpr loopback Id match expression,
    * windowModeIdParam window mode param name,
    * windowModeParamMatchExpr window mode match expression,
    * clientWindowIdParam client window Id param name,
    * clientWindowIdParamMatchExpr client window Id match expression,
    * windowId window Id,
    * initPageLaunch initPageLaunch,
    * enableNewWindowDetect whether we want to enable new window detection
    * jsessionId session Id that needs to be appended to the redirect URL
    * enablePPRNav whether we want to enable PPR Navigation
    var id = null;
    var query = null;
    var href = document.location.href;
    var hashIndex = href.indexOf("#");
    var hash = null;
    /* process the hash part of the url, split the url */
    if (hashIndex > 0)
    hash = href.substring(hashIndex + 1);
    /* only analyze hash when pprNav is on (bug 8832771) */
    if (false && hash && hash.length > 0)
    hash = decodeURIComponent(hash);
    if (hash.charAt(0) == "@")
    query = hash.substring(1);
    else
    var state = hash.split("@");
    id = state[0];
    query = state[1];
    href = href.substring(0, hashIndex);
    /* process the query part */
    var queryIndex = href.indexOf("?");
    if (queryIndex > 0)
    /* only when pprNav is on, we take in the query from the hash portion */
    query = (query || (id && id.length>0))? query: href.substring(queryIndex);
    href = href.substring(0, queryIndex);
    var jsessionIndex = href.indexOf(';');
    if (jsessionIndex > 0)
    href = href.substring(0, jsessionIndex);
    /* we will replace the viewId only when pprNav is turned on (bug 8832771) */
    if (false)
    if (id != null && id.length > 0)
    href = href.substring(0, href.length - 10) + id;
    var isSet = false;
    if (query == null || query.length == 0)
    query = "?";
    else if (query.indexOf("_afrLoop=") >= 0)
    isSet = true;
    query = query.replace(/_afrLoop=[^&]*/, "_afrLoop=12570889997779");
    else
    query += "&";
    if (!isSet)
    query = query += "_afrLoop=12570889997779";
    /* below is the new window detection logic */
    var initWindowName = "_afr_init_"; // temporary window name set to a new window
    var windowName = window.name;
    // if the window name is "_afr_init_", treat it as redirect case of a new window
    if ((true) && (!windowName || windowName==initWindowName ||
    windowName!="1bvr27bkx4_1"))
    /* append the _afrWindowMode param */
    var windowMode;
    if (false)
    /* this is the initial page launch case,
    also this could be that we couldn't detect the real windowId from the server side */
    windowMode=0;
    else if ((href.indexOf("/__ADFvDlg__") > 0) || (query.indexOf("__ADFvDlg__") >= 0))
    /* this is the dialog case */
    windowMode=1;
    else
    /* this is the ctrl-N case */
    windowMode=2;
    if (query.indexOf("_afrWindowMode=") >= 0)
    query = query.replace(/_afrWindowMode=[^&]*/, "_afrWindowMode="+windowMode);
    else
    query = query += "&_afrWindowMode="+windowMode;
    /* append the _afrWindowId param */
    var clientWindowId;
    /* in case we couldn't detect the windowId from the server side */
    if (!windowName || windowName == initWindowName)
    clientWindowId = "null";
    // set window name to an initial name so we can figure out whether a page is loaded from
    // cache when doing Ctrl+N with IE
    window.name = initWindowName;
    else
    clientWindowId = windowName;
    if (query.indexOf("_afrWindowId=") >= 0)
    query = query.replace(/_afrWindowId=\w*/, "_afrWindowId="+clientWindowId);
    else
    query = query += "&_afrWindowId="+clientWindowId;
    var sess = "";
    if (sess.length > 0)
    href += sess;
    /* if pprNav is on, then the hash portion should have already been processed */
    if ((false) || (hash == null))
    document.location.replace(href + query);
    else
    document.location.replace(href + query + "#" + hash);
    </script><noscript>JavaScript is not enabled in your browser.</noscript></head></html>

  • Embedded Java Applet NullPointerException in JSPX pages

    We have a ADF web application programmed in JDeveloper 11g (11.1.2.4.0), which was migrated over from a 10g (10.1.3.5.0) project
    Within the application, occasionally, we need to call a Java Applet which is placed in a public_html/applet folder. The jars show up in the Web-Content tab of the ViewController in the Application Navigator, just like it did in 10g.
    The applet tag looks like this:
    <applet height="100" width="100" code="applet.SetupApplet" archive="applet/SSetupApplet.jar">
                <param name="debug" value="true"/>   
    </applet>
    I've also tried calling the applet with the Java deploy applet script
    <trh:script source="http://java.com/js/deployJava.js"></trh:script>
        <trh:script>
            var attributes = {code:'applet.SetupApplet',
            archive:'applet/SSetupApplet.jar'};
            var parameters = {} ;
            var version = '1.6' ;
            deployJava.runApplet(attributes, parameters, version);
       </trh:script>
    When I navigate to the login.jspx page that has this tag, it pops the Java Console open, but doesn't actually run the applet (or show the prompts to allow using the Applet). Instead, the applet is shown with an error and the error says "NullPointerException". I've double-checked the path and it's correct (with incorrect paths, I get a ClassNotFoundException). In the application server logs, I see the following error:
    <Warning> <Socket> <BEA-000449> <Closing socket as no data read from it on IPADDRESS during the configured idle timeout of 5 secs>
    I created a normal .jsp file that's outside the ADF Faces Context in the applet folder. Navigating to it with the same applet tags does have the Java applet run without the socket error. The same code in 10g works fine.
    Is there anything I'm missing?
    Thanks.

    Hi,
    this is how I did it in 11g R1: http://www.oracle.com/technetwork/developer-tools/adf/learnmore/71-adf-to-applet-communication-307672.pdf
    Frank

  • How to save the modified rows in jspx page usind adf default commit action

    Hi,
    We are displaying some columns of the database table in jspx page. Here we are using adf commit action to save these values to database which is updating all the rows by default. In this page there are some editable columns which the user can miodify. How can we update only these modified rows using default adf commit action. Also we want to update last_updated_date column of that particular row which is modified in the UI from backing bean .
    Can anyone please help us in solving this.
    Thanks in advance

    User,
    A key question - what are you using for the model layer (ADF Business Components, JPA, EJB, etc)?
    How are you determining that a "commit" action is updating rows (even those which haven't changed)?
    If you are using ADF Business Components - have a read in the documentation about history columns - the use case you describe (updating the last_udpdated_date column) is supported "out-of-the-box" for this.
    John

  • Commiting a new row to 2 separate tables on a single jspx page

    Hello all
    I have 2 tables in my jspx page. Table Employees as an ADF table, and table Departments as an adf form. They are related via a view link as a * to 1 relationship so the departments view is the detail of the employee view. This means that whenever I click in the employee table on a single row, whichever Dept ID that employee has is shown in the form, automatically.
    I have CreateInsert button, Delete and Commit buttons binded to the departments form, and another CreateInsert Delete and Commit binded to the Employees table. When I run the page in AppMod everything works fine and I can add a new row to the table Employees. However when I try to add a row into Departments the AppMod gives me this error message.
    Jun 15, 2010 1:46:58 PM oracle.jbo.jbotester.MainFrame main
    INFO: BC4J Tester started.
    Exception in thread "AWT-EventQueue-0" oracle.jbo.TooManyObjectsException: JBO-25013: Too many objects match the primary key oracle.jbo.Key[1 ].
    at oracle.jbo.server.EntityCache.throwTooManyObjectsException(EntityCache.java:505)
    at oracle.jbo.server.EntityCache.handleDuplicateKey(EntityCache.java:513)
    at oracle.jbo.server.EntityCache.addForAltKey(EntityCache.java:870)
    at oracle.jbo.server.EntityCache.add(EntityCache.java:474)
    at oracle.jbo.server.EntityImpl.callCreate(EntityImpl.java:955)
    at oracle.jbo.server.ViewRowStorage.create(ViewRowStorage.java:1143)
    at oracle.jbo.server.ViewRowImpl.create(ViewRowImpl.java:428)
    at oracle.jbo.server.ViewRowImpl.callCreate(ViewRowImpl.java:445)
    at oracle.jbo.server.ViewObjectImpl.createInstance(ViewObjectImpl.java:4915)
    at oracle.jbo.server.QueryCollection.createRowWithEntities(QueryCollection.java:1843)
    at oracle.jbo.server.ViewRowSetImpl.createRowWithEntities(ViewRowSetImpl.java:2368)
    at oracle.jbo.server.ViewRowSetImpl.doCreateAndInitRow(ViewRowSetImpl.java:2409)
    at oracle.jbo.server.ViewRowSetImpl.createAndInitRow(ViewRowSetImpl.java:2374)
    at oracle.jbo.server.ViewObjectImpl.createAndInitRow(ViewObjectImpl.java:9684)
    at oracle.jbo.jbotester.NavigationBar.doInsertAction(NavigationBar.java:136)
    at oracle.jbo.jbotester.NavigationBar.doAction(NavigationBar.java:109)
    at oracle.jbo.uicli.controls.JUNavigationBar$NavButton.actionPerformed(JUNavigationBar.java:117)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
    at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
    at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:272)
    at java.awt.Component.processMouseEvent(Component.java:6263)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
    at java.awt.Component.processEvent(Component.java:6028)
    at java.awt.Container.processEvent(Container.java:2041)
    at java.awt.Component.dispatchEventImpl(Component.java:4630)
    at java.awt.Container.dispatchEventImpl(Container.java:2099)
    at java.awt.Component.dispatchEvent(Component.java:4460)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4574)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4238)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)
    at java.awt.Container.dispatchEventImpl(Container.java:2085)
    at java.awt.Window.dispatchEventImpl(Window.java:2475)
    at java.awt.Component.dispatchEvent(Component.java:4460)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    Jun 15, 2010 1:47:08 PM oracle.jbo.jbotester.MainFrame exit
    INFO: BC4J Tester exit code(0)
    Process exited with exit code 0.
    I realize this message means I have duplicate primary key rows but I do not understand why as they are seperate tables.
    So I turn to you, Oracle Oracles, for wisdom and guidance

    Well, you cannot do that in the detail->master way you are describing. It's easy to understand why you get the error:
    1). You have a detail->master link.
    2). When you click "new" to create a new department, you are doing so in the context of the link, which means that the department ID for the new record is created in the context of the currently selected employee.
    3). You now have 2 departments with the same primary key
    4). JBO-25013
    There are only 2 ways that I can think of to do this:
    1). Use a master->detail instead of a detail->master (I know this isn't how you want to do it, but...)
    2). In your original page, use a single VO that combines both employees and departments. When you click "new department" in the context of an employee, update the selected employee with the key of the new department.
    John

  • Infinite loop creating new page due to column header overflow.

    i am getting an error and some pages "Infinite loop creating new page due to column header overflow. " --
    using report builder 9, i have a fairly simple report - that contains 4 subreports.
    for some pages i get the error - it seems if there is more data than would fit on 1 page.
    smaller pages work fine.
    the subreports are all simple queries and dumps....
    containing page header, column header, detail sections.
    page header has just a text bar of the name of the section.
    column header has the field names
    detail section has the data - 1 row for each row in the recordset.
    nothing i do seems to change getting "Infinite loop creating new page due to column header overflow. " on a page with more than 15-20 records returned.
    any ideas would be appreciated.

    Try these links if you are still having the issue:
    http://community.jaspersoft.com/questions/543302/receive-infinite-loop-creating-new-page-d ue-column-header-overflow-exception
    http://community.jaspersoft.com/questions/500177/infinite-loop-due-page-header-overflow

  • Infinite loop/afrLoop when deploying ADF application to standalone weblogic

    Working with Oracle ADF / JDeveloper 11.1.2.2
    I have enabled ADF security in my application and am using JAAS combined with Oracle EBS users and roles to provide security to the application. Testing on my local integrated weblogic server works fine.
    When deploying my Oracle ADF application to a standalone Weblogic server through an EAR file, requesting a JSF page causes the server to go into an infinite loop on both IE and firefox.
    GET /test-app/faces/login.jsf HTTP/1.1     200
    GET /test-app/faces/login.jsf?_afrLoop=346001033248597&_afrWindowMode=0&Adf-Window-Id=w0 HTTP/1.1     302
    GET /test-app/adfAuthentication HTTP/1.1     302
    GET /test-app/faces/login.jsf HTTP/1.1     200
    GET /test-app/faces/login.jsf?_afrLoop=346001340281597&_afrWindowMode=0&Adf-Window-Id=w0 HTTP/1.1     302
    GET /test-app/adfAuthentication HTTP/1.1     302
    GET /test-app/faces/login.jsf;jsessionid=syWvP1nMY1L87BySh2JbTd1tb4SY0HzDw6T3LvLctvkbMWKmqqJv!1800986117 HTTP/1.1     200
    GET /test-app/adfAuthentication HTTP/1.1
    Reviewing some of the suggestions from the forum and from the link below, I have tried fixing the issue through updates to my web.xml - but am still having the same issue.
    https://blogs.oracle.com/jdevotnharvest/entry/solving_jdeveloper_11gr2_issue_with
    Updated web.xml:
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>Allowed ADF Resources</web-resource-name>
    <url-pattern>/adf/*</url-pattern>
    <url-pattern>/afr/*</url-pattern>
    <url-pattern>/bi/*</url-pattern>
    <url-pattern>/servlet/GraphServlet/*</url-pattern>
    <url-pattern>/servlet/GaugeServlet/*</url-pattern>
    <url-pattern>/mapproxy/*</url-pattern>
    <url-pattern>/adflib/</url-pattern>
    </web-resource-collection>
    <web-resource-collection>
    <web-resource-name>allPages</web-resource-name>
    <url-pattern>/*</url-pattern>
    </web-resource-collection>
    <web-resource-collection>
    <web-resource-name>adfAuthentication</web-resource-name>
    <url-pattern>/adfAuthentication</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>valid-users</role-name>
    </auth-constraint>
    </security-constraint>
    <login-config>
    <auth-method>FORM</auth-method>
    <form-login-config>
    <form-login-page>/faces/login.jsf</form-login-page>
    <form-error-page>/faces/login-error.jsf</form-error-page>
    </form-login-config>
    </login-config>
    <security-role>
    <role-name>valid-users</role-name>
    </security-role>
    weblogic.xml
    <security-role-assignment>
    <role-name>valid-users</role-name>
    <principal-name>users</principal-name>
    </security-role-assignment>
    I know other users have experienced similar issues - but I am having trouble debugging or troubleshooting why this is happening.
    Any suggestions on how to further troubleshoot or resolve this issue would be appreciated!
    Dan

    I was able to resolve the login page looping issue.
    The issue is related to the login page being a JSF page based on a page template.
    When I created the JSF login page as a page template - the template contains a binding:
    <af:pageTemplate viewId="/test-template.jsf" value="#{bindings.ptb1}" id="pt1">
    When I deploy my application to the test weblogic server, the anonymous-role grants are not being respected. So even though I grant view access to the login JSF page to anonymous-role -- it appears that weblogic is trying to request a login for any page with a pageDef (including the login page). By re-creating the login page with no pageDef (a JSF page that does not use a page template) -- the login page is displayed (rather than entering into a loop).
    There is still a seperate issue with the anonymous-role grant not working as I would expect it to work that I will need to troubleshoot further.

  • Problem in PS5(11.1.1.6) with jspx page opening as popup

    I am trying to open a jspx page which contains af:table in a new window. Each time I open the window I am closing the window. After 3rd attempt the page is hanging to load the page.
    I was able to produce this issue in IE7, IE8 and IE9 but not firefox. In IE7, I was able to reproduce this issue in 3rd attempt but in IE9 it does happen after 7th or 8th attempt. Currently an SR is opened with Oracle Support.
    Any help will be appreciated.
    Version: PS5-11.1.1.6
    Integrated Weblogic Domain.
    This problem is not happening in PS4 (11.1.1.5).
    Steps:
    1. Create an ADF application with Jspx page and add a table. Open the page from html using a href tag with target="_blank".
    2. open the jspx page by clicking on the link in a new window. Close the popup window
    3. Repeat step 2. In IE7 3rd attempt the page will be keep on looping trying to render the page
    I have noticed below exception in the diagnostic logs
    [2013-05-23T11:39:27.599-05:00] [DefaultServer] [WARNING] [] [oracle.adf.controller.faces.lifecycle.Utils] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: anonymous] [ecid: aa5c8768ae0561d4:1267b2c4:13ed1c1d7d9:-8000-0000000000000b82,0] [APP: Application3] ADF: Adding the following JSF error message: java.lang.NullPointerException[[
    java.lang.NullPointerException
         at oracle.jbo.domain.TypeFactory.get(TypeFactory.java:558)
         at oracle.jbo.domain.TypeFactory.getInstance(TypeFactory.java:351)
         at oracle.adf.model.binding.DCMethodParameterDef.resolveParameterValue(DCMethodParameterDef.java:225)
         at oracle.adf.model.binding.DCMethodParameter.resolveParameterValue(DCMethodParameter.java:57)
         at oracle.adf.model.binding.DCInvokeMethod.fetchAndSaveParameterValues(DCInvokeMethod.java:325)
         at oracle.adf.model.binding.DCInvokeMethod.callMethod(DCInvokeMethod.java:239)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1635)
         at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:2150)
         at oracle.adf.model.bean.DCBeanDataControl.invokeOperation(DCBeanDataControl.java:469)
         at oracle.adf.model.adapter.AdapterDCService.invokeOperation(AdapterDCService.java:313)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:740)
         at oracle.jbo.uicli.binding.JUMethodIteratorDef$JUMethodIteratorBinding.invokeMethodAction(JUMethodIteratorDef.java:173)
         at oracle.jbo.uicli.binding.JUMethodIteratorDef$JUMethodIteratorBinding.initSourceRSI(JUMethodIteratorDef.java:656)
         at oracle.adf.model.binding.DCIteratorBinding.callInitSourceRSI(DCIteratorBinding.java:1672)
         at oracle.adf.model.binding.DCIteratorBinding.internalGetRowSetIterator(DCIteratorBinding.java:1645)
         at oracle.adf.model.binding.DCIteratorBinding.refresh(DCIteratorBinding.java:4395)
         at oracle.adf.model.binding.DCExecutableBinding.refreshIfNeeded(DCExecutableBinding.java:341)
         at oracle.adf.model.binding.DCIteratorBinding.getDeferredEstimatedRowCount(DCIteratorBinding.java:3752)
         at oracle.jbo.uicli.binding.JUCtrlRangeBinding.getDeferredEstimatedRowCount(JUCtrlRangeBinding.java:126)
         at oracle.adfinternal.view.faces.model.binding.RowDataManager._getRowCount(RowDataManager.java:523)
         at oracle.adfinternal.view.faces.model.binding.RowDataManager.getEstimatedRowCount(RowDataManager.java:321)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlHierBinding$FacesModel.getEstimatedRowCount(FacesCtrlHierBinding.java:747)
         at org.apache.myfaces.trinidad.component.UIXCollection.getEstimatedRowCount(UIXCollection.java:1298)
         at oracle.adfinternal.view.faces.renderkit.rich.table.BaseTableRenderer.getEstimatedRowCount(BaseTableRenderer.java:1793)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer.renderDataBlockRows(TableRenderer.java:1690)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer._renderSingleDataBlock(TableRenderer.java:1618)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer._handleDataFetch(TableRenderer.java:1020)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer.encodeAll(TableRenderer.java:506)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1396)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:341)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:767)
         at org.apache.myfaces.trinidad.component.UIXCollection.encodeEnd(UIXCollection.java:538)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:937)
         at oracle.adfinternal.view.faces.util.rich.InvokeOnComponentUtils$EncodeChildVisitCallback.visit(InvokeOnComponentUtils.java:113)
         at org.apache.myfaces.trinidadinternal.context.PartialVisitContext.invokeVisitCallback(PartialVisitContext.java:222)
         at org.apache.myfaces.trinidad.component.UIXIterator.visitTree(UIXIterator.java:251)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:443)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:326)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:443)
         at oracle.adf.view.rich.component.rich.RichDocument.visitTree(RichDocument.java:198)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:443)
         at oracle.adfinternal.view.faces.util.rich.InvokeOnComponentUtils.renderChild(InvokeOnComponentUtils.java:43)
         at oracle.adfinternal.view.faces.streaming.StreamingDataManager._pprComponent(StreamingDataManager.java:756)
         at oracle.adfinternal.view.faces.streaming.StreamingDataManager.execute(StreamingDataManager.java:525)
         at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._encodeStreamingResponse(DocumentRenderer.java:3606)
         at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:1508)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1396)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:341)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:767)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:937)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:933)
         at com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:266)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:197)
         at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:189)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:193)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:911)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:367)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:222)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)

    I would like to step back and would like to explain some details about the requirement.
    The original requirement is to integrate this application with one of our legacy application which uses jsp and html. We open webcenter portal page as a new window from the legacy application using javascript window.location. The business requirement is to keep the legacy page open and process the use case in webcenter portal page which contains table and popup components. So, the users of the legacy application will open the page in new window and as they complete each use case they close the browser and again open with new use case.
    Everything was perfectly working till we started all our applications to PS5. We started seeing above problem.
    I was able to narrow down the problem and found that the issue is causing because of using table and popup component on the page.
    oracle support just confirmed that this is happening only in PS5 and not in PS6.

Maybe you are looking for