Service remains in "offline*" state - how to reset it?

Hello.
Since two days ago, I've got a problem with one of the sevices on a S10 Sparc system.
--($:~)-- svcs -a | grep \*
offline*       Jan_08   svc:/application/oracle/database:RACE002
--($:~)-- svcs -xv svc:/application/oracle/database:RACE002
svc:/application/oracle/database:RACE002 (Oracle database)
State: offline since  8. Januar 2008 03:43:55 CET
Reason: Start method is running.
   See: http://sun.com/msg/SMF-8000-C4
   See: man -M /usr/share/man -s 5 ora-smf
   See: /var/svc/log/application-oracle-database:RACE002.log
Impact: This service is not running.
--($:~)-- tail /var/svc/log/application-oracle-database:RACE002.log
database RACE002 is OPEN.
[ Jan  7 03:41:45 Method "start" exited with status 0 ]
[ Jan  8 03:42:52 Stopping because service disabled. ]
[ Jan  8 03:42:52 Executing stop method ("/lib/svc/method/ora-smf stop database RACE002") ]
Database closed.
Database dismounted.
ORACLE instance shut down.
[ Jan  8 03:43:00 Method "stop" exited with status 0 ]
[ Jan  8 03:43:54 Enabled. ]
[ Jan  8 03:43:55 Executing start method ("/lib/svc/method/ora-smf start database RACE002") ]Ie., the service is in "offline*" since Jan 8.
How do I get the service to change into any other different state, be it "online", "maintenance" or "offline"?
--($:~)-- svcs -xv svc:/application/oracle/database:RACE002
svc:/application/oracle/database:RACE002 (Oracle database)
State: offline since  8. Januar 2008 03:43:55 CET
Reason: Start method is running.
   See: http://sun.com/msg/SMF-8000-C4
   See: man -M /usr/share/man -s 5 ora-smf
   See: /var/svc/log/application-oracle-database:RACE002.log
Impact: This service is not running.
--($:~)-- sudo svcadm disable svc:/application/oracle/database:RACE002
--($:~)-- svcs -xv svc:/application/oracle/database:RACE002
svc:/application/oracle/database:RACE002 (Oracle database)
State: offline since  8. Januar 2008 03:43:55 CET
Reason: Start method is running.
   See: http://sun.com/msg/SMF-8000-C4
   See: man -M /usr/share/man -s 5 ora-smf
   See: /var/svc/log/application-oracle-database:RACE002.log
Impact: This service is not running.
--($:~)-- svcs svc:/application/oracle/database:RACE002
STATE          STIME    FMRI
offline*       Jan_08   svc:/application/oracle/database:RACE002
--($:~)-- sudo svcadm mark maintenance svc:/application/oracle/database:RACE002
--($:~)-- svcs svc:/application/oracle/database:RACE002
STATE          STIME    FMRI
offline*       Jan_08   svc:/application/oracle/database:RACE002
--($:~)-- sudo svcadm clear svc:/application/oracle/database:RACE002
svcadm: Instance "svc:/application/oracle/database:RACE002" is not in a maintenance or degraded state.
--($:~)-- sudo svcadm refresh svc:/application/oracle/database:RACE002
--($:~)-- svcs svc:/application/oracle/database:RACE002
STATE          STIME    FMRI
offline*       Jan_08   svc:/application/oracle/database:RACE002
--($:~)-- sudo svcadm restart svc:/application/oracle/database:RACE002
--($:~)-- svcs svc:/application/oracle/database:RACE002
STATE          STIME    FMRI
offline*       Jan_08   svc:/application/oracle/database:RACE002 Note: I'm not looking for an answer on how to make the oracle database RACE002 be available again. That can easily be done as "oracle" OS user and using "sqlplus" to send a "startup" command.
I'm looking for a way to make SMF behave again. Because right now, I cannot use SMF to change the state of the service, which is a problem, as my backup scripts fail because of that :/
Thanks a lot,
Michael

Hello again Michael, would you be able to post the output of the following procedure?
4:41pm cmdrkeen@crossfire  /research #>svccfg
svc:> select network/ssh
svc:/network/ssh> listprop(except obviously with your service rather than SSH)

