Content Search Web Part not work for Office Web Apps

Hi ,
In Content Search Web Part word documents are not able to open in browser,but in document library  its working.
Office Web Apps not work in Content search web part
Please help me
Regards
Sachin

Below is the display template to open the document in OWA.
<html xmlns:mso="urn:schemas-microsoft-com:office:office" xmlns:msdt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"> 
<head>
<title>AdSpace Picture on top, 3 lines on bottom</title>
<!--[if gte mso 9]><xml>
<mso:CustomDocumentProperties>
<mso:TemplateHidden msdt:dt="string">0</mso:TemplateHidden>
<mso:ManagedPropertyMapping msdt:dt="string">&#39;Picture URL&#39;{Picture URL}:&#39;PublishingImage;PictureURL;PictureThumbnailURL&#39;,&#39;Link URL&#39;{Link URL}:&#39;Path&#39;,&#39;Line 1&#39;{Line
1}:&#39;Title&#39;,&#39;Line 2&#39;{Line 2}:&#39;Description&#39;,&#39;Line 3&#39;{Line 3}:&#39;&#39;,&#39;FileExtension&#39;,&#39;SecondaryFileExtension&#39;,&#39;ContentTypeId&#39;,&#39;ServerRedirectedURL&#39;</mso:ManagedPropertyMapping>
<mso:MasterPageDescription msdt:dt="string">This Item Display Template will show a 304x100 picture of the item on top. The title and the default item description will display to the bottom of the picture with an additional line that is available
for a custom managed property.</mso:MasterPageDescription>
<mso:ContentTypeId msdt:dt="string">0x0101002039C03B61C64EC4A04F5361F385106603</mso:ContentTypeId>
<mso:TargetControlType msdt:dt="string">;#Content Web Parts;#</mso:TargetControlType>
<mso:HtmlDesignAssociated msdt:dt="string">1</mso:HtmlDesignAssociated>
<mso:_dlc_DocId msdt:dt="string">ZRMVMDDDEAE7-1-215</mso:_dlc_DocId>
<mso:_dlc_DocIdItemGuid msdt:dt="string">583b0835-32ff-4d1c-983f-b6ff4a0ef956</mso:_dlc_DocIdItemGuid>
<mso:_dlc_DocIdUrl msdt:dt="string">http://sp2013-dev-6:7000/sites/adspace/_layouts/15/DocIdRedir.aspx?ID=ZRMVMDDDEAE7-1-215, ZRMVMDDDEAE7-1-215</mso:_dlc_DocIdUrl>
<mso:HtmlDesignConversionSucceeded msdt:dt="string">True</mso:HtmlDesignConversionSucceeded>
<mso:HtmlDesignStatusAndPreview msdt:dt="string">http://sp2013-dev-6:7000/sites/adspace/_catalogs/masterpage/Display Templates/Content Web Parts/Item_PictureOnTop.html, Conversion successful.</mso:HtmlDesignStatusAndPreview>
</mso:CustomDocumentProperties>
</xml><![endif]-->
</head>
<body>
    <!--
            Warning: Do not try to add HTML to this section. Only the contents of the first <div>
            inside the <body> tag will be used while executing Display Template code. Any HTML that
            you add to this section will NOT become part of your Display Template.
    -->
    <script>
        $includeLanguageScript(this.url, "~sitecollection/_catalogs/masterpage/Display Templates/Language Files/{Locale}/CustomStrings.js");
    </script>
    <!--
        Use the div below to author your Display Template. Here are some things to keep in mind:
        * Surround any JavaScript logic as shown below using a "pound underscore" (#_ ... _#) token
        inside a comment.
        * Use the values assigned to your variables using an "underscore pound equals"
        (_#= ... =#_) token.
    -->
    <div id="Item_PictureOnTop">
<!--#_
var useWACUrl = !$isEmptyString(ctx.CurrentItem.ServerRedirectedURL);
        if(ctx.ScriptApplicationManager && ctx.ScriptApplicationManager.states){
            useWACUrl = (useWACUrl && !ctx.ScriptApplicationManager.states.openDocumentsInClient);
        var appAttribs = "";
        if(!useWACUrl)
            if (!$isEmptyString(ctx.CurrentItem.csr_OpenApp)) { appAttribs += "openApp=\"" + $htmlEncode(ctx.CurrentItem.csr_OpenApp) + "\"" }; 
            if (!$isEmptyString(ctx.CurrentItem.csr_OpenControl)) { appAttribs += " openControl=\"" + $htmlEncode(ctx.CurrentItem.csr_OpenControl) + "\"" };
        var url = ctx.CurrentItem.csr_Path;
     if($isEmptyString(url)){
            if(useWACUrl)
                url = ctx.CurrentItem.ServerRedirectedURL;
            } else {
                url = ctx.CurrentItem.Path;
var encodedId = $htmlEncode(ctx.ClientControl.get_nextUniqueId() + "_pictureOnTop_");
var linkURL = $getItemValue(ctx, "Link URL");
linkURL.overrideValueRenderer($urlHtmlEncode);
 var iconURL = Srch.ContentBySearch.getIconSourceFromItem(ctx.CurrentItem);
var line1 = $getItemValue(ctx, "Line 1");
var setLineHeightRenderer = function(valueInfoObj)
    if(!$isNull(valueInfoObj) && !valueInfoObj.isEmpty)
        if(!$isNull(valueInfoObj.defaultValueRenderer))
            return valueInfoObj.defaultValueRenderer(valueInfoObj);
        else
            return valueInfoObj.toString();
    else
        return "&nbsp;";
var line2 = $getItemValue(ctx, "Line 2");
line2.overrideValueRenderer(setLineHeightRenderer);
var line3 = $getItemValue(ctx, "Line 3");
line3.overrideValueRenderer(setLineHeightRenderer);
var pictureURL = $getItemValue(ctx, "Picture URL");
var pictureId = encodedId + "picture";
var pictureMarkup = Srch.ContentBySearch.getPictureMarkup(pictureURL, 304, 100, ctx.CurrentItem, "cbs-pictureOnTopImg", line1, pictureId);
var containerId = encodedId + "container";
var pictureLinkId = encodedId + "pictureLink";
var pictureContainerId = encodedId + "pictureContainer";
var dataContainerId = encodedId + "dataContainer";
var line1LinkId = encodedId + "line1Link";
var line1Id = encodedId + "line1";
var line2Id = encodedId + "line2";
var line3Id = encodedId + "line3";
 _#-->
        <div class="top-content-box" id="_#= containerId =#_" data-displaytemplate="ItemPictureOnTop">
            <div class="top-content-img" id="_#= pictureContainerId =#_">
                <a class="cbs-pictureImgLink" href="_#= $urlHtmlEncode(url) =#_" title="_#= $htmlEncode(line1) =#_" target="_blank" id="_#= pictureLinkId =#_">
                    _#= pictureMarkup =#_
                </a>
            </div>
                <h3 id="_#= line1Id =#_"><a class="cbs-pictureOnTopLine1Link" target="_blank" href="_#= $urlHtmlEncode(url) =#_" title="_#= $htmlEncode(line1) =#_"
id="_#= line1LinkId =#_"> _#= line1 =#_ </a></h3>      
                <span class="content-date" title="_#= $htmlEncode(line2) =#_" id="_#= line2Id =#_"><img class="cbs-Thumbnail" src="_#= $urlHtmlEncode(iconURL) =#_"
alt="_#= $htmlEncode(line1.defaultValueRenderer(line1)) =#_" id="_#= pictureId =#_" />_#=line2=#_</span>                
        </div>
    </div>
</body>
</html>
Basically,ctx.CurrentItem.ServerRedirectedURL is calculated by a managed property ServerRedirectedURL which needs to be included in the display template.
Problem solved.
Nehal Bhandari,ATL, Nagarro Softwares

Similar Messages

  • Search Bar is not working for me in windows 7 32 bit OS

    Search Bar is not working for me in windows 7 32 bit OS'''bold text'''

    Hi Sameer,
    There's no version of Windows Vista that is supported, regardless of service packs.  You can always upgrade to Windows 7, though.
    Your other option is to use Brackets, the open source editor that Edge Code is based on.  It still supports Vista for now.  The downside is that Brackets lacks some features of Edge Code: Kuler integration, Edge Inspect integration, and Edge Web Fonts code hints -- although all of those except Kuler are offered as optional Brackets extensions too (you just have to install them).
    Hope that helps,
    - Peter

  • BUG in iOS7: Post iOS7 upgrade, search option does not work for "Messages". If you want to search a contact name in Messages who is way below the list, the search will not yield any result.

    BUG in iOS7: Post iOS7 upgrade, search option does not work for "Messages". If you want to search a contact name in Messages who is way below the list, the search will not yield any result.

    These are user forums. You are not speaking to Apple here. Report your problem at Apple Feedback.

  • RSS Viewer Web part not working after installing kb2767793

    Hi,
    I just patched our sharepoint farm with kb2767793 - after installing this CU the RSS Web part is no longer loading as expected on our pages, it just keeps trying to load forever.
    If I choose to edit the page the RSS feed loads with no issues when in edit mode. When going back to published view I experience the same issue.
    The symptom is only present if the page contains more web parts eg Content Query Web part. If I create a page with only the RSS viewer web part it functions as expected.
    Has anyone experienced this or has any suggestions? 
    Thanks,
    Luke

    We have the same issue after installing the April security updates.
    I opened a support case with Microsoft and they proposed these using one of these solutions (see below).
    Unfortunately these did not work for us.
    Summary
     Page Level: add a CEWP to the page and add the following custom script to it:
    Save the following JavaScript to a .txt file and upload the file to any document library in the root of the site. 
    <Script Type="text/javascript"> 
    function CustomUpdateFormDigest() 
    if(window._spPageContextInfo != null) 
    var $v_2 = window._spPageContextInfo; 
    var $v_3 = $v_2.webServerRelativeUrl; 
    var $v_4 = window._spFormDigestRefreshInterval; 
    UpdateFormDigest($v_3, $v_4); 
    CustomUpdateFormDigest(); 
    </Script>
    Adding the above script to the Master Page
    3)     Web Application Level:
    Turn off Security Validation for the pages from Central Admin -> Web Application -> General Settings.
    Gncntry

  • List Filter Web Part not Working

    Hi. I'm implementing a SharePoint Server 2013 Enterprise Farm on a new Customer. I've created the desired site structure. When trying to use the List Filter web part, i can configure, connect sucessfully to another webpart and even filter.
    The problem is that the Webpage Dialog with the filters, the radio buttons show up but no description is associated to them. Regardless if i configure the description in the web part properties. I even gone further, and tried do create a choice filter,
    with the same behavior.
    Any help would be appreciated.
    Thank you,
    Tiago Costa   

    Hi,
    According to your post, my understanding is that you have an issue about the list filter web part.
    Per my knowledge, the description column is used to display an alternative value in the Select Filter Value(s) dialog box, which displays when a user clicks the Filter button.
    For example, if you have a Month number column that uses the numbers 1 though 12 as month values, you can use a Month Name column as the Description column so that January is displayed instead of 1, February instead of 2, and so on.
    http://office.microsoft.com/en-in/sharepoint-server-help/connect-a-filter-web-part-to-a-list-view-web-part-HA010250989.aspx
    I tried to reproduce the issue in my environment, however, when I chose the
    Created column for Description field, when I clicked the filter button, the created time displayed.
    Did the issue occur in other pages? You can recreated a new page, then check whether it works.
    You can also use other browsers to check whether it works.
    Thanks,
    Jason
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jason Guo
    TechNet Community Support

  • Incoming Email not working for one web app, but IS working for others in same farm.

    I have enabled incoming email in a large multi-web application farm running SharePoint 2013 SP1 and the Feb 2015/March 2015 CUs that were pushed down in Windows Updates.  It works just fine for two web applications, but it will not work for one particular
    web application. I see the email land in the /drop folder. If I remove the email address from the library in http://nonworkingapp web
    application and use it on a library in a http://working web application, then the email is processed successfully. Conversely,
    if I take an address from a library in http://working and move it to a library inhttp://nonworkingapp it
    does not work. I've tried multiple site collections on http://nonworkingapp. This rules out any SMTP issues, etc. and means
    the issue is bound to this web application. Permissions are the same between the "non-working" and "working" locations: domain users are members on the site, and the library inherits permissions from the site.  The App Pool and Timer
    Service accounts have rights to the folder and to the library.
    The error in the ULS log is the typical error processing message, but it gives no additional information even though I have enabled Verbose logging.
    The Incoming E-Mail service has completed a batch. The elapsed time was 00:00: 00.0156294. The service processed 2 message(s) in total. Errors occurred processing 2 message(s): Message ID: Message
    ID:
    Typically, you see "alias not found" or some permissions or quota issue here, but this issue is NOT the same as those. In this case NO additional information is provided in ULS.
    Edit: running stsadm.exe -o refreshdms -url http://one/failing/site fixed some similar issues where "Unknown alias" was
    reported even though the list did have an alias (see here:http://blogs.technet.com/b/vinitt/archive/2009/07/15/e-mail-enabled-list-alias-information-is-not-synchronized-between-configuration-database-and-content-database.aspx).
    This did not fix the issue for the case mentioned above.
    What could possibly be the issue preventing incoming email from working on this one web application?

    Thanks for your reply.  Incoming E-Mail was running on all 3 WFE, however I do not think this was the cause.  As noted, _other_ emails send to http://workingapp are working just fine.  I can send two emails - one to a library on http://workingapp
    and another on http://notworkingapp.  The email to http://notworkingapp will sit in the drop folder, while the one to http://workingapp will be processed correctly.  In addition, the ULS log on WFE1 indicates an attempt to process the file fails.
     So clearly, the timer job on WFE1 is running and attempting to process the file.  For kicks, I disabled the service on WFE2 and WFE3, but with no change in the behavior.
    WRT to #1, I have done this already (as noted in the original post).  I can remove an alias from http://workingapp and place it on http://nonworkingapp and it is not processed.  If I return it to http://workingapp it is processed.  In other
    words, I go into Library Settings -> Incoming Email for a working library, and copy the alias, then disable incoming email for that library.  I then go to Library Settings -> Incoming Email for a non-working library, enable incoming email, and paste
    the alias.  Once done, emails sent to the alias are not processed.  I then do the reverse, and it works again.
    On #2, I have already tried multiple libraries on http://nonworkingapp (also as noted in the original post).
    In my environment, incoming email does not work for any library on http://nonworkingapp, but does work for any library on http://workingapp.  Troubleshooting listed above has ruled out any problem with basic mail server configuration or library settings
    - the problem is bound to http://nonworkingapp
    I'm not sure what you mean by "steps to reproduce the issue".  If I knew that, I would probably be able to solve the issue.  The best I could come up with to describe the situation would be:
    Set up SP 2010 in a three-node configuration with multiple web apps
    Enable incoming email and confirm it works
    Migrate to a SP2013 SP1 farm in a three node configuration.
    Enable a new email alias for a library
    Observe that it doesn't work for one web application.
    Obviously, it's pretty unlikely that attempting that in a lab would actually have the same result.

  • List search box does not work for some users Sharepoint 2013

    Hello,
    I have a list for which I've enabled a search box (from web part settings, miscellaneous).
    The problem is that for me and the others admins the search works perfectly, but for the other users who have only Read
    privilege the search doesn't work and shows the loading icon forever.
    Why does this happen?
    How can I enable search box
    for the list for all users?
    Please help
    me

    Hi,
    For troubleshooting your issue, please go to Central Administration -> Application Management ->Manage Service applications->  select search service application -> click Permissions -> add "Everyone" with Full Control.
    Best Regards,
    Eric           
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • PowerPoint presentations not working with Office Web Apps

         Hi,
         I have deployed Lync 2013 and Office Web Apps Server in order to share PowerPoint presentations. All te sharings are working fine (Desktop, Program, Whiteboard, Poll) but PowerPoint presentations.
         I have re-installed Office Web Apps Server several times but it doesn't work:
         Discovery URL is OK
         Event IDs in Lync Server Event Viewer are OK
         I have checked certificate and created it twice and that's not the problem (when tried to use a wrong certificate, the behaviour was different).
         Tried aspnet_regiis but didn't worked.
         Both Lync Server and Office Web Apps Server are updated.
         Servers are Windows Server 2008 R2 SP1.
         I have tested both Lync 2013 and Lync 2013 Basic clients but no one works.
         When I share a PowerPoint, I can see it follows the whole way through LyncShare, Lync Server and Office Web Apps Server. PowerPoint files get to Office Web Apps Server (different name but I can move then to other workstation and check
    they are the files shared).
         Clients begin showing a "Loading..." but end showing "Network connectivity lost or server too busy" (after 90 seconds more or less).
         If I get URL from Lync-UccApi-0:
         https://wacserver.domain/m/Presenter.aspx?a=0&amp;e=true&amp;WopiSrc=https%3A%2F%2Flyncpool.domain%2FDataCollabWeb%2Fwopi%2Ffiles%2F11-1-90C848&amp;access_token=AAMFEECCjUt7489YhSlhQY4GBWcGEIsJ8vG8JQH9w0g_TTTVe3aBEECCjUt7489YhSlhQY4GBWeCApwQgyBHjXVmSaUT70sAAlMNX4oAfTt5Nqgy5sJwqlLneNAxGYYIsFS5edC90AgIDURhdGFDb2xsYWJXZWI&amp;&lt;fs=FULLSCREEN&amp;&gt;&lt;rec=RECORDING&amp;&gt;&lt;thm=THEME_ID&amp;&gt;&lt;ui=UI_LLCC&amp;&gt;&lt;rs=DC_LLCC&amp;&gt;
         If I put this URL in the browser, it turns black and shows "Loading..." and, after a long while, "PowerPoint Web App...", but it remains in this state (loading) without working.
         In the Office Web Apps Server Event Viewer there are some errors related to other services I'm not using, as OneNote, or for Monitoring with the "PositiveDirect" and "NegativeDirect" tokens. Machine also answers it's
    Unhealthy, but as I have read, this is not a problem.
         In the ULS Logs I just see errors related to these events but logs for PowerPoint work fine. And IIS is answering with "200" (although there are a number of petitions that seem to be repeated:
    2013-12-02 16:23:15 WACSERVER_IP GET /m/getdata.ashx s=a%3D0%26WopiSrc%3Dhttps%253a%252f%252flyncpool.domain%252fDataCollabWeb%252fwopi%252ffiles%252f11-1-90C848%26access_token%3DAAMFEECCjUt7489YhSlhQY4GBWcGEBpfUkNifoaqnZCEMbqB4haBEECCjUt7489YhSlhQY4GBWeCApwQgyCHF8jSo70Xws4SrDZyRP3zgH8FZLobf75sHXgxfCmyK4YIxsoPfNC90AgIDURhdGFDb2xsYWJXZWI%26rec%3Dfalse%26thm%3D1%26ui%3Des-ES%26rs%3Des-ES%26%3D&n=-1&r=1386001395077
    443 - Client_IP Mozilla/4.0+(compatible;... 200 0 0 218
    2013-12-02 16:23:15 WACSERVER_IP GET /m/getdata.ashx s=a%3D0%26WopiSrc%3Dhttps%253a%252f%252flyncpool.domain%252fDataCollabWeb%252fwopi%252ffiles%252f11-1-90C848%26access_token%3DAAMFEECCjUt7489YhSlhQY4GBWcGEBpfUkNifoaqnZCEMbqB4haBEECCjUt7489YhSlhQY4GBWeCApwQgyCHF8jSo70Xws4SrDZyRP3zgH8FZLobf75sHXgxfCmyK4YIxsoPfNC90AgIDURhdGFDb2xsYWJXZWI%26rec%3Dfalse%26thm%3D1%26ui%3Des-ES%26rs%3Des-ES%26%3D&n=-1&r=1386001396078
    443 - Client_IP Mozilla/4.0+(compatible;... 200 0 0 203
    2013-12-02 16:23:17 WACSERVER_IP GET /m/getdata.ashx s=a%3D0%26WopiSrc%3Dhttps%253a%252f%252flyncpool.domain%252fDataCollabWeb%252fwopi%252ffiles%252f11-1-90C848%26access_token%3DAAMFEECCjUt7489YhSlhQY4GBWcGEBpfUkNifoaqnZCEMbqB4haBEECCjUt7489YhSlhQY4GBWeCApwQgyCHF8jSo70Xws4SrDZyRP3zgH8FZLobf75sHXgxfCmyK4YIxsoPfNC90AgIDURhdGFDb2xsYWJXZWI%26rec%3Dfalse%26thm%3D1%26ui%3Des-ES%26rs%3Des-ES%26%3D&n=-1&r=1386001397093
    443 - Client_IP Mozilla/4.0+(compatible;... 200 0 0 203
    2013-12-02 16:23:18 WACSERVER_IP GET /m/getdata.ashx s=a%3D0%26WopiSrc%3Dhttps%253a%252f%252flyncpool.domain%252fDataCollabWeb%252fwopi%252ffiles%252f11-1-90C848%26access_token%3DAAMFEECCjUt7489YhSlhQY4GBWcGEBpfUkNifoaqnZCEMbqB4haBEECCjUt7489YhSlhQY4GBWeCApwQgyCHF8jSo70Xws4SrDZyRP3zgH8FZLobf75sHXgxfCmyK4YIxsoPfNC90AgIDURhdGFDb2xsYWJXZWI%26rec%3Dfalse%26thm%3D1%26ui%3Des-ES%26rs%3Des-ES%26%3D&n=-1&r=1386001398093
    443 - Client_IP Mozilla/4.0+(compatible;... 200 0 0 218
    2013-12-02 16:23:19 WACSERVER_IP GET /m/getdata.ashx s=a%3D0%26WopiSrc%3Dhttps%253a%252f%252flyncpool.domain%252fDataCollabWeb%252fwopi%252ffiles%252f11-1-90C848%26access_token%3DAAMFEECCjUt7489YhSlhQY4GBWcGEBpfUkNifoaqnZCEMbqB4haBEECCjUt7489YhSlhQY4GBWeCApwQgyCHF8jSo70Xws4SrDZyRP3zgH8FZLobf75sHXgxfCmyK4YIxsoPfNC90AgIDURhdGFDb2xsYWJXZWI%26rec%3Dfalse%26thm%3D1%26ui%3Des-ES%26rs%3Des-ES%26%3D&n=-1&r=1386001399078
    443 - Client_IP Mozilla/4.0+(compatible;... 200 0 0 328
    2013-12-02 16:23:20 WACSERVER_IP GET /m/getdata.ashx s=a%3D0%26WopiSrc%3Dhttps%253a%252f%252flyncpool.domain%252fDataCollabWeb%252fwopi%252ffiles%252f11-1-90C848%26access_token%3DAAMFEECCjUt7489YhSlhQY4GBWcGEBpfUkNifoaqnZCEMbqB4haBEECCjUt7489YhSlhQY4GBWeCApwQgyCHF8jSo70Xws4SrDZyRP3zgH8FZLobf75sHXgxfCmyK4YIxsoPfNC90AgIDURhdGFDb2xsYWJXZWI%26rec%3Dfalse%26thm%3D1%26ui%3Des-ES%26rs%3Des-ES%26%3D&n=-1&r=1386001400076
    443 - Client_IP Mozilla/4.0+(compatible;... 200 0 0 234
    2013-12-02 16:23:20 WACSERVER_IP GET /m/getdata.ashx s=a%3D0%26WopiSrc%3Dhttps%253a%252f%252flyncpool.domain%252fDataCollabWeb%252fwopi%252ffiles%252f11-1-90C848%26access_token%3DAAMFEECCjUt7489YhSlhQY4GBWcGEBpfUkNifoaqnZCEMbqB4haBEECCjUt7489YhSlhQY4GBWeCApwQgyCHF8jSo70Xws4SrDZyRP3zgH8FZLobf75sHXgxfCmyK4YIxsoPfNC90AgIDURhdGFDb2xsYWJXZWI%26rec%3Dfalse%26thm%3D1%26ui%3Des-ES%26rs%3Des-ES%26%3D&n=-1&r=1386001401076
    443 - Client_IP Mozilla/4.0+(compatible;... 200 0 0 203
         It seems that something is not working between the clients and Office Web Apps Server. There is not a firewall and machines see each other. Certificate is accepted.
         I have tried so many thing but none of them worked.
         Does anybody have an idea?
         Thanks!

         Hi Thamara,
         There is a HLB but I thought of that and tested both: with HLB and pointing just a Front End, without HLB. In both cases, results were the same.
         I can access the Front End pool web services from the WAC server using the IE.
         I'm watching now this event:
    <?xml version="1.0" encoding="utf-16"?>
    <HealthReport xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <HealthMessage>BroadcastServicesWatchdog_Wfe reported status for BroadcastServices_Host in category '3'. Reported status: Contacting Participant.svc failed with an exception: The remote server returned an error: (404) Not Found.</HealthMessage>
    </HealthReport>
         Reading some posts, it's a known issue fixable by adding HTTP-Activation feature... in Windows 2012. I have a Windows 2008 and .NET Framework 4.5 is installed. I've tried to add HTTP-Activation feature from .NET Framework 3.5, but a number
    of format errors appear. I don't know how I could fix it in Windows 2008.
         In addition, as I'm making test for share PPT and they aren't finally showed, this error appears also:
    <?xml version="1.0" encoding="utf-16"?>
    <HealthReport xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
      <HealthMessage>PowerPointViewingServicesWatchdog_App reported status for PPTConversionService in category '0'. Reported status: AppManager: A request appears to be stuck in the queue. [State: ReadyToWork] [Start Time: 12/03/2013 10:35:07] [CorrelationId:
    ec4db345-0e8c-477e-ac0e-71afcb9a8efd] [DocId: https%3A%2F%2FLYNCPOOL.DOMAIN%2FDataCollabWeb%2Fwopi%2Ffiles%2F1-1-2BCF63F] [ClusterId: 0] [RequestId: 51e9263e-fc78-46b0-93ca-de48272dd2bc] [Current InProgress Queue Length: 4]</HealthMessage>
    </HealthReport>
         It seems that PPTs are being queued as they aren't actually showed.
         Does this give you any clue?
         Thank you very much.
         Kind regards.

  • Room content search in Collaboration not working

    Hi,
    I have created one collaboration room, it has documents and discussions. I have configured the indexing for the room. Now i am using the Search Room iview in collaboration for those particular room to search the discussion forum, it is working fine, but problem in searching the documents inside the room which gives result as 'file not found'.
    But i am using Tool Area Search Option for searching the same content,it will display the files.
    I followed the steps to create and configure the index.
    System Administration --> System Configuration --> KM --> Index Administration --> create the index for those rooms.
    I have set Datasource to "room_extension" in the index and "collaboration" folder for discussion search. please let me know if I miss anything.
    Thanks in Advance..
    Prakash.

    Prakash,
      Which template have you used for room creation- SAP std
    or custom ? if custom think you may have to map iview
    parameters properly for the search iview too.
    It needs the following : RoomStructureRid = roomstructure_rid.
    Also cross check the steps with this url
    http://help.sap.com/saphelp_nw04/helpdata/en/8c/d79e420fc40b31e10000000a1550b0/content.htm
    Points are welcome if this helps
    Regards
    Vineeth

  • Content search webpart sorting not working

    Using the Content Search webpart I have created a query that rollsup all the subsites of a particular path, which is working well. However, I have tried sorting using he sort by term SPSiteURL, unfortunatly that is not working. Does anyone have any idea
    what I am doing wrong.
    davidh

    Hi Cameron,
    Thanks for the reply. I find that hard to accept becuase I can get the same webpart to sort like I want it to at our SharePoint Online sites, granted the sorting feature is in a diferent location within the edit webpart dialog but still basically the same
    feature. Also, I would think that the SPSiteURL sort term does and should include the entire URL, which is unique to each site, which means that it should sort on the entire URL.
    I think that it is reasonable to expect to be able to achieve this in some manner, maybe not the way I am trying to do it, but I have to think I am not the first person to want to present the results of subsites sorted alpha-numerically.
    Thanks,
    davidh

  • SharePoint 2010 List View Web Part not showing for read-only users?

    Hello all,
    I have List View Webparts on my Blank Web Part page, and it's not showing for Read-Only users.
    Is this intended by Microsoft or is it a bug?
    Thank you!

    Hi,
    According to your post, my understanding is that the read only user could not see the list view web part.
    Per my knowledge, the issue may be cause that the user do not have the proper permission for the list.
    1. Check whether the user can access the list.
    2. Check whether the user can view all the items instead of partial items in the list.
    3. Check whether there are some fields refer to other lists or terms, especially the lookup field or managed metadata filed.
         If that is the case, make sure the user can access the lookup list.
    Thanks,
    Jason
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jason Guo
    TechNet Community Support

  • Account search functinality is not working for one user in portal

    Hi friends,
    We have configured E.P 7.0 with CRM 5.0 and configured CRM PCUI business package.
    We have a role called <b>accounts and products</b> in portal. So accounts can be searched in this role.
    Now our severity issue is for one of the super user,for ex su1, accounts search is not working in portal but the same is working in CRM GUI.
    for example if we search for an account 233445(or any other account) in portal its showing no data found but if we search with the same criteria data is displaying CRM GUI.
    We have checked with other 2 super ids. Both ends portal and gui search is working fine.
    Am unable to figure out whats the cause of the issue as search is not working only for one user su1 .
    we have checked by restarting the server also to clear the memory cache.But still search is not working in portal.
    Could anyone of u please advice ASAP as this is severity issue.
    Thanks & Regards
    Sireesha.

    Hi srinivas,
      I have checked both the users credentials,permissions,groups in the GUI and also in the portal.
      Both of the users profiles are assigned as same.
       Could you please advice is there any other way to check it out?
      Regards
      Sireesha.

  • Recovery media kit order web page not working for Canada site

    The laptop crashed (Pavilion G6-2288ca with Windows 8). I'm planning to replace the hard drive. I want to order the recovery media kits from hp but the Canada site is not working. After I entered the postal code, the site says it is temperarily out of service. I tried the same on the US site with a pretended zipcode and it worked fine. Can someone please help?
    Thanks.

    Try phoning HP Support. 1-800-474-6836
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • CSS Menu drop down part not working for ie8 and flashing shut on iPhone 5 browser

    My CSS drop down menu will not show up in ie8 and flashes then shuts on iPhone 5 browsers (responsive design)..using code from a themeforest template. I am using CSS (HTML only) in the BC menu system. without further adieu here is the code.
    HTML (I removed the BC javascript)______________________
    <div id="navigation">
    <ul>
    <li><a href="/index.htm">Home</a></li>
    <li><a href="/about">About</a>
    <ul>
    <li><a href="/leadership">Leadership</a></li>
    <li><a href="/giving">Giving</a></li>
    <li><a href="/careers">Careers</a></li>
    <li><a href="/contact">Contact</a></li>
    </ul>
    </li>
    </ul>
    </div>
    CSS______________________
    #navigation {
    float: right;
    #navigation ul, #navigation li {
    list-style:none;
    padding:0;
    margin:0;
    display:inline;
    #navigation ul li{
    float:left; 
    position:relative;
    #navigation ul li a {
    font-family: Arial, sans-serif;
    display: inline-block;
    color: #888;
    padding: 40px 6px 10px 6px;
    margin: 0 5px;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 3px solid transparent;
    #navigation ul li a:hover{
    border-bottom: 3px solid #555;
    #navigation ul ul {
    opacity: 0;
    margin: -3px 0 0 5px;
    filter: alpha(opacity=0);
    position: absolute;
    top:-99999px;
    left: 0;
    background: #fff;
    border: 1px solid #dddddd;
    border-top: 3px solid #555;
    z-index: 999;
    #navigation ul ul li a:hover {
    border-bottom: 1px solid #ddd;
    #navigation ul ul li a {
    padding: 8px 0;
    display: block;
    width: 130px;
    margin: 0 16px;
    font-family: Arial, sans-serif;
    font-weight: normal;
    font-size: 12px;
    border-bottom: 1px solid #dddddd;
    border-top: 1px solid transparent;
    #navigation ul ul ul {
    position:absolute;
    top:-99999px;
    left:100%;
    opacity: 0;
    margin: -3px 0 0 0;
    z-index: 999;
    #navigation ul ul ul li a {
    border-bottom: 1px solid #dddddd !important;
    border-top: 1px solid transparent;
    #navigation ul ul li:last-child a, #navigation ul ul li:last-child a:hover {
    border-bottom: 1px solid transparent
    #navigation ul ul ul li:last-child a {
    border-bottom: 1px solid transparent !important
    #navigation ul li:hover>ul{
    opacity: 1;
    position:absolute;
    top:99%;
    left:0;
    #navigation ul ul li:hover>ul{
    position:absolute;
    top:0; left:100%;
    opacity: 1;
    z-index:497;
    background: #fff border: 0;
    #navigation ul li:hover > a {
    color: #444;
    #navigation ul ul li:hover > a {
    border-top: 1px solid transparent;
    color: #444;
    #current {
    font-weight: bold !important;
    color: #444 !important;
    border-bottom: 3px solid #555 !important;

    Well to show the menu it runs off opacity, Opacity is not cross browser and IE8 as you noticed will not work with it.
    This menu method of a CSS menu is also not mobile friendly.
    You will need the MS filters to work in older IE's
    http://css-tricks.com/snippets/css/cross-browser-opacity/

  • ISight not working for non-Apple apps under particular user account

    I noticed that my iSight built into Macbook Pro 15" is not working anymore for non-Apple apps (Skype and Webex at least) and working for Facetime and Messages Beta under same account.
    I tried to test it using different account on OS X with Skype and it is working great!
    I'm using 10.7.3.
    Any advice?

    Hi,
    I take it that in System Information the camera is listed under USB items ?
    Your speps say OS x 10.7.2
    Have you updated to OS X 10.7.3 ?
    If you have I would start with that by doing a COMBO Version (Not using Software Update)
    This will be everything that has been updated since OS X 107 came out and may catch those hard to trace issues.
    Using the FInder > Go Menu > Hold the ALT key and Select the Library that appears > then navigate to Preferences.
    In here find the Skype .plist.
    Open it with Quick Look.
    Can you capture that (Apple/CMD ( or ⌘) + Shift + 4 together (Also tap space bar at the end to get the Window) ) ? and post it here.
    I don't use Skype and don't have the .plist to see if it lists the camera.
    If it does it might pay to delete the.plist and force Skype to re-***** the hardware.  (It also depends how much of your other settings are in there)
    In the meantime if you go to the Skype Preferences can you see a Preview of the camera ?
    Can you turn Off access to the camera and turn it On again in Skype ?
    Skype does use Flash Player to do the Video.
    Is Webex a browser led thing that uses Flash ?
    If it looks like it is a Flash Issue do you have the GoogleTalk Video Plugin installed (there is a standalone and it is part of Chrome) ?
    9:08 PM      Saturday; February 18, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.3)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

Maybe you are looking for

  • LR posted to Facebook is no longer working for me.  Says album name cannot be assigned.

    Before the last update to LR I could post to Facebook via LR with no issues. After the update I get the message something to the effect of Album name cannot be assigned.  I have tried with and without spaces in the name and same outcome.  Any suggest

  • Substitution of Business Area for Tax Line Items for Invoices posted in MM

    Hi We have one Business Area for every company code. A substitution rule has been created to populate Business Area in Tax Line Items, while booking vendor invoice. The substitution rule has been defined as Prerequite Company Code = 1234 and GL = 132

  • Not Updating DashBoard

    Hi, I am facing one issue like, AR Dashboard not updating for jan 2010. But test of the dashboards are updated. I done update row count for AR table in Administrator. Replaced AR table in SQLYog. Any one please gudie me in this situation. Thanks EP

  • Group instantiate error

    hi, Scenario : - i had two cap. categories A and B.  Under A the cap groups a1, a2 etc., and under B the cap groups b1, b2 etc., are mapped.  Now i changed the mappings of a1 and a2 to come under hte category B deleting the a1 and a2 under A.  I ran

  • Help ------ Property node in Array

    How the properties of each element of the array are managed? I cannot find anything that works well ! Thank you in advance. Umberto.