101 Login Process - Page question

APEX version 3.2
DB version 9.2
Browser: Internet Explorer
I'm using the Application Express Authentication Scheme. The Page 101 Login Process calls wwv_flow_custom_auth_std.login(
    P_UNAME       => :P101_USERNAME,
    P_PASSWORD    => :P101_PASSWORD,
    P_SESSION_ID  => v('APP_SESSION'),
    P_FLOW_PAGE   => :APP_ID||':3'
    ); I'm setting Page 3 as the page to present once logged in, but it is always displaying Page 1. Why is that?
Thanks,
Violet

Under Application, Edit security Attributes check your home link, to make sure it has : f?p=&APP_ID.:3:&SESSION.
Thank you,
Tony Miller
Webster, TX
A lady came up to me on the street, pointed at my suede jacket and said "Do you know a cow was murdered to make that jacket?"
"I didn't know there were any witnesses", I replied " Now I'll have to kill you too"

Similar Messages

  • How does the Login process work?

    Hello,
    How exactly does the default 'Login' process on the login page work?
    When the following code is executed:
    wwv_flow_custom_auth_std.login(
    P_UNAME => :P1_USERNAME,
    P_PASSWORD => :P1_PASSWORD,
    P_SESSION_ID => v('APP_SESSION'),
    P_FLOW_PAGE => :APP_ID||':2'
    Does the execution continue to the code below or is it halted and the user is redirected to the flow page?
    I need to set the username and the user id (from SQL query WHERE username = :P1_USERNAME) ONLY IF the authentication has been successful, otherwise NULL them. What's the best way to do this?
    After the wwv_flow_custom_auth_std.login(...), how can I check if the user has been authenticated?
    Thanks :)
    Pavel

    hi pavel--
    wwv_flow_custom_auth_std.login sets :APP_USER and then redirects to p_flow_page upon successful login. when you say, "I need to set the username and the user id (from SQL query WHERE username = :P1_USERNAME) *ONLY IF* the authentication has been successful, otherwise NULL them" i'm guessing that you really want your user to not be logged in upon unsuccessful credential verification. if so, that would already be handled by wwv_flow_custom_auth_std. a good way to see this in action is to examine how the Sample Application handles authentication. the login page 101 does call wwv_flow_custom_auth_std with the supplied credentials, but if you don't pass the Authentication Function check specified in the Sample Application's custom authentication scheme, the session is still invalid, and the user is still on page 101. i'm pretty sure that's the behavior you want, but please clarify if not.
    thanks,
    raj

  • Login Process & Security of /etc/passwd and /etc/shadow

    Guys,
    I have few questions, Please help me out.
    1. What is the Solaris 8 and Solaris 9 environment's boot files ?
    2. While Logging into Solaris Operating Environment , which is file is responsible for Login Process ? Through which file/command the username and password is cross checked with /etc/passwd and /etc/shadow ?
    3. We all know that /etc/passwd come with -rw-r--r-- permission and /etc/shadow comes with -r--------. I did a chmod and assigned 000 to both the files. But Still I am able to change the password for the normal user. And as a root I am still able to cat the contents of both the files.
    Help me understand these concepts.
    Thank you.
    Arut

    Sounds like you're very new to Solaris:
    1. What is the Solaris 8 and Solaris 9 environment's boot files ?/kernel/genunix is the primary boot file. The directory structure in /kernel is also boot related. /usr/kernel is also boot related.
    2. While Logging into Solaris Operating Environment , which is file is responsible for Login Process ? Through which file/command the username and password is cross checked with /etc/passwd and /etc/shadow ?Generally three files are related: /etc/passwd, /etc/shadow, and the program /bin/login. Some applications will process /etc/passwd and /etc/shadow on their own and bypass /bin/login - but for you're purposes this is a good general answer.
    As a minor example (and if I remember correctly), say someone uses telnet to log into a system. Telnet prompts for the login ID. Once input, it passes forks off /bin/login with the login ID. /bin/login reads the user password information from /etc/shadow and takes the first two bytes from the password field (column 2 using : as field seperator) which is the crypt salt (see crypt man page). /bin/login prompts for the password which the user inputs. /bin/login takes the user input password and the salt value read from /etc/shadow for that user and pushes it through crypt. It then takes the resultant crypt output and compares it against what it read from /etc/shadow - if they matches the user has input the right password. If not, it prompts the user again with a password prompt.
    3. We all know that /etc/passwd come with -rw-r--r-- permission and /etc/shadow comes with -r--------. I did a chmod and assigned 000 to both the files. But Still I am able to change the password for the normal user. And as a root I am still able to cat the contents of both the files.To change your password you run the passwd command. That command is SUID root - so for a short period of time you become root within the context of that process. Root is basically god mode and doesn't care about file access priviledges generally. So that fact that /etc/passwd and /etc/shadow have 000 file access permissions doesn't matter - root can still read and write to them.

  • Problem with php processing page

    I am new to php and have created a form for my website online.  When testing upon submit the form goes to my email fine with all the fields coming in correct.  The problem I am having is the processing form is also sending a blank email along with the correct one and also i get at least one blank email a day.  I am not sure where I need to add something into my code or if it is just the users hitting submit without anything filled out. Also any tips and advice on how to prevent email injection would be much helpful. I have read up on this and not really sure where to add protection code. Thanks for the replies they will be much appreciated. 
    Here is the code from the php process page:
    <?php
    /* Subject and Email Variables */
    $emailSubject = 'Online Order';
    $webMaster = '[email protected]';
    /* Gathering Data Variables */
         $competition = $_POST['competition'];
         $product = $_POST['product'];
         $eventcitytwoField = $_POST['eventcitytwo'];
         $eventstateField = $_POST['eventstate'];
         $eventdateField = $_POST['eventdate'];
         $eventdatetwoField = $_POST['eventdatetwo'];
         $routineoneField = $_POST['routineone'];
         $routinetwoField = $_POST['routinetwo'];
         $routinethreeField = $_POST['routinethree'];
         $routinefourField = $_POST['routinefour'];
         $routinefiveField = $_POST['routinefive'];
         $routinesixField = $_POST['routinesix'];
         $firstnameField = $_POST['firstname'];
         $lastnameField = $_POST['lastname'];
         $phoneField = $_POST['phone'];
         $email = $_POST['email'];
         $shippingField = $_POST['shipping'];
         $shippingstateField = $_POST['shippingstate'];
         $zipcodeField = $_POST['zipcode'];
         $cctypeField = $_POST['cctype'];
         $ccnumberField = $_POST['ccnumber'];
         $expdateField = $_POST['expdate'];
         $expyearField = $_POST['expyear'];
         $billingaddressField = $_POST['billingaddress'];
         $billingcityField = $_POST['billingcity'];
         $billingstateField = $_POST['billingstate'];
         $billingzipField = $_POST['billingzip'];
         $commentsField = $_POST['comments'];
    $body = <<<EOD
    <br><hr><br>
    Competition: $competition <br>
    Product: $product <br>
    Event City: $eventcitytwo <br>
    Event State: $eventstate <br>
    Event Month: $eventdate <br>
    Event Day: $eventdatetwo <br>
    Routine One: $routineone <br>
    Routine Two: $routinetwo <br>
    Routine Three: $routinethree <br>
    Routine Four: $routinefour <br>
    Routine Five: $routinefive <br>
    Routine Six: $routinesix<br>
    First Name: $firstname <br>
    Last Name: $lastname <br>
    Email: $email <br>
    Phone Number: $phone <br>
    Shipping Address: $shipping <br>
    Shipping State: $shippingstate <br>
    Shipping Zip: $zipcode <br>
    Credit Card Type: $cctype <br>
    Credit Card Number: $ccnumber <br>
    Exp Month: $expdate<br>
    Exp Year: $expyear <br>
    Billing Address: $billingaddress <br>
    Billing City: $billingcity <br>
    Billing State: $billingstate <br>
    Billing Zipcode: $billingzip <br>
    Comments: $comments <br>
    EOD;
         $headers = "From: $email\r\n";
         $headers .= "Content-type: text/html\r\n";
         $success = mail($webMaster, $emailSubject, $body, $headers);

    You are not posting the data to a database, so you have fewer security concerns, but you SHOULD post to a database because as it is now, you probably have to re-enter all that data that comes in through the email. You can have the data sent to a database and then emailed in the same script.
    For form security, validate some fields using REGEX. The email address is an obvious one. You can also require that some fields be filled in, which will eliminate your blank submissions. Use CSS to hide a "dummy" field. Visitiors won't see it but spambots will see it and fill it out. Create a routine upon submission that rejects any submission that doesn't have that field blank. If you do change your form to post to a database, don't post to $_SERVER['PHP_SELF'] as that is not secure.
    You asked a big question and I just gave you some pointers above. Use the security forum at the following website for help with security issues:
    http://forums.devnetwork.net/index.php

  • Modify unbounded task flow for login process

    I wonder if I can use the unbounded task flow for login process. I have a login page, a home page and a change password page. As per the requirements, I need to show the login page first, if user password is expired, I need to show change password page, after user save the new password, I show the home page. If user password is not expired, then we go to home page directly.
    I have modified the unbound task flow adfc-config.xml. I have created a method call, which references a method in my managed bean to check the redirect page. I have created a router, which would go to change password page or the home page based on different outcomes. But the problem is, every time when I run the application, it always goes to the home page directly, even when the user password is already expired. I have set up break point at the checking redirect page method in my managed bean, looks like it never got called.
    Did I miss any steps here? Please advise. Thanks.

    A method is not a runnable object in your pageflow - so you can't start from it.
    You need to start from a page when your run your project.
    One option - convert your flow to be a bounded flow with the method as a default URL and then run it.
    See - https://blogs.oracle.com/shay/entry/passing_parameters_to_adf_appl

  • SQLServer Error: 258, Unable to complete login process due to delay in login response [SQLSTATE 08001]

    This is my first time submitting a question to this forum, so if I am in the wrong place please let me know.
    I am having a problem with one of my SQL 2008 (10.0.5826) servers. This is a virtual SQL server which has only been in production for the past 3 weeks.  It is a very strange problem for me because I never seen anything like this.  I am not sure
    if this is a potential SQL issue or ISS issue or application issue. I have posted some of the error messages below.
    SQL Server Log.
    Message
    Error: 18056, Severity: 20, State: 23.
    SQL Server Agent Log.
    Message
    [298] SQLServer Error: 258, Unable to complete login process due to delay in login response [SQLSTATE 08001]
    Message
    [165] ODBC Error: 0, Login timeout expired [SQLSTATE HYT00]
    Message
    [298] SQLServer Error: 258, Shared Memory Provider: Timeout error [258]. [SQLSTATE 08001]
    This is from the windows application log.
    Application has encountered an unhandled exception.
    Exception:
       Type:    System.Exception
       Source:  SII.ServerName.Data
       Target:  System.String GetConnectionString(SII.ServerName.Data.DatabaseConnection)
       Message: Unable to determine database connection.
       Stack trace:
       at SII.ServerName.Data.DatabaseConnector.GetConnectionString(DatabaseConnection databaseConnection)
       at SII.ServerName.Web.Services.WebServices.Global.Application_AuthenticateRequest(Object sender, EventArgs e)
       at System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
       at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
    Application has encountered an unhandled exception.
    Exception:
       Type:    System.Exception
       Source:  SII.ServerName.Data
       Target:  System.String GetConnectionString(SII.ServerName.Data.DatabaseConnection)
       Message: Unable to determine database connection.
       Stack trace:
       at SII.ServerName.Data.DatabaseConnector.GetConnectionString(DatabaseConnection databaseConnection)
       at SII.ServerName.Web.Services.WebServices.Global.Application_AuthenticateRequest(Object sender, EventArgs e)
       at System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
       at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
    Event code: 3005 
    Event message: An unhandled exception has occurred. 
    Event time: 3/18/2014 12:37:54 PM 
    Event time (UTC): 3/18/2014 4:37:54 PM 
    Event ID: 74be468c1bcf4606a2d045099d2feb79 
    Event sequence: 77 
    Event occurrence: 76 
    Event detail code: 0 

    Hello,
    Have a look at this connect Item.
    https://connect.microsoft.com/SQLServer/feedback/details/468478/sql-server-2008-periodically-does-not-accept-connections
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • Manually recreate login mobile page problem

    Hi!
    I have made an app with two interfaces Desktop and Mobile. After that I have created many pages in Desktop and Mobile part.
    By mistake I have deleted login mobile page and now I have a problem to recreate it.
    1) When I try to recreate login page in a standard way-all the time only login for desktop interface is created (no option to tell that I want for mobile interface).
    2) if I made mobile interface as default and then create new login-result is the same-desktop version is made, regardless.
    Then I come to idea to delete mobile interface and create it again. In that process I know that home and login pages are automatically created. But Apex doesn't allow me to delete interface when there is pages that depend on this interface. And to delete all pages in mobile just to create one page sound stupid to me.
    So is there any help to make that possible?
    rg,
    Damir Vadas
    http://damir-vadas.blogspot.com

    Scott,
    THX for your reply.
    Here is what seems to be the original threadThis is not true, this was related to other thread and this one is totally different, IMHO.
    Denis suggestion is Ok and it is working one, this is sure.
    I tried to get an app in the same state as yours (desktop & mobile ui but no mobile login page) and in page creation wizard I was asked for what interface I wished to create a login page.Here is mine picture of App builder create Login page wizzard (page reference http://xxx:8080/apex/f?p=4000:500:"):
    http://sites.google.com/site/vadasovi/temp/create_login_page_problem.png
    As you can see, there is no option that you are saying (choosing Interface) and this makes me confused.
    I'm not sure this is the appropriate forum if you're chasing an "official reply".Wrong term indeed. But if I cannot create ordinary page and have make things as export/import page then I think something is wrong. I could't believe that this is the only way to do this. This is why I need "second eye".
    And I'm glad about Christian respond which admit smaller strange things (icons and representation level) when you change alias name. If you read mine reply to him you'll see there is (in mine case at least) additional issues which I'm waiting to be confirmed or denial.
    Nothing more or less .... and once again apologize for term "official". Really was not adequate, and once again your reply is confirmation that second eye, you, was enough to look for some other problems that only I have.
    Hope now is more clear all.
    THX
    Damir Vadas
    http://damir-vadas.blogspot.com

  • 403 error redirects to login err page

    Does anyone out there know why an authenticated user tried to access a protected resource (which he has no permission to access) but OC4J redirected him to the login err page? It should display a "403 Forbidden" error. Thanks.

    I tried to deploy the JAZN demo (callerInfo) and found the same issue. When I clicked on "callerInfoA" link, it asked to sign in. I entered "developer" and "welcome" and it showed me the callerInfoA protected page. I then clicked on "callerInfoB" and expected to get an "unauthorized" error, but it actually asked me to sign in again. Now I understand this is either an Oracle bug or a default behavior of OC4J.
    My question is: can I work around this and show "Unauthorized" (401) or "Forbidden" (403) when I try to browse a protected resource which I has no access to?
    OC4J gurus: any ideas on this issue?
    Thanks.

  • Whenever I try to open a document pages gives me this message. I cannot work with this extremely important document now. What should I do? Process:         Pages [818] Path:            /Applications/Pages.app/Contents/MacOS/Pages Identifier:      com.appl

    Whenever I try to open a document pages gives me this message. I cannot work with this extremely important document now. What should I do? Please help me... 
    Process:         Pages [818]
    Path:            /Applications/Pages.app/Contents/MacOS/Pages
    Identifier:      com.apple.iWork.Pages
    Version:         5.1 (1769)
    Build Info:      Pages-1769000000000000~1
    App Item ID:     409201541
    App External ID: 289042884
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [144]
    Responsible:     Pages [818]
    User ID:         501
    Date/Time:       2014-02-09 22:13:54.209 +0200
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  399064A7-9AC8-6A66-8B11-37036F60D7A6
    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: 'character index out of bounds'
    terminating with uncaught exception of type NSException
    abort() called
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x00007fff90ec741c __exceptionPreprocess + 172
    1   libobjc.A.dylib                     0x00007fff9806be75 objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff90ec72cc +[NSException raise:format:] + 204
    3   Pages                               0x000000010dfe95d3 PagesConvertSandboxDocument + 4123996
    4   Pages                               0x000000010f1a27f0 PagesConvertSandboxDocument + 22708089
    5   Pages                               0x000000010f330239 PagesConvertSandboxDocument + 24336834
    6   Pages                               0x000000010f315b92 PagesConvertSandboxDocument + 24228635
    7   Pages                               0x000000010f1db522 PagesConvertSandboxDocument + 22940843
    8   Pages                               0x000000010f296157 PagesConvertSandboxDocument + 23705824
    9   Pages                               0x000000010f296c95 PagesConvertSandboxDocument + 23708702
    10  Pages                               0x000000010f2976d7 PagesConvertSandboxDocument + 23711328
    11  Pages                               0x000000010f28f7af PagesConvertSandboxDocument + 23678776
    12  Pages                               0x000000010ed88882 PagesConvertSandboxDocument + 18407435
    13  Pages                               0x000000010ed88905 PagesConvertSandboxDocument + 18407566
    14  Pages                               0x000000010eea41cb PagesConvertSandboxDocument + 19568980
    15  Pages                               0x000000010eea3910 PagesConvertSandboxDocument + 19566745
    16  Pages                               0x000000010eea18dd PagesConvertSandboxDocument + 19558502
    17  Pages                               0x000000010db9fabf Pages + 592575
    18  Pages                               0x000000010db13417 Pages + 17431
    19  Pages                               0x000000010db12b75 Pages + 15221
    20  AppKit                              0x00007fff9562b35c -[NSWindowController _windowDidLoad] + 450
    21  AppKit                              0x00007fff95612076 -[NSWindowController window] + 110
    22  Pages                               0x000000010e27d543 PagesConvertSandboxDocument + 6827212
    23  Pages                               0x000000010e273901 PagesConvertSandboxDocument + 6787210
    24  AppKit                              0x00007fff9566e567 -[NSDocument addWindowController:] + 228
    25  Pages                               0x000000010e25aee2 PagesConvertSandboxDocument + 6686315
    26  AppKit                              0x00007fff95844af0 __80-[NSDocumentController openDocumentWithContentsOfURL:display:completionHandler:]_block_invoke855 + 185
    27  AppKit                              0x00007fff958447e7 __80-[NSDocumentController openDocumentWithContentsOfURL:display:completionHandler:]_block_invoke_3841 + 24
    28  libdispatch.dylib                   0x00007fff936a51d7 _dispatch_call_block_and_release + 12
    29  libdispatch.dylib                   0x00007fff936a22ad _dispatch_client_callout + 8
    30  libdispatch.dylib                   0x00007fff936a9f03 _dispatch_main_queue_callback_4CF + 333
    31  CoreFoundation                      0x00007fff90e2e839 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
    32  CoreFoundation                      0x00007fff90de9b14 __CFRunLoopRun + 1636
    33  CoreFoundation                      0x00007fff90de9275 CFRunLoopRunSpecific + 309
    34  HIToolbox                           0x00007fff8cfc9f0d RunCurrentEventLoopInMode + 226
    35  HIToolbox                           0x00007fff8cfc9cb7 ReceiveNextEventCommon + 479
    36  HIToolbox                           0x00007fff8cfc9abc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    37  AppKit                              0x00007fff9539628e _DPSNextEvent + 1434
    38  AppKit                              0x00007fff953958db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    39  AppKit                              0x00007fff953899cc -[NSApplication run] + 553
    40  AppKit                              0x00007fff95374803 NSApplicationMain + 940
    41  Pages                               0x000000010db1b811 Pages + 51217
    42  libdyld.dylib                       0x00007fff93e305fd start + 1
    43  ???                                 0x0000000000000001 0x0 + 1
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff93e25866 __pthread_kill + 10
    1   libsystem_pthread.dylib                 0x00007fff9805835c pthread_kill + 92
    2   libsystem_c.dylib                       0x00007fff9107ebba abort + 125
    3   libc++abi.dylib                         0x00007fff96d4b141 abort_message + 257
    4   libc++abi.dylib                         0x00007fff96d70abc default_terminate_handler() + 264
    5   libobjc.A.dylib                         0x00007fff9806c30d _objc_terminate() + 103
    6   libc++abi.dylib                         0x00007fff96d6e3e1 std::__terminate(void (*)()) + 8
    7   libc++abi.dylib                         0x00007fff96d6e456 std::terminate() + 54
    8   libobjc.A.dylib                         0x00007fff9806c0b0 objc_terminate + 9
    9   libdispatch.dylib                       0x00007fff936a22c1 _dispatch_client_callout + 28
    10  libdispatch.dylib                       0x00007fff936a9f03 _dispatch_main_queue_callback_4CF + 333
    11  com.apple.CoreFoundation                0x00007fff90e2e839 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
    12  com.apple.CoreFoundation                0x00007fff90de9b14 __CFRunLoopRun + 1636
    13  com.apple.CoreFoundation                0x00007fff90de9275 CFRunLoopRunSpecific + 309
    14  com.apple.HIToolbox                     0x00007fff8cfc9f0d RunCurrentEventLoopInMode + 226
    15  com.apple.HIToolbox                     0x00007fff8cfc9cb7 ReceiveNextEventCommon + 479
    16  com.apple.HIToolbox                     0x00007fff8cfc9abc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    17  com.apple.AppKit                        0x00007fff9539628e _DPSNextEvent + 1434
    18  com.apple.AppKit                        0x00007fff953958db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    19  com.apple.AppKit                        0x00007fff953899cc -[NSApplication run] + 553
    20  com.apple.AppKit                        0x00007fff95374803 NSApplicationMain + 940
    21  com.apple.iWork.Pages                   0x000000010db1b811 0x10db0f000 + 51217
    22  libdyld.dylib                           0x00007fff93e305fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff93e26662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff936a443d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff936a4152 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff93e21a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff93e20d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff90dea315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff90de9939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff90de9275 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00007fff955361ce _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00007fff98057899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff9805772a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff9805bfc9 thread_start + 13
    Thread 3:: Recalculation control thread
    0   libsystem_kernel.dylib                  0x00007fff93e25716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff98059c3b _pthread_cond_wait + 727
    2   com.apple.iWork.Pages                   0x000000010e7b7555 0x10db0f000 + 13272405
    3   com.apple.iWork.Pages                   0x000000010e7bcfb8 0x10db0f000 + 13295544
    4   libsystem_pthread.dylib                 0x00007fff98057899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff9805772a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff9805bfc9 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff93e25e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff98058f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff9805bfb9 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff93e25e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff98058f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff9805bfb9 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff93e25e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff98058f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff9805bfb9 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff93e25e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff98058f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff9805bfb9 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff93e25e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff98058f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff9805bfb9 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff93e25e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff98058f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff9805bfb9 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff93e25e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff98058f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff9805bfb9 start_wqthread + 13
    Thread 11:: Recalculation control thread
    0   libsystem_kernel.dylib                  0x00007fff93e25716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff98059c3b _pthread_cond_wait + 727
    2   com.apple.iWork.Pages                   0x000000010e7b7555 0x10db0f000 + 13272405
    3   com.apple.iWork.Pages                   0x000000010e7bcfb8 0x10db0f000 + 13295544
    4   libsystem_pthread.dylib                 0x00007fff98057899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff9805772a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff9805bfc9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff7e954310  rcx: 0x00007fff520eee78  rdx: 0x0000000000000000
      rdi: 0x0000000000000707  rsi: 0x0000000000000006  rbp: 0x00007fff520eeea0  rsp: 0x00007fff520eee78
       r8: 0x00007fff96d71ab4   r9: 0x00007fff910a6900  r10: 0x0000000008000000  r11: 0x0000000000000206
      r12: 0x00007fff520ef000  r13: 0x00007fff520ef4d0  r14: 0x0000000000000006  r15: 0x00007fff520eeee0
      rip: 0x00007fff93e25866  rfl: 0x0000000000000206  cr2: 0x0000000111bf3000
    Logical CPU:     0
    Error Code:      0x02000148
    Trap Number:     133
    Binary Images:
           0x10db0f000 -        0x10f9c2ff7  com.apple.iWork.Pages (5.1 - 1769) <4743D904-40A6-3A6F-ABC9-008952252477> /Applications/Pages.app/Contents/MacOS/Pages
           0x1101ce000 -        0x1101e1fff  com.apple.MediaLibrary (1.0 - 637) <CB99F701-D188-34A1-A53B-0331A352C8A3> /System/Library/Frameworks/MediaLibrary.framework/Versions/A/MediaLibrary
           0x113b05000 -        0x113b06ff4 +cl_kernels (???) <DC4D97AD-4D50-48A9-8AF9-75534DE75E3B> cl_kernels
           0x113b13000 -        0x113b13ff9 +cl_kernels (???) <A530A685-47AC-4FAD-82DC-17D3CF278059> cl_kernels
           0x11caf5000 -        0x11cbdbfef  unorm8_bgra.dylib (2.3.58) <9FF943D1-4EF7-36CA-852D-B61C2E554713> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x11d81c000 -        0x11d81cfff +cl_kernels (???) <94345083-F3E4-4934-B1E0-3ED4D8933A2A> cl_kernels
           0x11d936000 -        0x11da16ff7  unorm8_rgba.dylib (2.3.58) <DDD1AFEB-FD30-34D2-958A-823C3EFD649A> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib
           0x11dbe4000 -        0x11dbe4ffd +cl_kernels (???) <51071888-F028-4743-97D5-866EE6A11D94> cl_kernels
        0x7fff606c7000 -     0x7fff606fa817  dyld (239.3) <D1DFCF3F-0B0C-332A-BCC0-87A851B570FF> /usr/lib/dyld
        0x7fff8c4d8000 -     0x7fff8c4dbffa  libCGXType.A.dylib (599.7) <2FC9C2BC-B5C5-3C27-93F9-51C6C4512E9D> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
        0x7fff8c4dc000 -     0x7fff8c4ddff7  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
        0x7fff8c4de000 -     0x7fff8c4defff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8c4df000 -     0x7fff8c4e1fff  com.apple.marco (10.0 - 1000) <FC7EF8C7-5EDF-3720-BAEC-281F12A7A3F8> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
        0x7fff8c4e2000 -     0x7fff8c4e4fff  libRadiance.dylib (1038) <55F99274-5074-3C73-BAC5-AF234E71CF38> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8c4e5000 -     0x7fff8c4effff  com.apple.AppSandbox (3.0 - 1) <55717299-8164-3D79-918F-BD64706735CF> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff8c503000 -     0x7fff8c504ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8c505000 -     0x7fff8c58dff7  com.apple.CorePDF (4.0 - 4) <92D15ED1-D2E1-3ECB-93FF-42888219A99F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff8cf3b000 -     0x7fff8cf9afff  com.apple.framework.CoreWLAN (4.0 - 400.45.1) <775F9444-8059-30A2-8058-7F7ACD68CCF1> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8cf9b000 -     0x7fff8d245ffd  com.apple.HIToolbox (2.1 - 696) <1CFFF37B-C392-3088-B0A4-C08C55B2AF8F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8d2cd000 -     0x7fff8d30fff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
        0x7fff8d310000 -     0x7fff8d355ff7  libcurl.4.dylib (78) <A722B4F0-1F6C-3E16-9CB1-4C6ADC15221E> /usr/lib/libcurl.4.dylib
        0x7fff8d427000 -     0x7fff8d48bff3  com.apple.datadetectorscore (5.0 - 354.0) <9ACF24B8-3268-3134-A5BC-D72C9371A195> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8d499000 -     0x7fff8d59efff  com.apple.ImageIO.framework (3.3.0 - 1038) <2C058216-C6D8-3380-A7EA-92A3F04520C1> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff8d59f000 -     0x7fff8d5c9ff7  libsandbox.1.dylib (278.10) <B4183FA8-F7E2-3301-8BF9-0EEFB793A5D5> /usr/lib/libsandbox.1.dylib
        0x7fff8d7bb000 -     0x7fff8d92bff6  com.apple.CFNetwork (673.0.3 - 673.0.3) <42CFC3DB-35C8-3652-AF37-4BCC73D8BDEF> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff8d92c000 -     0x7fff8d984ff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8d9a4000 -     0x7fff8d9a8fff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8d9ac000 -     0x7fff8d9e6ff3  com.apple.bom (12.0 - 192) <989690DB-B9CC-3DB5-89AE-B5D33EDC474E> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8d9e7000 -     0x7fff8d9eefff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8da35000 -     0x7fff8da35fff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8da74000 -     0x7fff8da7cffc  libGFXShared.dylib (9.0.83) <11A621C3-37A0-39CE-A69B-8739021BD79D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8da7d000 -     0x7fff8dbb3ffa  com.apple.WebKit (9537 - 9537.73.11) <5F583526-8D71-30AD-B97C-56EC51E94E85> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff8dbb7000 -     0x7fff8dc52ff7  com.apple.PDFKit (2.9 - 2.9) <AD968A31-6567-30A7-A699-154C88DB56D0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8dc56000 -     0x7fff8dc6dfff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <3FB4D5FE-860B-3BDE-BAE2-3531D919EF10> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8dc6e000 -     0x7fff8dc95ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
        0x7fff8dcec000 -     0x7fff8dceffff  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
        0x7fff8dd86000 -     0x7fff8de77ff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
        0x7fff8dece000 -     0x7fff8df1bfff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <D01B7D87-4BDC-3E48-A79B-951D05075F9D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8df9a000 -     0x7fff8e0dafff  com.apple.QTKit (7.7.3 - 2826.0.1) <44109489-09C2-34C4-AB66-E52A505D7887> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8e194000 -     0x7fff8e1a5ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
        0x7fff8e1a6000 -     0x7fff8e204ff7  com.apple.corelocation (1486.17 - 1486.24) <9FBB29F0-E000-3190-A96C-9EAA5CCCA2A0> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff8eac9000 -     0x7fff8edc8fff  com.apple.Foundation (6.9 - 1056) <D608EDFD-9634-3573-9B7E-081C7D085F7A> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8ee21000 -     0x7fff8ee5aff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8ee5b000 -     0x7fff8ee71fff  com.apple.CoreMediaAuthoring (2.2 - 947) <B01FBACC-DDD5-30A8-BCCF-57CE24ABA329> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff8eed5000 -     0x7fff8ef72fff  com.apple.imcore (10.0 - 1000) <027E09B4-B4B6-3710-8806-B4CE41DF3242> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
        0x7fff8ef73000 -     0x7fff8efb4fff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8efb5000 -     0x7fff8f289fc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8f28a000 -     0x7fff8f6bdffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff8fd64000 -     0x7fff8fd93fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
        0x7fff8fd94000 -     0x7fff8fd95ff7  libSystem.B.dylib (1197.1.1) <BFC0DC97-46C6-3BE0-9983-54A98734897A> /usr/lib/libSystem.B.dylib
        0x7fff8fd96000 -     0x7fff901e4fff  com.apple.VideoToolbox (1.0 - 1273.29) <6E38291D-7A81-3033-AFB9-61ABD38B6371> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff90cff000 -     0x7fff90d5fff2  com.apple.CoreUtils (1.9 - 190.4) <CBB5B4DC-2801-32B3-A31C-8811CCF99873> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff90d79000 -     0x7fff90f5eff7  com.apple.CoreFoundation (6.9 - 855.11) <E22C6A1F-8996-349C-905E-96C3BBE07C2F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff90f5f000 -     0x7fff90f68ffb  libCGInterfaces.dylib (271) <68EFBEFE-7506-3235-99A2-5B69EDBFD7B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/Resources/libCGInterfaces.dylib
        0x7fff90f69000 -     0x7fff91021ff7  com.apple.DiscRecording (8.0 - 8000.4.6) <CDAAAD04-A1D0-3C67-ABCC-EFC9E8D44E7E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff91022000 -     0x7fff910abff7  libsystem_c.dylib (997.1.1) <61833FAA-7281-3FF9-937F-686B6F20427C> /usr/lib/system/libsystem_c.dylib
        0x7fff910ac000 -     0x7fff910acffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <6E89F3CB-CC41-3728-9F9A-FDFC151E8261> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff910ad000 -     0x7fff911cfff1  com.apple.avfoundation (2.0 - 651.12) <03E595B7-A559-3D4D-90E9-BCA603E3A39E> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff9126c000 -     0x7fff9126eff7  com.apple.securityhi (9.0 - 55005) <405E2BC6-2B6F-3B6B-B48E-2FD39214F052> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff9126f000 -     0x7fff91280ff7  com.apple.idsfoundation (10.0 - 1000) <0BC25100-092B-3C5A-8245-F7C963380785> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundat ion
        0x7fff912a5000 -     0x7fff91367ff1  com.apple.CoreText (352.0 - 367.15) <E5C70FC8-C861-39B8-A491-595E5B55CFC8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff91368000 -     0x7fff9138fff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
        0x7fff91390000 -     0x7fff916aaff7  com.apple.MediaToolbox (1.0 - 1273.29) <6260E68B-7E50-3D49-8C0A-7145614C13D8> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff916c4000 -     0x7fff91724fff  com.apple.ISSupport (1.9.9 - 57) <E1E343D7-222C-3458-9D1F-FC600B7F1C50> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff91729000 -     0x7fff9173bfff  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
        0x7fff91749000 -     0x7fff9179aff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff9179b000 -     0x7fff9179bfff  com.apple.quartzframework (1.5 - 1.5) <3B2A72DB-39FC-3C5B-98BE-605F37777F37> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff9179c000 -     0x7fff918ccff7  com.apple.desktopservices (1.8 - 1.8) <09DC9BB8-432F-3C7A-BB08-956A2DDFC2DE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff918e0000 -     0x7fff918efff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff91908000 -     0x7fff91e2cfff  com.apple.QuartzComposer (5.1 - 316) <B20E93C3-8517-3E5C-83B6-C312C839C5D0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff91e2d000 -     0x7fff9208eff7  com.apple.imageKit (2.5 - 770) <33BCF627-EB1A-3CC1-98AB-2324B6DFB329> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff9208f000 -     0x7fff92edcffb  com.apple.WebCore (9537 - 9537.73.13) <A468175D-078A-3377-A883-0BC5C8A4339F> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff92edd000 -     0x7fff92edfff3  libsystem_configuration.dylib (596.12) <C4F633D9-94C8-35D9-BB2D-84C5122533C7> /usr/lib/system/libsystem_configuration.dylib
        0x7fff92ee0000 -     0x7fff93138ff1  com.apple.security (7.0 - 55471) <233831C5-C457-3AD5-AFE7-E3E2DE6929C9> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff93139000 -     0x7fff9313bff7  com.apple.diagnosticlogcollection (10.0 - 1000) <5CA6D8A2-DEA6-33C3-91BC-F3B076C0500B> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/ DiagnosticLogCollection
        0x7fff9313c000 -     0x7fff93146ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff93147000 -     0x7fff93147ffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff93148000 -     0x7fff93177fff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff93178000 -     0x7fff93179ffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
        0x7fff9317a000 -     0x7fff9317bfff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
        0x7fff9317c000 -     0x7fff93183ff7  liblaunch.dylib (842.1.4) <FCBF0A02-0B06-3F97-9248-5062A9DEB32C> /usr/lib/system/liblaunch.dylib
        0x7fff93184000 -     0x7fff931b5ff7  libTrueTypeScaler.dylib (111.1) <697E72D0-8D79-3BB7-8AF5-46875AC9A4BC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff931b6000 -     0x7fff93209fff  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
        0x7fff9320a000 -     0x7fff9320bfff  com.apple.AddressBook.ContactsData (8.0 - 1365) <61090508-4CC3-3F57-9B0C-D8527947D35D> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
        0x7fff93226000 -     0x7fff93234fff  com.apple.opengl (9.0.83 - 9.0.83) <AF467644-7B1D-327A-AC47-CECFCAF61990> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff9339c000 -     0x7fff933a0fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
        0x7fff933a1000 -     0x7fff933a3ffb  libutil.dylib (34) <DAC4A6CF-A1BB-3874-9569-A919316D30E8> /usr/lib/libutil.dylib
        0x7fff933a4000 -     0x7fff933aeff7  com.apple.ProtocolBuffer (1 - 182.1.3) <82E68598-A8AA-3AF1-843E-2A64F19472D4> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff933dc000 -     0x7fff9366dff7  com.apple.RawCamera.bundle (5.03 - 729) <DBA059CC-E78F-356F-B435-DA62A746F4D4> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff9366e000 -     0x7fff93676fff  libsystem_dnssd.dylib (522.1.11) <270DCF6C-502D-389A-AA9F-DE4624A36FF7> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff93677000 -     0x7fff93684ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
        0x7fff93685000 -     0x7fff936a0ff7  libPng.dylib (1038) <EF781AF8-C2E6-3179-B8A1-A584783070F1> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff936a1000 -     0x7fff936bbfff  libdispatch.dylib (339.1.9) <46878A5B-4248-3057-962C-6D4A235EEF31> /usr/lib/system/libdispatch.dylib
        0x7fff936bc000 -     0x7fff93a32ffa  com.apple.JavaScriptCore (9537 - 9537.73.10) <4A4AE781-6F76-3412-B0E5-67E0BAEE22A2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff93a59000 -     0x7fff93a5eff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
        0x7fff93a5f000 -     0x7fff93a60fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff93a61000 -     0x7fff93a62fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
        0x7fff93aae000 -     0x7fff93ab1fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff93ab2000 -     0x7fff93c4eff7  com.apple.QuartzCore (1.8 - 332.0) <994D1E0A-64B6-398C-B9A2-C362F02DE943> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff93c4f000 -     0x7fff93c9bffe  com.apple.CoreMediaIO (401.0 - 4544) <44EBC0FE-DAD5-3711-96CB-05250F350A16> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff93c9d000 -     0x7fff93cebfff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
        0x7fff93e10000 -     0x7fff93e2cff7  libsystem_kernel.dylib (2422.1.72) <D14913DB-47F1-3591-8DAF-D4B4EF5F8818> /usr/lib/system/libsystem_kernel.dylib
        0x7fff93e2d000 -     0x7fff93e30ff7  libdyld.dylib (239.3) <62F4D752-4089-31A8-8B73-B95A68893B3C> /usr/lib/system/libdyld.dylib
        0x7fff940cc000 -     0x7fff940d5ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
        0x7fff940dc000 -     0x7fff940dcfff  com.apple.AOSMigrate (1.0 - 1) <ABA8F3F2-BC96-3F89-AAF4-1AA459A0BCBD> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
        0x7fff940df000 -     0x7fff94128fff  com.apple.CoreMedia (1.0 - 1273.29) <4ACD30BA-E9FE-3842-A8B7-E3BD63747867> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff94164000 -     0x7fff94193ff7  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <404369C0-ED9F-3010-8D2F-BC55285F7808> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff94194000 -     0x7fff94194fff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff943da000 -     0x7fff943defff  libsystem_stats.dylib (93.1.26) <B9E26A9E-FBBC-3938-B8B7-6CF7CA8C99AD> /usr/lib/system/libsystem_stats.dylib
        0x7fff943df000 -     0x7fff9446efff  com.apple.Metadata (10.7.0 - 800.12.2) <A9F5D471-8732-3F95-A4A2-33864B92A181> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff9446f000 -     0x7fff944a3fff  libssl.0.9.8.dylib (50) <B15F967C-B002-36C2-9621-3456D8509F50> /usr/lib/libssl.0.9.8.dylib
        0x7fff944c0000 -     0x7fff944d8ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff944df000 -     0x7fff9451efff  libGLU.dylib (9.0.83) <8B457205-513B-3477-AE9C-3AD979D5FE11> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff9451f000 -     0x7fff94521fff  com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff94522000 -     0x7fff9452fff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff9454c000 -     0x7fff94559fff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff9455a000 -     0x7fff945a1ff7  libcups.2.dylib (372) <348EED62-6C20-35D6-8EFB-E80943965100> /usr/lib/libcups.2.dylib
        0x7fff945c9000 -     0x7fff945d3fff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
        0x7fff945d4000 -     0x7fff945e5ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
        0x7fff945e6000 -     0x7fff945e7ffb  libScreenReader.dylib (333.2) <0172E6E2-9D4B-36BF-81DC-428FF0668E78> /usr/lib/libScreenReader.dylib
        0x7fff945e8000 -     0x7fff94698ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff94827000 -     0x7fff9488dfff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff948b1000 -     0x7fff94982ff7  com.apple.QuickLookUIFramework (5.0 - 622.3) <9741E66B-3978-35F6-8846-B6C528945611> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff94983000 -     0x7fff9529f05f  com.apple.CoreGraphics (1.600.0 - 599.7) <7D0FD5A7-A061-39BA-8E00-723825D2C4DD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff952a0000 -     0x7fff952a2fff  com.apple.EFILogin (2.0 - 2) <C360E8AF-E9BB-3BBA-9DF0-57A92CEF00D4> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff952a3000 -     0x7fff952a3fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff952a4000 -     0x7fff95308ff9  com.apple.Heimdal (4.0 - 2.0) <E7D20A4D-4674-37E1-A949-635FFF7C439A> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff9535e000 -     0x7fff95371ff7  com.apple.AppContainer (3.0 - 1) <A90C058D-46E8-3BAB-AF17-AF9C7C273069> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
        0x7fff95372000 -     0x7fff95ee6ff7  com.apple.AppKit (6.9 - 1265) <0E9FC8BF-DA3C-34C5-91CC-12BC922B5F01> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff95f71000 -     0x7fff95f7afff  com.apple.DisplayServicesFW (2.8 - 360.8.14) <816A9CED-1BC0-3C76-8103-1B9BE0F723BB> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff95f8b000 -     0x7fff95fd9fff  com.apple.opencl (2.3.57 - 2.3.57) <FC03A80D-543A-3448-83FF-D399C3A240D9> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff95fda000 -     0x7fff95feafff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
        0x7fff95ffa000 -     0x7fff962c8ff4  com.apple.CoreImage (9.0.54) <74BB8685-69A9-3A45-8DED-EA26BD39D710> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff962c9000 -     0x7fff96394fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff96397000 -     0x7fff96907fff  com.apple.CoreAUC (6.22.08 - 6.22.08) <F306D552-2220-3160-88EA-C916193C5EFD> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff96908000 -     0x7fff9690cff7  libheimdal-asn1.dylib (323.12) <063A01C2-E547-39D9-BB42-4CC8E64ADE70> /usr/lib/libheimdal-asn1.dylib
        0x7fff9690d000 -     0x7fff96918ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff96919000 -     0x7fff96934ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
        0x7fff96944000 -     0x7fff9697cff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff9697d000 -     0x7fff969a2ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff969a3000 -     0x7fff969cffff  com.apple.CoreServicesInternal (184.8 - 184.8) <707E05AE-DDA8-36FD-B0FF-7F15A061B46A> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff969d0000 -     0x7fff969ecfff  com.apple.frameworks.preferencepanes (16.0 - 16.0) <059E99D8-67C2-3B59-B5E7-850DD7A92D75> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff969ed000 -     0x7fff96a04ffa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff96a24000 -     0x7fff96a24fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff96a25000 -     0x7fff96a28fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff96a29000 -     0x7fff96a34fff  libGL.dylib (9.0.83) <984A960A-C159-3AE5-8B40-E2B451F6C712> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff96a35000 -     0x7fff96c7dfff  com.apple.CoreData (107 - 481) <E5AFBA07-F73E-3B3F-9099-F51224EE8EAD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff96c85000 -     0x7fff96c8fff7  com.apple.CrashReporterSupport (10.9 - 538) <B487466B-3AA1-3854-A808-A61F049FA794> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff96d4a000 -     0x7fff96d73ff7  libc++abi.dylib (48) <8C16158F-CBF8-3BD7-BEF4-022704B2A326> /usr/lib/libc++abi.dylib
        0x7fff96d74000 -     0x7fff96db9ff6  com.apple.HIServices (1.22 - 466) <21807AF8-3BC7-32BB-AB96-7C35CB59D7F6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff96dba000 -     0x7fff96e46ff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff96efc000 -     0x7fff96fe0fff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff96fe1000 -     0x7fff97009ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
        0x7fff9700a000 -     0x7fff9700cff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
        0x7fff9700d000 -     0x7fff97016fff  com.apple.speech.synthesis.framework (4.6.2 - 4.6.2) <0AAE45F0-FC6E-36B6-A6A7-73E6950A74AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff97017000 -     0x7fff97017ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
        0x7fff97071000 -     0x7fff972b4fff  com.apple.AddressBook.framework (8.0 - 1365) <816242B1-D45E-3B5D-BC98-BB23458D5367> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff972b5000 -     0x7fff972d9fff  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
        0x7fff972da000 -     0x7fff97492ff3  libicucore.A.dylib (511.27) <003B6C21-CBD1-3486-9A1D-030ADF5FA061> /usr/lib/libicucore.A.dylib
        0x7fff97493000 -     0x7fff974e0ff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff974e1000 -     0x7fff978c2ffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff978c3000 -     0x7fff978f3fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff978f4000 -     0x7fff978f9fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
        0x7fff978fa000 -     0x7fff97903fff  com.apple.CommonAuth (4.0 - 2.0) <1D263127-5F27-3128-996D-7397660D0C6E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff97904000 -     0x7fff97956fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
        0x7fff97960000 -     0x7fff9799eff7  libGLImage.dylib (9.0.83) <C08048A7-03CC-3E40-BCDC-7791D87AC8E4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff979e4000 -     0x7fff979eeff7  libcsfde.dylib (380) <3A54B430-EC05-3DE9-86C3-00C1BEAC7F9B> /usr/lib/libcsfde.dylib
        0x7fff97a45000 -     0x7fff97b34fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff97b35000 -     0x7fff97b37ff7  com.apple.SecCodeWrapper (3.0 - 1) <F5107AD0-20CD-328C-8B2E-74CB6F3169F6> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff97b38000 -     0x7fff97b53ff7  libsystem_malloc.dylib (23.1.10) <FFE5C472-B23A-318A-85BF-77CDE61900D1> /usr/lib/system/libsystem_malloc.dylib
        0x7fff97b61000 -     0x7fff97b69ff3  libCGCMS.A.dylib (599.7) <92AA4E85-7633-36E2-BAD0-7B1A2E48E75C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff97b6a000 -     0x7fff97b77ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
        0x7fff97b78000 -     0x7fff97bd5fff  com.apple.imfoundation (10.0 - 1000) <122D84B9-871D-3885-9D8D-840CD529028F> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
        0x7fff97bd6000 -     0x7fff97bdcfff  com.apple.AddressBook.ContactsFoundation (8.0 - 1365) <CFB1A744-8096-3FAB-B55E-2E6C410A0376> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
        0x7fff97bdd000 -     0x7fff97bf5ff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff97bf6000 -     0x7fff97bfbfff  com.apple.DiskArbitration (2.6 - 2.6) <F8A47F61-83D1-3F92-B7A8-A169E0D187C0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff97bfc000 -     0x7fff97c04ff7  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
        0x7fff97c14000 -     0x7fff97c41ff2  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <43A137C4-3E72-37DC-945F-92569C12AAD4> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff97c42000 -     0x7fff97c4dff7  com.apple.DirectoryService.Framework (10.9 - 173.1.1) <F8566D1F-450F-3571-911F-75C68E45919F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff97c4e000 -     0x7fff97c6bfff  com.apple.facetimeservices (10.0 - 1000) <9B4815BA-4305-381D-A178-F79E10B2C6E9> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
        0x7fff97c6c000 -     0x7fff97d5afff  libJP2.dylib (1038) <6C8179F5-8063-3ED6-A7C2-D5603DECDF28> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff97d64000 -     0x7fff97d95ff7  libtidy.A.dylib (15.12) <BF757E3C-733A-3B6B-809A-A3949D46466E> /usr/lib/libtidy.A.dylib
        0x7fff97d96000 -     0x7fff97dafff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff97e4d000 -     0x7fff97e50ffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff97e51000 -     0x7fff97ec8fff  com.apple.CoreServices.OSServices (600.4 - 600.4) <36B2B009-C35E-3F21-824E-E0D00E7808C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff97ec9000 -     0x7fff97ecbfff  libCVMSPluginSupport.dylib (9.0.83) <E2AED858-6EEB-36C6-8C06-C3CF649A3CD5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff97ecc000 -     0x7fff97f3fffb  com.apple.securityfoundation (6.0 - 55122) <119D1C53-B292-3378-AEE1-A3B1FB02F43F> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff97fb2000 -     0x7fff97fb9fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
        0x7fff97fba000 -     0x7fff97fc2fff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
        0x7fff97fc3000 -     0x7fff97fd3ffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
        0x7fff97fd4000 -     0x7fff9801ffff  com.apple.ImageCaptureCore (5.0 - 5.0) <F529EDDC-E2F5-30CA-9938-AF23296B5C5B> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff98020000 -     0x7fff98055ffc  com.apple.LDAPFramework (2.4.28 - 194.5) <7E31A674-C6AB-33BE-BD5E-F5E3C6E22894> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff98056000 -     0x7fff9805dff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
        0x7fff9805e000 -     0x7fff9820bf27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
        0x7fff982a0000 -     0x7fff98369fff  com.apple.LaunchServices (572.23 - 572.23) <8D955BDE-2C4C-3DD4-B4D7-2D916174FE1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff9836a000 -     0x7fff98375fff  libkxld.dylib (2422.1.72) <C88EF3E6-B31F-3E12-BE9B-562D912BA733> /usr/lib/system/libkxld.dylib
        0x7fff98376000 -     0x7fff983cffff  libTIFF.dylib (1038) <5CBFE0C2-9DD8-340B-BA63-A94CE2E476F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff983d0000 -     0x7fff984b7ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
        0x7fff984c2000 -     0x7fff984e6ff7  libJPEG.dylib (1038) <86F349A8-882D-3326-A0B0-63257F68B1A7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff984e7000 -     0x7fff98500ff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff98501000 -     0x7fff98525fff  libxpc.dylib (300.1.17) <4554927A-9467-365C-91F1-5A116989DD7F> /usr/lib/system/libxpc.dylib
        0x7fff98526000 -     0x7fff98550ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
        0x7fff9856b000 -     0x7fff98577ff7  com.apple.OpenDirectory (10.9 - 173.1.1) <6B78BD7B-5622-38E6-8FC6-86A117E3ACCA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff98578000 -     0x7fff98581ff7  libcldcpuengine.dylib (2.3.58) <A2E1ED7B-FC7E-31F6-830A-FF917689766B> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
        0x7fff98582000 -     0x7fff9858aff7  com.apple.AppleSRP (5.0 - 1) <ABC7F088-1FD5-3768-B9F3-847F355E90B3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff9858b000 -     0x7fff9881cff7  com.apple.AOSKit (1.06 - 176) <35525B2F-B02F-31FD-A3B2-FD6AE6D32C11> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff98822000 -     0x7fff989ddff6  com.apple.GeoServices (1.0 - 702.14.9) <A3A4D6AC-72B2-39F3-AAE0-9AF3B88C5C8E> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff989de000 -     0x7fff98a2dff7  com.apple.framework.internetaccounts (2.1 - 210) <C77069C7-928C-315C-AA61-D90543901F20> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff98a42000 -     0x7fff98a49ff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
        0x7fff98a4a000 -     0x7fff98a4eff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
        0x7fff98a4f000 -     0x7fff98b12ff7  com.apple.backup.framework (1.5.1 - 1.5.1) <FC4E949B-B41A-3F21-8AF8-AEDB13146FEA> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff98b13000 -     0x7fff98b41ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff98b42000 -     0x7fff98b56fff  com.apple.aps.framework (4.0 - 4.0) <F529A05B-FB03-397E-B06A-3A60B808FA11> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff98b57000 -     0x7fff98b86ff5  com.apple.GSS (4.0 - 2.0) <ED98D992-CC14-39F3-9ABC-8D7F986487CC> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff98b87000 -     0x7fff98b8bff7  libGIF.dylib (1038) <C29B4323-1B9E-36B9-96C2-7CEDBAA124F0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff98b8d000 -     0x7fff98b92ff7  com.apple.MediaAccessibility (1.0 - 43) <D309D83D-5FAE-37A4-85ED-FFBDA8B66B82> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff98b93000 -     0x7fff98c72fff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3EEF-AF43-44608B28894E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff98c75000 -     0x7fff98cd8ff7  com.apple.SystemConfiguration (1.13 - 1.13) <F05F4149-981B-380B-8F50-51CE804BBB89> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff98cd9000 -     0x7fff98dc3fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
        0x7fff98dc4000 -     0x7fff98dc5ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
        0x7fff98dc6000 -     0x7fff98dc6fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff98dc7000 -     0x7fff98defffb  libRIP.A.dylib (599.7) <6F528EE3-99F8-3871-BD60-1306495C27D5> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
        0x7fff98df0000 -     0x7fff98e21fff  com.apple.MediaKit (15 - 709) <23E33409-5C39-3F93-9E73-2B0E9EE8883E> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff98e22000 -     0x7fff98e23ff7  libsystem_sandbox.dylib (278.10) <A47E7E11-3C76-318E-B67D-98972B86F094> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff98e24000 -     0x7fff98ef5ff1  com.apple.DiskImagesFramework (10.9 - 371.1) <D456ED08-4C1D-341F-BAB8-85E34A7275C5> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff98ef6000 -     0x7fff991e0fff  com.apple.CoreServices.CarbonCore (1077.14 - 1077.14) <B00BEB34-A9F5-381F-99FD-11E405768A9A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff991e1000 -     0x7fff99206ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff99207000 -     0x7fff99271ff7  com.apple.framework.IOKit (2.0.1 - 907.1.13) <C1E95F5C-B79B-31BE-9F2A-1B25163C1F16> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff99272000 -     0x7fff992aefff  com.apple.ids (10.0 - 1000) <22502AAF-CC59-33EC-9ACF-106315206701> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
        0x7fff992af000 -     0x7fff992edfff  com.apple.ShareKit (1.0 - 185) <14FDC8CD-2F7B-3A66-B220-051670FA0289> /System/Library/PrivateFra

    It is saying;
    "I am Pages 5.1 and I am a buggy PiTA, with over 95 features removed, and best avoided"
    If you had Pages '08/'09 previously it should be in your Applications/iWork folder.
    Use that instead.
    Peter

  • Text Replacement in scanned page question

    I must be doing something incredibly wrong because I cannot get text to be replaced in a scanned OCR document. I am using Acrobat Pro 9.
    Before getting to that, let me ask this question: If I am scanning a document created using a readily available font like Times New Roman, why does Acrobat even bother using the scanned page for displaying text? It knows the text, the OCR was 100% accurate. Why not replace the 300 dpi scanned bitmap image with real, vector-based text? I don't understand that.
    OK, now to just trying to replace what amounts to fuzzy looking text with vector text. I've read how to replace text using Tools-> Advanced Editing-> TouchUp Text Tool where I select text, right click on it, go to properties and change the text. Here's what happens when I do that:
    First off, the defaults in the properties dialog are set to no fill and no stroke. Why is that? If you're changing your font, wouldn't you want it to show?
    After making a selection and closing the dialog, the text indeed changes, but the original, fuzzy text is there as well. And, as there are slight differences in font size, the page is virtually unreadable as it has the appearance of being printed twice with different alignments each time.
    This is, of course, quite useless. I MUST be doing something wrong.
    Of course, taking even this course of action is pretty frustrating, as the document I'm working on has many statements in bold, so doing a global font change isn't even practical. I really just wish acrobat would know that it can display vector text from the get-go, and forego the bitmapped text altogether.
    Thanks, I hope my frustration isn't too evident!
    Graham

    please delete me from your mailing list.  tks.
    Date: Wed, 10 Feb 2010 10:01:23 -0700
    From: [email protected]
    To: [email protected]
    Subject: Text Replacement in scanned page question
    I must be doing something incredibly wrong because I cannot get text to be replaced in a scanned OCR document. I am using Acrobat Pro 9.
    Before getting to that, let me ask this question: If I am scanning a document created using a readily available font like Times New Roman, why does Acrobat even bother using the scanned page for displaying text? It knows the text, the OCR was 100% accurate. Why not replace the 300 dpi scanned bitmap image with real, vector-based text? I don't understand that.
    OK, now to just trying to replace what amounts to fuzzy looking text with vector text. I've read how to replace text using Tools-> Advanced Editing-> TouchUp Text Tool where I select text, right click on it, go to properties and change the text. Here's what happens when I do that:
    1. First off, the defaults in the properties dialog are set to no fill and no stroke. Why is that? If you're changing your font, wouldn't you want it to show?
    2. After making a selection and closing the dialog, the text indeed changes, but the original, fuzzy text is there as well. It is as if there is a bitmapped image sitting behind my new, pristine text.
    This is, of course, quite useless. I MUST be doing something wrong.
    Of course, taking even this course of action is pretty frustrating, as the document I'm working on has many statements in bold, so doing a global font change isn't even practical. I really just wish acrobat would know that it can display vector text from the get-go, and forego the bitmapped text altogether.
    Thanks, I hope my frustration isn't too evident!
    Graham
    >

  • How does the login process works with a bind to AD?

    Hi there,
    I am trying to bind our mac to our Active Directory. Before doing I'd like to understand well how the login process works. Is there any reference I could look up to?
    For what I've understood until now with an example user "testAccount" and no automount and no AD extension and the ADplugin set as:
    a) if mobile is set, then a /Users/testAccount is created and if UNC is set then a smbHome is mounted "on desktop". If UNC is not set, do nothing more
    b) if force is set, then a /Users/testAccount is created and if UNC is set then a smbHome is mounted "on desktop". If UNC is not set, do nothing more
    c) if force is NOT set:
    --c1) if UNC is not set and cannot map NFSHomedirectory at all, then login the user with such a temporary home
    --c2) if UNC is set mount SMBhome and use it as mounted home folder (NFSHomeDirectory-->SMBhome "/Network/Servers/my.server.com/users/testAccount")
    --c3) if UNC is not set then retrieve the homeDirectory-NIS's attribute in AD (NFSHomeDirectory--> "/homes/testAccount") and create /homes/testAccount
    my doubt now is point c2) after I login in with a "#mount" I get:
    trigger on /Network/Servers/my.server.com/users (autofs, automounted)
    //[email protected]/users on /Network/Servers/my.server.com/users (smbfs, nodev, nosuid, automounted, mounted by testaccount)
    but my SMBhome is not correctly mounted on remote server (but the Library folder and MCX files are created!) and I get home errors because the system is looking for "/homes/testAccount", which I don't know where it is coming out from given that a
    #dscl /Active\ Directory/my.server.com -read /Users/testaccount |grep homes gives only out dsAttrTypeNative:unixHomeDirectory: /homes/testAccount
    thanks,
    a.

    Is there any reference I could look up to?
    http://www.macwindows.com

  • 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

  • Error occurred during the login process

    Error: A connection was successfully established with the server, but then an error occurred during the login process. (provider: Shared Memory Provider, error: 0 - No process is on the other end of the pipe.) (.Net SqlClient
    Data Provider)

    Step 1: Open SQL Server Configuration Manager
    Go to Windows 8 Start screen.
    Start typing in SQLServerManager11.msc if you are looking for SQL Server 2012 configuration manager. Type in SQLServerManager10.msc if you are looking for SQL Server 2008 configuration manager.
    In the result panel you can see the SQLServerConfiguration Manager.
    Click the icon to launch the SQL Server Configuration manager.
    The configuration manager will open in MMC.
    Step 2: Enable following configuration settings
    ensure Shared Memory protocol is enabled
    ensure Named Pipes protocol is enabled
    ensure TCP/IP is enabled, and s ahead of the Named Pipes in the settings
    http://dotnetguts.blogspot.com/2014/05/a-connection-was-successfully.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+DotnetGuts+%28Asp.net%2C+C%23%2C+.Net+Framework%2C+SQL+Server+Information%29
    Ahsan Kabir Please remember to click Mark as Answer and Vote as Helpful on posts that help you. This can be beneficial to other community members reading the thread. http://www.aktechforum.blogspot.com/

  • I want to force lan cable plugin during login process on 802.1x computer only weird client

    Hi
    I Configured Wired and computer only  802.1x authentications on all my switch and client on my network  ,It works without any problem .
    I have user logon script to change local administrator password each time they log on ,I recently find out they boot with light cd and change the administrator password and unplug the lan cable boot the system and login with new administrator password after
    that they plug lan cable , as they computer account is valid in active directory they are authorized and access the LAN .
    they bypass some group policy by this way,
    how can I force 802.1x wired client computer to plug lan cable during boot and login process in order to prevent bypass user login group policy  ?
    I want to force lan cable plugin during login process on 802.1x computer only weird client?
    Rigards

    Hello,
    you can disable CD/USB with GPO settings to prevent the use from it.
    And for the change from the local admin password you should consider that the CEO of the company should make clear policies so users can legally be punished if they don't work with the company rules.
    You can manage lot of settings with scripts etc. BUT there is a time where the CEO is responsible about rules.
    Best regards
    Meinolf Weber
    MVP, MCP, MCTS
    Microsoft MVP - Directory Services
    My Blog: http://blogs.msmvps.com/MWeber
    Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.
    Twitter:  

  • ADF how to display a processing page when executing large queries

    ADF how to display a processing page when executing large queries
    The ADF application that I have written currently has the following structure:
    DataPage (search.jsp) that contains a form that the user enters their search criteria --> forward action (doSearch) --> DataAction (validate) that validates the inputted values --> forward action (success) --> DataAction (performSearch) that has a refresh method dragged on it, and an action that manually sets the itterator for the collection to -1 --> forward action (success) --> DataPage (results.jsp) that displays the results of the then (hopefully) populated collection.
    I am not using a database, I am using a java collection to hold the data and the refresh method executes a query against an Autonomy Server that retrieves results in XML format.
    The problem that I am experiencing is that sometimes a user may submit a query that is very large and this creates problems because the browser times out whilst waiting for results to be displayed, and as a result a JBO-29000 null pointer error is displayed.
    I have previously got round this using Java Servlets where by when a processing servlet is called, it automatically redirects the browser to a processing page with an animation on it so that the user knows something is being processed. The processing page then recalls the servlet every 3seconds to see if the processing has been completed and if it has the forward to the appropriate results page.
    Unfortunately I can not stop users entering large queries as the system requires users to be able to search in excess of 5 million documents on a regular basis.
    I'd appreciate any help/suggestions that you may have regarding this matter as soon as possible so I can make the necessary amendments to the application prior to its pilot in a few weeks time.

    Hi Steve,
    After a few attempts - yes I have a hit a few snags.
    I'll send you a copy of the example application that I am working on but this is what I have done so far.
    I've taken a standard application that populates a simple java collection (not database driven) with the following structure:
    DataPage --> DataAction (refresh Collection) -->DataPage
    I have then added this code to the (refreshCollectionAction) DataAction
    protected void invokeCustomMethod(DataActionContext ctx)
    super.invokeCustomMethod(ctx);
    HttpSession session = ctx.getHttpServletRequest().getSession();
    Thread nominalSearch = (Thread)session.getAttribute("nominalSearch") ;
    if (nominalSearch == null)
    synchronized(this)
    //create new instance of the thread
    nominalSearch = new ns(ctx);
    } //end of sychronized wrapper
    session.setAttribute("nominalSearch", nominalSearch);
    session.setAttribute("action", "nominalSearch");
    nominalSearch.start();
    System.err.println("started thread calling loading page");
    ctx.setActionForward("loading.jsp");
    else
    if (nominalSearch.isAlive())
    System.err.println("trying to call loading page");
    ctx.setActionForward("loading.jsp");
    else
    System.err.println("trying to call results page");
    ctx.setActionForward("success");
    Created another class called ns.java:
    package view;
    import oracle.adf.controller.struts.actions.DataActionContext;
    import oracle.adf.model.binding.DCIteratorBinding;
    import oracle.adf.model.generic.DCRowSetIteratorImpl;
    public class ns extends Thread
    private DataActionContext ctx;
    public ns(DataActionContext ctx)
    this.ctx = ctx;
    public void run()
    System.err.println("START");
    DCIteratorBinding b = ctx.getBindingContainer().findIteratorBinding("currentNominalCollectionIterator");
    ((DCRowSetIteratorImpl)b.getRowSetIterator()).rebuildIteratorUpto(-1);
    //b.executeQuery();
    System.err.println("END");
    and added a loading.jsp page that calls a new dataAction called processing every second. The processing dataAction has the following code within it:
    package view;
    import javax.servlet.http.HttpSession;
    import oracle.adf.controller.struts.actions.DataForwardAction;
    import oracle.adf.controller.struts.actions.DataActionContext;
    public class ProcessingAction extends DataForwardAction
    protected void invokeCustomMethod(DataActionContext actionContext)
    // TODO: Override this oracle.adf.controller.struts.actions.DataAction method
    super.invokeCustomMethod(actionContext);
    HttpSession session = actionContext.getHttpServletRequest().getSession();
    String action = (String)session.getAttribute("action");
    if (action.equalsIgnoreCase("nominalSearch"))
    actionContext.setActionForward("refreshCollection.do");
    I'd appreciate any help or guidance that you may have on this as I really need to implement a generic loading page that can be called by a number of actions within my application as soon as possible.
    Thanks in advance for your help
    David.

Maybe you are looking for

  • Mavericks seems to have broken all my adobe programs, can I instal the previous version of osx?

    I recently instaled mavericks and the new premier upgrade, there seems to be a permisions issue going on, all of my adobe programs seem broken, the import/ export does not work, dont know what to do, is there anyway that I can re instal snow leoopard

  • You Should Be Ashamed

    To the Adobe Help Team: You should be ashamed. Like many others I recently upgraded my CS6 suite. Much to my surprise when I installed the upgrade I was met with a completely re-written and broken HELP system. Any attempt to access the help through o

  • Strange behavior of email notification: where is the log?

    Hi, The email notifications have a strange behavior in our productive system. When the system process whatever subscription only the firsts four notification are sent by email even thought  all the inbox notifications are sent. I checked the mail ser

  • EVM-HD-8FXS problem

    In router/gateway 3825 I have a EVM-HD-8FXS/DID card and I want it register with CallManager. I have on CallManager "AALN/S1/SU0/[email protected]", Device type "Cisco MGCP FXS Port" Status:"Rejected". Any idea why is it rejected?

  • Passing elements to another track

    Hello all!! I have a doubt because we have two tracks in our Dev environment, and we need to pass some element from one track to another. How can this be performed??. Regards IA