Similar Messages

  • How to reset the wiki server (MAC OS X 10.9 with OS X Server App Version 3) with all wiki datas only

    Hi,
    I need to reset my Wiki on MAC OS X 10.9 with OS X Server App Version 3, but without reinstalling the whole server app to configure all services.
    Does anybody knows how to reset the wiki server (MAC OS X 10.9 with OS X Server App Version 3) with all wiki datas only.
    Thanks a lot for your hints

    Hi Linc,
    sorry, I haven't saved the System-Logfile before restoring my parallels VM.
    But it looks like issues of linking data.
    For testing the Server services I have done a reset for a user password and I have deleted the profiles and configuration from Client-Side. One with Mac OS X 10.9.1, one iPad with iOS 6.1.3. But it was not possible to reconfigure/reinstall the Server Profile. Also a manually configuration was odd, because for some services the new password was necessary and for other services the old password. Very strange.
    To bring back the services I have rolled back the last snapshot of my parallels VM. Afterwards there was no probleme to reconfigure/reinstall the Profile on Client-Side (OS X 10.9.1 and iOS 6.1.3). Also the manually configuration shows the password for all services are matching with the current configuration.
    I'm going to install a further parallels VM with Mac OS X 10.9.1 and Server App 3 from scratch to move the services.
    Greetings

  • How to reset the iPad - the Location Services doesn't seem to work?

    How to reset the iPad - the Location Services doesn't seem to work?
    I can not get NFL Game Pass or Siri to work???

    Well you can plug it into itunes and under summary tab hit RESTORE. This should fix any software issues that you may be experiencing. About gamepass, I dont know, I dont have it. Siri is not on the IPAD2. Only on the 3rd generation Ipad, so you wont have it(going by ipad2 under your name).

  • How to reset a particular view object alone to it's initial state??

    Hi,
    My application contains view objects with custom data source implementation. One of my requirement is to reset the particular view object alone to it's initial state. I can't use rollback since it is at Db Transaction level. I searched in forums and finally written the following coding to achieve it. It works fine during sometime but sometimes i am getting the exception oracle.jbo.DeadEntityAccessException: JBO-27101: Attempt to access dead entity in Person, key=oracle.jbo.Key[1 -10 ]
        public void resetPersonViewObject(String voName) {
            Iterator dirtyItr = this.getEntityDef(0).getAllEntityInstancesIterator(this.getDBTransaction());
            while (dirtyItr.hasNext()) {
                Object obj = dirtyItr.next();
                if (obj instanceof EntityImpl) {
                    EntityImpl entity = (EntityImpl)obj;
                    String state = null;
                    byte entityState = entity.getEntityState();
                    switch (entityState) {
                    case Entity.STATUS_INITIALIZED:
                        state = "Initialized";
                        // Don't do anything
                        break;
                    case Entity.STATUS_UNMODIFIED:
                        state = "Un-Modified";
                        // Don't do anything
                    case Entity.STATUS_DEAD:
                        state = "Dead";
                        // Don't do anything
                        break;
                    case Entity.STATUS_DELETED:
                        state = "Deleted";
                        entity.revert();
                        // entity.refresh(Entity.REFRESH_CONTAINEES);
                        break;
                    case Entity.STATUS_MODIFIED:
                        state = "Modified";
                        entity.refresh(Entity.REFRESH_UNDO_CHANGES);
                        break;
                    case Entity.STATUS_NEW:
                        state = "New";
                        entity.refresh(Entity.REFRESH_FORGET_NEW_ROWS);
                        entity.refresh(Entity.REFRESH_REMOVE_NEW_ROWS);
                        break;
                    System.err.println("State : " + state);
            getDBTransaction().clearEntityCache(getEntityDef(0).getFullName());
            getViewObject().clearCache();
    }Questions:
    1. How to achieve my requirement? Is there any code correction required?
    2. How to reset the row which is actually deleted by the user?
    3. The sample code shown above is applicable for all the view object instances which are created from the same entity? What should i do if i want to reset a particular instance of a view object (I may use different instance of same view object at various screens whereas i want to reset only one)
    Can anyone help on this??
    Thanks in advance.
    Raguraman
    Edited by: Raguraman on Apr 24, 2011 8:48 PM

    Hi,
    As per my requirement, i use various instances of same view object in various dynamic tabs only. Since each tab has its own transaction, refreshing an EO of a particular transaction will refresh only the VO instances which comes under that transaction. So it will not cause any issue for my requirement i hope.
    Requirement: Need to reset a particular entity driven view object instances.
    Tried Schema: Departments table of HR Schema. Tried using the Application Module tester.
    Code i use:
        // Client Interface method of DepartmentsViewImpl
        public void resetView() {
            Iterator dirtyItr =
                this.getEntityDef(0).getAllEntityInstancesIterator(this.getDBTransaction());
            while (dirtyItr.hasNext()) {
                Object obj = dirtyItr.next();
                if (obj instanceof EntityImpl) {
                    EntityImpl entity = (EntityImpl)obj;
                    byte entityState = entity.getEntityState();
                    switch (entityState) {
                    case Entity.STATUS_UNMODIFIED:
                        break;
                    case Entity.STATUS_INITIALIZED:
                        break;
                    case Entity.STATUS_DEAD:
                        break;
                    case Entity.STATUS_DELETED:
                        entity.refresh(Entity.REFRESH_WITH_DB_FORGET_CHANGES);
                        break;
                    case Entity.STATUS_MODIFIED:
                        entity.refresh(Entity.REFRESH_UNDO_CHANGES);
                        break;
                    case Entity.STATUS_NEW:
                        entity.refresh(Entity.REFRESH_FORGET_NEW_ROWS);
                        entity.refresh(Entity.REFRESH_REMOVE_NEW_ROWS);
                        break;
            getDBTransaction().clearEntityCache(getEntityDef(0).getFullName());
            getViewObject().clearCache();
    Issue i have:
    1. Add a blank row (Soon transaction has become dirty). Call the resetView() client interface. It gives me JBO-25303: Cannot clear entity cache model.eo.Departments because it has modified rows
    2. Modify any row and then delete the same row. Call the resetView(). It gives me JBO-27101: Attempt to access dead entity in Departments, key=oracle.jbo.Key[10 ]
    [NOTE:  Above code works fine when for simple deletion of rows, modification of existing rows, new rows]
    Edited by: Raguraman on Apr 24, 2011 8:48 PM

  • How to reset the JSF Portlet session state in weblogic portal 10.3

    Hi All,
    We are implementing our application with the jsf1.2 with 10.3.0 portal framework.
    in a tab i placed my jsf portlet, it will navigate up to 4 pages. We do have some other tabs too in our application. So when i navigate to other tabs and when i comeback to the jsf portlet tab i am resetting the portlet state to first page by onDeactivation portal event.
    But the problem when the user within the tab and navigate to pages if he clicks again the tab it is not redirecting to start page.
    I know we do have refresh action in our pageflows .. but how to reset the jsf portlet to start page when it is not deactivating. Please do help me..
    Thanks in advance...
    Edited by: Siddu4u on Oct 10, 2011 8:33 PM

    Hello,
    This documentation should help you to use the import tool in the Portal Admin Console:
    http://download.oracle.com/docs/cd/E15919_01/wlp.1032/e14245/deployment.htm#i1047336
    Kevin

  • How to reset my remaining credits, in order to change the country of my account?

    how to reset my remaining credits, in order to change the country of my account?

    Click here and ask the iTunes Store staff to zero your account balance.
    (96253)

  • TS1702 My iPad location services puts my pad over a 60 miles east of my true location, any idea how I reset to true site??

    My iPad location services puts my pad over a 60 miles east of my true location, any idea how I reset to true site??

    Tried that by using my iPhone 3G as hotspot and it made no difference

  • Satellite L310-D4011: How to reset the DVD Region setting to 0?

    Dear All,
    I have a Satellite L310 D4011 machine which I recently purchased in which I installed a DVD player software.
    I run WinXP. A friend of mine played a music video from UK (Mccartney Live in Red Square) in the DVD player and the original region setting which was at 0 with 5 changes remaining, has gone to 4 changes remaining and the region is now set at 2. I am in India where the region for DVD is 5. If I change to 5, I lose another change option.
    I do not want to let my DVD ROM get stuck at 0 options left and in some other region.
    Can anyone give me an advice to reset the region back to Zero with five options remaining - the way it was when I bought the laptop?
    I shall be extremely grateful. Will the vendor from whom I purchased the laptop be able to set it back to factory setting?
    Best wishes

    Hello
    In my opinion Toshiba has nothing to do with it. To protect movie industry and their interests all notebook manufacturers offer optical disc drives where you can watch movies with different country code but 5 times only. The last chosen region code will be set as default. So if you have 4 more codes there is no reason for panic. Just continue to watch movies from your favourite region area.
    I am 100% sure that Toshiba service or vendor where you purchased your notebook will say that they have nothing to do with it. In drive properties you have clear statement how it works.
    Anyway you can try to contact them and ask for help.

  • SMF service always shows offline even when it is up and running

    I have added a service to SMF under /var/svc/manifest/application and am successful in starting it, but state always shows offline. How can I get it to show up as "online"?
    Output of svcs -l command:
    bash-3.00# svcs -l esm
    fmri svc:/application/esm:default
    enabled true
    state offline
    next_state online
    state_time Fri 01 Jun 2007 11:02:47 AM PDT
    logfile /var/svc/log/application-esm:default.log
    restarter svc:/system/svc/restarter:default
    contract_id 1113
    dependency require_all/none svc:/system/filesystem/local (online)
    dependency require_all/none svc:/network/mysql (online)
    ouput of svcs -x command:
    bash-3.00# svcs -x esm
    svc:/application/esm:default (?)
    State: offline since Fri 01 Jun 2007 11:02:47 AM PDT
    Reason: Start method is running.
    See: http://sun.com/msg/SMF-8000-C4
    See: /var/svc/log/application-esm:default.log
    Impact: This service is not running.

    Turns out I just needed to launch the app as a background task (use & in my svc method file) and it works fine.

  • How to Reset HP LaserJet 1500L Drum and Toner

    (Note: This also applies to some other laser printers too. If so then please update this thread to indicate the model and any extra instructions.)
    The legacy 1500 and 1500L use dumb toner and drum cartages. They have a chip which simply counts the number of pages printed, and when a preset number (as per cartridge size) have been printed, it sends a signal to the printer to replace it. This is ok if you print the average amount of ink per page, but if you print a lot of photos, the cartage will be exhausted before the indicator flashes, and if like the rest of us you print the usual selection of documents etc, then probably about 50 to 25 percent of the toner remains - what a waste!.
    Fortunately, (or not) HP kindly provide incorrect instructions how to reset the counter. It's a pity that customer support don’t read their own documentation, or put it in the manual.
    Do exactly the following:
    1) Turn the printer power switch off.
        Wait 10 seconds for any residual charges to clear.
    2) While powered off, press and hold the GO button (right hand)
    3) Turn the printer power switch on while continuing to hold the GO button down.
    4) After the Go, Ready, and Attention LEDs turn on, continue holding the GO button
        for at least 20 seconds (maybe 30 seconds). During this time, the Attention,
        Ready, and Go LEDs will each eventually turn off.
    5) When it seems to have stopped, now release the GO button.
    6) The printers LEDs will begin cycling from front to back. After about 15-30 seconds it finishes    
        and everything goes quiet. The printer should now be in the 'ready' state.
    7) (The missing instruction) Press the cancel (orange) button.
    Send a simple colour document to the printer and it should print out ok, proving it is all ok.
    Keep printing until one of the cartages or the fixer toner drum are depleted and printing result is unacceptable.

    Hailun, welcome to the forum.
    Here is a guide to help you solve your problem.  Read it carefully and follow the instructions step by step.
    Please click "KUDOS" if I have helped you and click "Accept as Solution" if your problem is solved.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

  • Instances in OFFLINE State

    Hi,
    I have a 11.1.0.7 RAC database running on a RHEL 64 bit platform. The CRS version being 11.2.0.2
    I restarted my database using the command srvctl start database -d MYCSMR and also its services using the command srvctl start service -s MYCSMR
    MYCSMR1 % srvctl status service -d MYCSMR
    Service CONSUM is running on instance(s) MYCSMR1, MYCSMR2, MYCSMR3
    Service CONSUM_SEARCH is running on instance(s) MYCSMR1, MYCSMR2, MYCSMR3
    But I get few alerts in my EM that, ora.MYCSMR.CONSUM_SEARCH.MYCSMR2.srv has instances in OFFLINE State , ora.MYCSMR.CONSUM_SEARCH.cs has instances in OFFLINE State and ora.MYCSMR.CONSUM_SEARCH.MYCSMR1.srv has instances in OFFLINE State
    Could you please help me what needs to be checked and how to fix those alerts?
    Thanks!

    Hi,
    If srvctl is showing the correct status and Grid Control is reporting false, its issue with Grid Control. There are many bugs in Grid Control around RAC monitoring.
    I would say re-registering resources in Grid control would be a workaround.
    Thanks
    krishan

  • Cannot get new token due to device offline state. Id error 40760

    Hi,
    I have a Blackberry Curve 9380 
    i can't go in my app world, the message says: Cannot get new token due to device offline state id error 40760
    what should i do?
    btw, i'm french
    thanks!

    Hi and Welcome to the Community!
    With a strong carrier network signal (e.g., not merely WiFi), I suggest the following steps, in order, even if they seem redundant to what you have already tried (steps 1 and 2 each should result in a message coming to your BB...please wait for that before proceeding to the next step):
    1) Register HRT
    KB00510 How to register a BlackBerry smartphone with the wireless network
    Please wait for one "registration" message to arrive to your Messages app
    2) Resend Service Books
    KB02830 Send the service books for the BlackBerry Internet Service
    Please wait for "Activation" Messages, one per already configured email account, to arrive in your Messages. If you have no already configured email accounts, please wait 1 hour.
    3) Reboot
    With power ON, remove the back cover and pull out the battery. Wait about a minute then replace the battery and cover. Power up and wait patiently through the long reboot -- ~5 minutes.
    See if things have returned to good operation. Like all computing devices, BB's suffer from memory leaks and such...with a hard reboot being the best cure.
    If not, then please try this sequence:
    1) Remove AppWorld from your BB
    KB10040 How to view or remove installed applications on a BlackBerry smartphone
    If it requests that you reboot the BB, do so
    2) Do a Batt-Pull reboot (power on, remove battery, wait, insert battery, wait), even if redundant to the one you did in step 1.
    3) Install (on your BB) a fresh copy of AppWorld
    http://blackberry.com/appworld/download
    Again, if it requests to reboot, do so.
    4) Do another Batt-Pull reboot
    5) See if it now works.
    Otherwise, you should contact your mobile service provider for formal support.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Search Scope: Search Service is currently offline or indexer move in in progress

    I am not sure what had happen, but when ever I go into the Search Service App > Scope > People it gives me the error:
    "The search service is currently offline. Visit the Services on Server page in SharePoint Central Administration to verify whether the service is enabled. This might also be because an indexer move
    is in progress."
    When I go to Manage Services on Server "SharePoint Server Search" is started. Also I been running Incremental crawls all day.
    When ever I go to people within the search scope menu item in the Quick Launch it throws that error.
    Here is the error in the log:
    Microsoft.SharePoint.SPException: The search service is currently offline. Visit the Services on Server page in SharePoint Central Administration to verify whether the service is enabled. This might also be because an indexer move is in progress.   
    at Microsoft.Office.Server.Search.Internal.UI.SearchCentralAdminPageBase.ErrorHandler(Object sender, EventArgs e)     at Microsoft.Office.Server.Search.Internal.UI.SearchCentralAdminPageBase.OnError(EventArgs e)    
    at System.Web.UI.Page.HandleError(Exception e)     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)     at System.Web.UI.Page.ProcessRequest(Boolean
    includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)     at System.Web.UI.Page.ProcessRequest()     ...
    Any help or suggestions would be greatful! Thank You
    Brandon

    I do NOT have a Web Application http://SERVER:32843
    I have created a new search, from the default that is created to try to fix this.  I have restarted the server and updated to April 2013 CU, but still having this issue.  Logged on as a Farm Administrator.
    Don't know how to try to change from 'http://tempuri.org/ and it shows that, online, that is a MSDN test item.
    This is from COrrelation ID when I ran this in Site Actions, Site Settings, Scope, logged on as Farm Administrator in IE 9 on a Windows 7 SP1 Enterprise Edition system.  SharePoint 2010 SP1 Enterprise Edition CU April 2013
    06/03/2013 09:52:53.71 w3wp.exe (0x19AC) 0x2A0C SharePoint Foundation Logging Correlation Data xmnv Medium Name=Request (GET:http://sharepoint:80/_layouts/viewscopes.aspx) 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:53.71 w3wp.exe (0x19AC) 0x2A0C SharePoint Foundation Logging Correlation Data xmnv Medium Site=/ 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.29 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dka1 High SearchServiceApplicationProxy::AddConsumer--Proxy Name:Search Service Application COMPANY EndPoint:
    http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.29 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dk8z High SearchServiceApplicationProxy::GetChannel--Channel Creation time: 0 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.29 w3wp.exe (0x19AC) 0x2A0C SharePoint Foundation Topology e5mc Medium WcfSendRequest: RemoteAddress: 'http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc' Channel: 'Microsoft.Office.Server.Search.Administration.ISearchServiceApplication'
    Action: 'http://tempuri.org/ISearchSiteAdministrationServiceApplication/AddConsumer' MessageId: 'urn:uuid:6da4fd40-1881-4e01-8f30-270c098908ae' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.31 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Topology e5mb Medium WcfReceiveRequest: LocalAddress: 'http://SERVER.DOMAIN.COMPANY.local:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc' Channel:
    'System.ServiceModel.Channels.ServiceChannel' Action: 'http://tempuri.org/ISearchSiteAdministrationServiceApplication/AddConsumer' MessageId: 'urn:uuid:6da4fd40-1881-4e01-8f30-270c098908ae' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.31 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (ExecuteWcfServerOperation) 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.31 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (ExecuteWcfServerOperation). Execution Time=2.09663518687431 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.31 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dka2 High SearchServiceApplicationProxy::AddConsumer--Id: Elapsed Time: 15.6252 Proxy Name/ID: Search Service Application COMPANY/dc890470-4731-4922-877e-5de1b44cf369
    EndPoint:
    http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.31 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dka1 High SearchServiceApplicationProxy::GetDisplayGroupsForConsumer--Proxy Name:Search Service Application COMPANY EndPoint:
    http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.31 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dk8z High SearchServiceApplicationProxy::GetChannel--Channel Creation time: 0 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.31 w3wp.exe (0x19AC) 0x2A0C SharePoint Foundation Topology e5mc Medium WcfSendRequest: RemoteAddress: 'http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc' Channel: 'Microsoft.Office.Server.Search.Administration.ISearchServiceApplication'
    Action: 'http://tempuri.org/ISearchSiteAdministrationServiceApplication/GetDisplayGroupsForConsumer' MessageId: 'urn:uuid:550656cc-0a8b-4ffb-b9cd-a449d5c0b71d' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.32 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Topology e5mb Medium WcfReceiveRequest: LocalAddress: 'http://SERVER.DOMAIN.COMPANY.local:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc' Channel:
    'System.ServiceModel.Channels.ServiceChannel' Action: 'http://tempuri.org/ISearchSiteAdministrationServiceApplication/GetDisplayGroupsForConsumer' MessageId: 'urn:uuid:550656cc-0a8b-4ffb-b9cd-a449d5c0b71d' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.32 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (ExecuteWcfServerOperation) 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.32 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (ExecuteWcfServerOperation). Execution Time=1.75636847699917 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.32 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dka2 High SearchServiceApplicationProxy::GetDisplayGroupsForConsumer--Id: Elapsed Time: 15.6252 Proxy Name/ID: Search Service Application COMPANY/dc890470-4731-4922-877e-5de1b44cf369
    EndPoint:
    http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.32 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dka1 High SearchServiceApplicationProxy::GetDisplayGroupListInfo--Proxy Name:Search Service Application COMPANY EndPoint:
    http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.32 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dk8z High SearchServiceApplicationProxy::GetChannel--Channel Creation time: 0 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.32 w3wp.exe (0x19AC) 0x2A0C SharePoint Foundation Topology e5mc Medium WcfSendRequest: RemoteAddress: 'http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc' Channel: 'Microsoft.Office.Server.Search.Administration.ISearchServiceApplication'
    Action: 'http://tempuri.org/ISearchSiteAdministrationServiceApplication/GetDisplayGroupListInfo' MessageId: 'urn:uuid:9e197324-275c-443e-bb3f-da1e222a7735' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.34 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Topology e5mb Medium WcfReceiveRequest: LocalAddress: 'http://SERVER.DOMAIN.COMPANY.local:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc' Channel:
    'System.ServiceModel.Channels.ServiceChannel' Action: 'http://tempuri.org/ISearchSiteAdministrationServiceApplication/GetDisplayGroupListInfo' MessageId: 'urn:uuid:9e197324-275c-443e-bb3f-da1e222a7735' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.34 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (ExecuteWcfServerOperation) 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.34 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (ExecuteWcfServerOperation). Execution Time=1.75133990493205 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.34 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dka2 High SearchServiceApplicationProxy::GetDisplayGroupListInfo--Id: Elapsed Time: 15.6252 Proxy Name/ID: Search Service Application COMPANY/dc890470-4731-4922-877e-5de1b44cf369
    EndPoint:
    http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.34 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dka1 High SearchServiceApplicationProxy::GetScopeInfo--Proxy Name:Search Service Application COMPANY EndPoint:
    http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.34 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dk8z High SearchServiceApplicationProxy::GetChannel--Channel Creation time: 0 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.34 w3wp.exe (0x19AC) 0x2A0C SharePoint Foundation Topology e5mc Medium WcfSendRequest: RemoteAddress: 'http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc' Channel: 'Microsoft.Office.Server.Search.Administration.ISearchServiceApplication'
    Action: 'http://tempuri.org/ISearchSiteAdministrationServiceApplication/GetScopeInfo' MessageId: 'urn:uuid:28be4d8c-27b3-4aa6-b462-d4ff3eddb32f' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.35 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Topology e5mb Medium WcfReceiveRequest: LocalAddress: 'http://SERVER.DOMAIN.COMPANY.local:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc' Channel:
    'System.ServiceModel.Channels.ServiceChannel' Action: 'http://tempuri.org/ISearchSiteAdministrationServiceApplication/GetScopeInfo' MessageId: 'urn:uuid:28be4d8c-27b3-4aa6-b462-d4ff3eddb32f' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.35 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (ExecuteWcfServerOperation) 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.35 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (ExecuteWcfServerOperation). Execution Time=2.18323837247471 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.35 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dka2 High SearchServiceApplicationProxy::GetScopeInfo--Id: Elapsed Time: 15.6252 Proxy Name/ID: Search Service Application COMPANY/dc890470-4731-4922-877e-5de1b44cf369
    EndPoint:
    http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.35 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dka1 High SearchServiceApplicationProxy::AddConsumer--Proxy Name:Search Service Application COMPANY EndPoint:
    http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.35 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dk8z High SearchServiceApplicationProxy::GetChannel--Channel Creation time: 0 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.35 w3wp.exe (0x19AC) 0x2A0C SharePoint Foundation Topology e5mc Medium WcfSendRequest: RemoteAddress: 'http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc' Channel: 'Microsoft.Office.Server.Search.Administration.ISearchServiceApplication'
    Action: 'http://tempuri.org/ISearchSiteAdministrationServiceApplication/AddConsumer' MessageId: 'urn:uuid:c5f59ad9-31c0-4968-b3bd-4a8e73ad3b25' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.37 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Topology e5mb Medium WcfReceiveRequest: LocalAddress: 'http://SERVER.DOMAIN.COMPANY.local:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc' Channel:
    'System.ServiceModel.Channels.ServiceChannel' Action: 'http://tempuri.org/ISearchSiteAdministrationServiceApplication/AddConsumer' MessageId: 'urn:uuid:c5f59ad9-31c0-4968-b3bd-4a8e73ad3b25' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.37 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (ExecuteWcfServerOperation) 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.37 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (ExecuteWcfServerOperation). Execution Time=1.49097161790116 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.37 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dka2 High SearchServiceApplicationProxy::AddConsumer--Id: Elapsed Time: 15.6252 Proxy Name/ID: Search Service Application COMPANY/dc890470-4731-4922-877e-5de1b44cf369
    EndPoint:
    http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.37 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dka1 High SearchServiceApplicationProxy::GetScopeInfo--Proxy Name:Search Service Application COMPANY EndPoint:
    http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.37 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dk8z High SearchServiceApplicationProxy::GetChannel--Channel Creation time: 0 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.37 w3wp.exe (0x19AC) 0x2A0C SharePoint Foundation Topology e5mc Medium WcfSendRequest: RemoteAddress: 'http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc' Channel: 'Microsoft.Office.Server.Search.Administration.ISearchServiceApplication'
    Action: 'http://tempuri.org/ISearchSiteAdministrationServiceApplication/GetScopeInfo' MessageId: 'urn:uuid:b4b2029a-5763-4234-912a-03c171eafe24' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.38 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Topology e5mb Medium WcfReceiveRequest: LocalAddress: 'http://SERVER.DOMAIN.COMPANY.local:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc' Channel:
    'System.ServiceModel.Channels.ServiceChannel' Action: 'http://tempuri.org/ISearchSiteAdministrationServiceApplication/GetScopeInfo' MessageId: 'urn:uuid:b4b2029a-5763-4234-912a-03c171eafe24' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.38 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (ExecuteWcfServerOperation) 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.38 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (ExecuteWcfServerOperation). Execution Time=1.75664784211401 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.38 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dka2 High SearchServiceApplicationProxy::GetScopeInfo--Id: Elapsed Time: 15.6252 Proxy Name/ID: Search Service Application COMPANY/dc890470-4731-4922-877e-5de1b44cf369
    EndPoint:
    http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.38 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dka1 High SearchServiceApplicationProxy::GetScopeRowCount--Proxy Name:Search Service Application COMPANY EndPoint:
    http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.38 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dk8z High SearchServiceApplicationProxy::GetChannel--Channel Creation time: 0 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.38 w3wp.exe (0x19AC) 0x2A0C SharePoint Foundation Topology e5mc Medium WcfSendRequest: RemoteAddress: 'http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc' Channel: 'Microsoft.Office.Server.Search.Administration.ISearchServiceApplication'
    Action: 'http://tempuri.org/ISearchSiteAdministrationServiceApplication/GetScopeRowCount' MessageId: 'urn:uuid:edbe414c-276a-422f-b67d-d5c4c308aca4' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.40 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Topology e5mb Medium WcfReceiveRequest: LocalAddress: 'http://SERVER.DOMAIN.COMPANY.local:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc' Channel:
    'System.ServiceModel.Channels.ServiceChannel' Action: 'http://tempuri.org/ISearchSiteAdministrationServiceApplication/GetScopeRowCount' MessageId: 'urn:uuid:edbe414c-276a-422f-b67d-d5c4c308aca4' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.40 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (ExecuteWcfServerOperation) 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.40 w3wp.exe (0x1028) 0x2ED8 SharePoint Server Search Query Processor dm6f Medium PluggableSecurityTrimmerManager:SetSearchApplicationToUse: Set SearchApplication to 'Search Service Application COMPANY' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.40 w3wp.exe (0x1028) 0x2ED8 SharePoint Server Search Query Processor dm22 Medium Resetting cookie: Old value = '', new value = 'select workid from scope() where "scope"='All Sites'' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.40 mssearch.exe (0x12E0) 0x1ECC SharePoint Server Search Query Processor e0pg Medium 0569d1f1-aab9-4e7c-9495-fe72b43c25cf-query-0: Query completed 0 ms, detailed time:  Query stage execution ms times:
    0 0 0 0 0 0 0 0   Query stage cpu ms times: 0 0 0 0 0 0 0 0   Query stage hit counts: 1 1 3 7 1 0 0 0   Cursor count: 29  Mapped page count: 30  Total index count: 10    [srequest.cxx:5526]  d:\office\source\search\native\ytrip\tripoli\cifrmwrk\srequest.cxx 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.43 w3wp.exe (0x1028) 0x2ED8 SharePoint Server Search Query Processor e2jt Medium Completed query execution with timings: total:31 dup:0 sec:15 join:0 ft:0 sql:16. Join Retry: 0. Security Trimming Retry:
    0. Duplicate removal Retry: 0. 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.43 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (ExecuteWcfServerOperation). Execution Time=37.5243222253108 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.43 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dka2 High SearchServiceApplicationProxy::GetScopeRowCount--Id: Elapsed Time: 46.8756 Proxy Name/ID: Search Service Application COMPANY/dc890470-4731-4922-877e-5de1b44cf369
    EndPoint:
    http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.43 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dka1 High SearchServiceApplicationProxy::GetScopeRowCount--Proxy Name:Search Service Application COMPANY EndPoint:
    http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.43 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dk8z High SearchServiceApplicationProxy::GetChannel--Channel Creation time: 0 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.43 w3wp.exe (0x19AC) 0x2A0C SharePoint Foundation Topology e5mc Medium WcfSendRequest: RemoteAddress: 'http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc' Channel: 'Microsoft.Office.Server.Search.Administration.ISearchServiceApplication'
    Action: 'http://tempuri.org/ISearchSiteAdministrationServiceApplication/GetScopeRowCount' MessageId: 'urn:uuid:8b653921-896e-4ca5-b8f0-f4fb6fa55221' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.45 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Topology e5mb Medium WcfReceiveRequest: LocalAddress: 'http://SERVER.DOMAIN.COMPANY.local:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc' Channel:
    'System.ServiceModel.Channels.ServiceChannel' Action: 'http://tempuri.org/ISearchSiteAdministrationServiceApplication/GetScopeRowCount' MessageId: 'urn:uuid:8b653921-896e-4ca5-b8f0-f4fb6fa55221' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.45 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (ExecuteWcfServerOperation) 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.45 w3wp.exe (0x1028) 0x2ED8 SharePoint Server Search Query Processor dm6f Medium PluggableSecurityTrimmerManager:SetSearchApplicationToUse: Set SearchApplication to 'Search Service Application COMPANY' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.45 w3wp.exe (0x1028) 0x2ED8 SharePoint Server Search Query Processor dm22 Medium Resetting cookie: Old value = '', new value = 'select workid from scope() where "scope"='People'' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.45 mssearch.exe (0x12E0) 0x1ECC SharePoint Server Search Query Processor e0pg Medium 0569d1f1-aab9-4e7c-9495-fe72b43c25cf-query-0: Query completed 0 ms, detailed time:  Query stage execution ms times:
    0 0 0 0 0 0 0 0   Query stage cpu ms times: 0 0 0 0 0 0 0 0   Query stage hit counts: 1 1 3 7 1 0 0 0   Cursor count: 10  Mapped page count: 25  Total index count: 10    [srequest.cxx:5526]  d:\office\source\search\native\ytrip\tripoli\cifrmwrk\srequest.cxx 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.46 w3wp.exe (0x1028) 0x2ED8 SharePoint Server Search Query Processor e2jt Medium Completed query execution with timings: total:15 dup:0 sec:0 join:0 ft:0 sql:15. Join Retry: 0. Security Trimming Retry:
    0. Duplicate removal Retry: 0. 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.48 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (ExecuteWcfServerOperation). Execution Time=25.3521048066165 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.48 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dka2 High SearchServiceApplicationProxy::GetScopeRowCount--Id: Elapsed Time: 46.8756 Proxy Name/ID: Search Service Application COMPANY/dc890470-4731-4922-877e-5de1b44cf369
    EndPoint:
    http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.48 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dka1 High SearchServiceApplicationProxy::GetDisplayGroupListInfo--Proxy Name:Search Service Application COMPANY EndPoint:
    http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.48 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dk8z High SearchServiceApplicationProxy::GetChannel--Channel Creation time: 0 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.48 w3wp.exe (0x19AC) 0x2A0C SharePoint Foundation Topology e5mc Medium WcfSendRequest: RemoteAddress: 'http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc' Channel: 'Microsoft.Office.Server.Search.Administration.ISearchServiceApplication'
    Action: 'http://tempuri.org/ISearchSiteAdministrationServiceApplication/GetDisplayGroupListInfo' MessageId: 'urn:uuid:b060b665-b008-4b7f-9219-864bb1611df3' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.48 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Topology e5mb Medium WcfReceiveRequest: LocalAddress: 'http://SERVER.DOMAIN.COMPANY.local:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc' Channel:
    'System.ServiceModel.Channels.ServiceChannel' Action: 'http://tempuri.org/ISearchSiteAdministrationServiceApplication/GetDisplayGroupListInfo' MessageId: 'urn:uuid:b060b665-b008-4b7f-9219-864bb1611df3' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.48 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (ExecuteWcfServerOperation) 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.49 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (ExecuteWcfServerOperation). Execution Time=1.75692720722885 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.49 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dka2 High SearchServiceApplicationProxy::GetDisplayGroupListInfo--Id: Elapsed Time: 15.6252 Proxy Name/ID: Search Service Application COMPANY/dc890470-4731-4922-877e-5de1b44cf369
    EndPoint:
    http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.49 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dka1 High SearchServiceApplicationProxy::GetScopeRowCount--Proxy Name:Search Service Application COMPANY EndPoint:
    http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.49 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dk8z High SearchServiceApplicationProxy::GetChannel--Channel Creation time: 0 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.49 w3wp.exe (0x19AC) 0x2A0C SharePoint Foundation Topology e5mc Medium WcfSendRequest: RemoteAddress: 'http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc' Channel: 'Microsoft.Office.Server.Search.Administration.ISearchServiceApplication'
    Action: 'http://tempuri.org/ISearchSiteAdministrationServiceApplication/GetScopeRowCount' MessageId: 'urn:uuid:76dfb5be-bbfa-4bb4-8e6d-dce3713f8baa' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.49 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Topology e5mb Medium WcfReceiveRequest: LocalAddress: 'http://SERVER.DOMAIN.COMPANY.local:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc' Channel:
    'System.ServiceModel.Channels.ServiceChannel' Action: 'http://tempuri.org/ISearchSiteAdministrationServiceApplication/GetScopeRowCount' MessageId: 'urn:uuid:76dfb5be-bbfa-4bb4-8e6d-dce3713f8baa' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.49 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (ExecuteWcfServerOperation) 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.49 w3wp.exe (0x1028) 0x2ED8 SharePoint Server Search Query Processor dm6f Medium PluggableSecurityTrimmerManager:SetSearchApplicationToUse: Set SearchApplication to 'Search Service Application COMPANY' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.49 w3wp.exe (0x1028) 0x2ED8 SharePoint Server Search Query Processor dm22 Medium Resetting cookie: Old value = '', new value = 'select workid from scope() where "scope"='All Sites'' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.51 mssearch.exe (0x12E0) 0x1ECC SharePoint Server Search Query Processor e0pg Medium 0569d1f1-aab9-4e7c-9495-fe72b43c25cf-query-0: Query completed 15 ms, detailed time:  Query stage execution ms times:
    0 15 0 0 15 0 0 0   Query stage cpu ms times: 0 15 0 0 15 0 0 0   Query stage hit counts: 1 1 3 7 1 0 0 0   Cursor count: 29  Mapped page count: 30  Total index count: 10    [srequest.cxx:5526]  d:\office\source\search\native\ytrip\tripoli\cifrmwrk\srequest.cxx 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.53 w3wp.exe (0x1028) 0x2ED8 SharePoint Server Search Query Processor e2jt Medium Completed query execution with timings: total:31 dup:0 sec:16 join:0 ft:15 sql:0. Join Retry: 0. Security Trimming Retry:
    0. Duplicate removal Retry: 0. 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.53 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (ExecuteWcfServerOperation). Execution Time=31.0603721981425 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.53 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dka2 High SearchServiceApplicationProxy::GetScopeRowCount--Id: Elapsed Time: 31.2504 Proxy Name/ID: Search Service Application COMPANY/dc890470-4731-4922-877e-5de1b44cf369
    EndPoint:
    http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.53 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dka1 High SearchServiceApplicationProxy::GetUnusedScopesForConsumer--Proxy Name:Search Service Application COMPANY EndPoint:
    http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.54 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dk8z High SearchServiceApplicationProxy::GetChannel--Channel Creation time: 15.6252 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.54 w3wp.exe (0x19AC) 0x2A0C SharePoint Foundation Topology e5mc Medium WcfSendRequest: RemoteAddress: 'http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc' Channel: 'Microsoft.Office.Server.Search.Administration.ISearchServiceApplication'
    Action: 'http://tempuri.org/ISearchSiteAdministrationServiceApplication/GetUnusedScopesForConsumer' MessageId: 'urn:uuid:d73affd3-6e20-4a7e-b422-b8148549906f' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.54 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Topology e5mb Medium WcfReceiveRequest: LocalAddress: 'http://SERVER.DOMAIN.COMPANY.local:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc' Channel:
    'System.ServiceModel.Channels.ServiceChannel' Action: 'http://tempuri.org/ISearchSiteAdministrationServiceApplication/GetUnusedScopesForConsumer' MessageId: 'urn:uuid:d73affd3-6e20-4a7e-b422-b8148549906f' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.54 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (ExecuteWcfServerOperation) 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.56 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (ExecuteWcfServerOperation). Execution Time=8.36363280808036 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.56 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dka2 High SearchServiceApplicationProxy::GetUnusedScopesForConsumer--Id: Elapsed Time: 31.2504 Proxy Name/ID: Search Service Application COMPANY/dc890470-4731-4922-877e-5de1b44cf369
    EndPoint:
    http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.56 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dka1 High SearchServiceApplicationProxy::GetUnusedScopesForConsumer--Proxy Name:Search Service Application COMPANY EndPoint:
    http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.56 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dk8z High SearchServiceApplicationProxy::GetChannel--Channel Creation time: 0 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.56 w3wp.exe (0x19AC) 0x2A0C SharePoint Foundation Topology e5mc Medium WcfSendRequest: RemoteAddress: 'http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc' Channel: 'Microsoft.Office.Server.Search.Administration.ISearchServiceApplication'
    Action: 'http://tempuri.org/ISearchSiteAdministrationServiceApplication/GetUnusedScopesForConsumer' MessageId: 'urn:uuid:d723fdb2-5077-4690-8c8b-5f5a3a617809' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.57 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Topology e5mb Medium WcfReceiveRequest: LocalAddress: 'http://SERVER.DOMAIN.COMPANY.local:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc' Channel:
    'System.ServiceModel.Channels.ServiceChannel' Action: 'http://tempuri.org/ISearchSiteAdministrationServiceApplication/GetUnusedScopesForConsumer' MessageId: 'urn:uuid:d723fdb2-5077-4690-8c8b-5f5a3a617809' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.57 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (ExecuteWcfServerOperation) 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.57 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (ExecuteWcfServerOperation). Execution Time=2.24413996750984 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.57 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dka2 High SearchServiceApplicationProxy::GetUnusedScopesForConsumer--Id: Elapsed Time: 15.6252 Proxy Name/ID: Search Service Application COMPANY/dc890470-4731-4922-877e-5de1b44cf369
    EndPoint:
    http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.57 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dka1 High SearchServiceApplicationProxy::GetVolatileScopeInfo--Proxy Name:Search Service Application COMPANY EndPoint:
    http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.57 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dk8z High SearchServiceApplicationProxy::GetChannel--Channel Creation time: 0 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.57 w3wp.exe (0x19AC) 0x2A0C SharePoint Foundation Topology e5mc Medium WcfSendRequest: RemoteAddress: 'http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc' Channel: 'Microsoft.Office.Server.Search.Administration.ISearchServiceApplication'
    Action: 'http://tempuri.org/ISearchSiteAdministrationServiceApplication/GetVolatileScopeInfo' MessageId: 'urn:uuid:aea3f8f0-307e-4431-ac03-868ce06bd9a6' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.59 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Topology e5mb Medium WcfReceiveRequest: LocalAddress: 'http://SERVER.DOMAIN.COMPANY.local:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc' Channel:
    'System.ServiceModel.Channels.ServiceChannel' Action: 'http://tempuri.org/ISearchSiteAdministrationServiceApplication/GetVolatileScopeInfo' MessageId: 'urn:uuid:aea3f8f0-307e-4431-ac03-868ce06bd9a6' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.59 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (ExecuteWcfServerOperation) 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.59 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (ExecuteWcfServerOperation). Execution Time=1.86140976017902 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.59 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dka2 High SearchServiceApplicationProxy::GetVolatileScopeInfo--Id: Elapsed Time: 15.6252 Proxy Name/ID: Search Service Application COMPANY/dc890470-4731-4922-877e-5de1b44cf369
    EndPoint:
    http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.59 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dka1 High SearchServiceApplicationProxy::GetScopeRowCount--Proxy Name:Search Service Application COMPANY EndPoint:
    http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.59 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dk8z High SearchServiceApplicationProxy::GetChannel--Channel Creation time: 0 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.59 w3wp.exe (0x19AC) 0x2A0C SharePoint Foundation Topology e5mc Medium WcfSendRequest: RemoteAddress: 'http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc' Channel: 'Microsoft.Office.Server.Search.Administration.ISearchServiceApplication'
    Action: 'http://tempuri.org/ISearchSiteAdministrationServiceApplication/GetScopeRowCount' MessageId: 'urn:uuid:0b6a31bf-b4a0-40f3-be48-d1bc9ddba1f4' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.60 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Topology e5mb Medium WcfReceiveRequest: LocalAddress: 'http://SERVER.DOMAIN.COMPANY.local:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc' Channel:
    'System.ServiceModel.Channels.ServiceChannel' Action: 'http://tempuri.org/ISearchSiteAdministrationServiceApplication/GetScopeRowCount' MessageId: 'urn:uuid:0b6a31bf-b4a0-40f3-be48-d1bc9ddba1f4' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.60 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (ExecuteWcfServerOperation) 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.60 w3wp.exe (0x1028) 0x2ED8 SharePoint Server Search Query Processor dm6f Medium PluggableSecurityTrimmerManager:SetSearchApplicationToUse: Set SearchApplication to 'Search Service Application COMPANY' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.60 w3wp.exe (0x1028) 0x2ED8 SharePoint Server Search Query Processor dm22 Medium Resetting cookie: Old value = '', new value = 'select workid from scope() where "scope"='Documents'' 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.60 mssearch.exe (0x12E0) 0x1ECC SharePoint Server Search Query Processor e0pg Medium 0569d1f1-aab9-4e7c-9495-fe72b43c25cf-query-0: Query completed 0 ms, detailed time:  Query stage execution ms times:
    0 0 0 0 0 0 0 0   Query stage cpu ms times: 0 0 0 0 0 0 0 0   Query stage hit counts: 1 1 3 7 1 0 0 0   Cursor count: 10  Mapped page count: 19  Total index count: 10    [srequest.cxx:5526]  d:\office\source\search\native\ytrip\tripoli\cifrmwrk\srequest.cxx 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.63 w3wp.exe (0x1028) 0x2ED8 SharePoint Server Search Query Processor e2jt Medium Completed query execution with timings: total:31 dup:0 sec:15 join:0 ft:0 sql:16. Join Retry: 0. Security Trimming Retry:
    0. Duplicate removal Retry: 0. 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.63 w3wp.exe (0x1028) 0x2ED8 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (ExecuteWcfServerOperation). Execution Time=31.6202198882819 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:54.63 w3wp.exe (0x19AC) 0x2A0C SharePoint Server Search Query dka2 High SearchServiceApplicationProxy::GetScopeRowCount--Id: Elapsed Time: 46.8756 Proxy Name/ID: Search Service Application COMPANY/dc890470-4731-4922-877e-5de1b44cf369
    EndPoint:
    http://SERVER:32843/956d5052b65f4d0d8d92f4ca3df5fcbe/SearchService.svc 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:55.12 w3wp.exe (0x19AC) 0x2A0C SharePoint Foundation Runtime tkau Unexpected Microsoft.SharePoint.SPException: The search service is currently offline. Visit the Services on Server page in SharePoint Central
    Administration to verify whether the service is enabled. This might also be because an indexer move is in progress.    at Microsoft.Office.Server.Search.Internal.UI.SearchAdminPageBase.ErrorHandler(Object sender, EventArgs e)    
    at System.Web.UI.TemplateControl.OnError(EventArgs e)     at System.Web.UI.Page.HandleError(Exception e)     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)    
    at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)     at System.Web.UI.Page.ProcessRequest()     at System.Web.UI.Page.ProcessRequest(HttpContext context)    
    at ASP._layouts_viewscopes_aspx.ProcessRequest(HttpContext context)     at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()     at System.Web.HttpApplication.ExecuteStep(IExecutionStep
    step, Boolean& completedSynchronously) 501b85d0-9d41-42db-82b8-f2ad2e2551f3
    06/03/2013 09:52:55.12 w3wp.exe (0x19AC) 0x2A0C SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (Request (GET:http://sharepoint:80/_layouts/viewscopes.aspx)). Execution Time=1413.40868741698 501b85d0-9d41-42db-82b8-f2ad2e2551f3

  • How to reset values in a Data Form Bean?

    I have created an ADF application that has a search facility in it. The architecture is as follows:
    DataPage (search.jsp) --> DataAction (validateSearch) -->DataAction (refreshCollection) --> DataPage (results.jsp)
    I have successfully created a data form bean to hold the data that is submitted in the search and bind it to the refresh method of the collection. I have also successfully overridden the validate method, which catches and throws and displays appropriate ActionErrors on the search.jsp page.
    I have added a link back to the search.jsp page from the results.jsp page (as a user may wish to perform another search), the ActionErrors are resetting ok but I have not managed to work out how to reset the values of the actual data form bean.
    I have tried several different ways of overriding the reset method within the data form bean but so far have been unsuccessful - I would appreciate any assistance with this matter.
    Shown here is a basic example of a form bean that I have been trying different things out with - I can not get the reset method to even be called - please help!
    package uk.dmf.eg02;
    import javax.servlet.http.HttpServletRequest;
    import org.apache.struts.action.ActionError;
    import org.apache.struts.action.ActionErrors;
    import org.apache.struts.action.ActionForm;
    import org.apache.struts.action.ActionMapping;
    public class searchForm extends ActionForm
    String search;
    public setupForm()
    public ActionErrors validate(ActionMapping mapping, HttpServletRequest request)
    ActionErrors errors = new ActionErrors();
    if (search.trim().length()==0)
    errors.add("search", new ActionError("error.search"));
    return errors;
    public void reset(ActionMapping mapping, HttpServletRequest request)
    System.err.println("EXECUTING RESET METHOD");
    this.search = "";
    public void setSearch(String search)
    this.search = search;
    public String getSearch()
    return search;

    If you run in request scope the reset method is called, however in session scope is't only called once (or never?). See documentation of method reset():
    public void reset(ActionMapping mapping,
    javax.servlet.http.HttpServletRequest request)
    Reset bean properties to their default state, as needed. This method is called before the properties are repopulated by the controller.
    The default implementation does nothing. In practice, the only properties that need to be reset are those which represent checkboxes on a session-scoped form. Otherwise, properties can be given initial values where the field is declared.
    If the form is stored in session-scope so that values can be collected over multiple requests (a "wizard"), you must be very careful of which properties, if any, are reset. As mentioned, session-scope checkboxes must be reset to false for any page where this property is set. This is because the client does not submit a checkbox value when it is clear (false). If a session-scoped checkbox is not proactively reset, it can never be set to false.
    This method is not the appropriate place to initialize form value for an "update" type page (this should be done in a setup Action). You mainly need to worry about setting checkbox values to false; most of the time you can leave this method unimplemented.

  • TS3297 Does anyone know how to reset your security questions?? I loaded an itunes gift card on new ipod but when trying to make a purchase, itunes is asking us the incorrect security questions?!(for 1st time purchase)

    Does anyone know how to reset your security questions?? I loaded an itunes gift card on new ipod but when trying to make a purchase, itunes is asking us the incorrect security questions?! (for 1st time purchase)  I know the questions are not what I chose because I wrote the questions & answers down when setting up the ipod. Any ideas??!!!

    Reset Security Questions
    Frequently asked questions about Apple ID
    Manage My Apple ID
    Or you can email iTunes Support at iTunes Store Support.
    If all else fails:
      1. Go to: Apple Express Lane;
      2. Under Product Categories choose iTunes;
      3. Then choose iTunes Store;
      4. Then choose Account Management;
      5. Now choose iTunes Store Security and answer the bullet questions, then click
          Continue;
      6. Sign in with your Apple ID and press Continue;
      7. Under Contact Options fill out the information and advise iTunes that you would
          like your security/challenge questions reset;
      8. Click Send/Continue.
    You should get a response within 24 hours by email.
    In the event you are unsuccessful then contact AppleCare - Contacting Apple for support and service.
    Another user had success doing the following:
    I got some help from an apple assistant on the phone. It is kind of round about way to get in.
    Here is what he said to do and it is working for me...
      a. on the device that is asking you for the security questions go to "settings", > "store" >
          tap the Apple ID and choose view"Apple ID" and sign in.
      b. Tap on payment information and add a credit/debit card of your preference then select
          "done", in the upper right corner
      c. sign out and back into iTunes on the device by going to "settings"> "store" > tap the
          Apple ID and choose "sign-out" > Tap "sign -in" > "use existing Apple ID" and you
          should be asked to verify your security code for the credit /debit card and NOT the
          security questions.
      d. At this time you can remove the card by going back in to edit the payment info and
          selecting "none" as the card type then saving the changes by selecting "done". You
          should now be able to use your iTunes store credit without answering the security
          questions.
    It's working for me ...I just have to put in my 3 digit security pin from the credit card I am using.
    Good Luck friends!

Maybe you are looking for

  • Cisco ASA 5505 AnyConnect SSL VPN problem

    Hi! I have a small network, wiht ASA 5505, 8.4: Inside network: 192.168.2.0/24 Outside: Static IP I would like to deploy a SSL AnyConnect setup. The state: -I give the correct IP from my predefined VPN pool (10.10.10.0/24). But, could not reach any r

  • My computer Crashed and deleted my itunes and now it won't let me sync

    So my computer crached and obviously deleted everything and once it was fixed i redownloaded itunes but it wont let my resync my origional ipod to this library because it says its still connected to the other library and i can't figure out how to put

  • Oracle 9i in solaris Intel

    Hello All, Is possible to install the Oracle 9i in Solaris 8.0 to Intel? T+

  • SSIS write custom logging information to sql 2012 table

    I have a Package that I want to put logging information in to a SQL table. I can do this with a script task but each time the package runs it will open a SQL connection write the log information and then close this connection it will do this 10 times

  • Hotspots created in Framemaker 11 don't work when generating the PDF

    I'm trying to create several hotpots on an image that go to specific locations in a table. I have no problem creating them in Framemaker 11 and the links work fine when I test them using CTL+ALT and the mouse pointer. When I generate the PDF, however