The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
230 views

how do you say blank to sharepoint?

I want to create a view whereby it does not include any items which does not have the 'next review date' as blank, i.e. only includes items which have this field populated. How do I say blank to a ...
4
votes
2answers
271 views

Crawler authentication in SharePoint 2013 for STS based external website

I am not able to crawl website that has STS (security token service) based authentication using FAST Search for SharePoint 2013 . I tried Form credentials and Cookie based authentication in Crawl ...
3
votes
1answer
979 views

Accessing sharepoint search engine programatically using c#

How can we perform a sharepoint 2007 search programatically?i.e. I wanna search the whole sharepoint site for a (suppose) hard coded string through coding and get the results. When I'll be running the ...
3
votes
1answer
164 views

Dynamic View on SharePoint lists

I want to create a dynamic view on my list. The list is filtered based on the current users' information coming from an external database i.e. based on which user is logged in, a value is fetched from ...
2
votes
3answers
537 views

Get current Login Name inside RunWithElevatedPrivileges

How to get current Login Name.I'm getting "Sharepoint\System" as Login Name for every user. I need to get the name of the user. public override void ItemAdded(SPItemEventProperties properties) { ...
2
votes
1answer
1k views

What's the difference between Sharepoint Workspace, Groove Workspace, and Shared Folders?

http://social.msdn.microsoft.com/Forums/eu/sharepoint2010general/thread/030f8e7f-d991-48e9-a958-33e83f18004d says: SharePoint Workspace 2010 (No More Groove) provides much more features like ...
2
votes
1answer
117 views

Allow Page Layout via Code

I've created a custom page layout for a search center, and seem to be stuck with the fact that by default, a search center is limited to a subset of approved page layouts. Upon initial deployment of ...
2
votes
1answer
116 views

Microsoft.FASTSearch.Powershell Snapin not available

On a Sharepoint 2010 Server, i tried running a script that needs to use Get-FASTSearchMetadataCategory. Add-PSSnapin "Microsoft.FASTSearch.Powershell" returns an error, that the snap-in is unknown. ...
2
votes
3answers
533 views

How do I set the OSearch14 Service Account via PowerShell

I'm in the process of Scripting a deployment of SharePoint 2010 and FAST. Normally to set the Service Account of a SharePoint service one would use the ProcessIdentity property, like so: $procId = ...
2
votes
1answer
139 views

Fast Search Server 2010 Crawl

I am new to FAST. I have a quick question on FAST/SharePoint Search. For example, i have 1000 items in SharePoint List called ListA. First time, when i do full crawl, my 1000 items will get crawled ...
2
votes
1answer
85 views

Login into Sharepoint Site from Web service

Is this possible to login into the SharePoint site using the username and password from web service soap header? Thanks SR
2
votes
1answer
115 views

SPListitem.SystemUpdate() and incremental crawl in FAST

Does FAST search incremental crawls ignore items that are updated via SPListItem.SystemUpdate()? I am observing conflicting behaviours in multiple environments, so I am not sure what the exact ...
2
votes
0answers
106 views

Sharepoint 2010: In external application need to get all sites with write permission for logged in user. [C++]

In my external application I need to find all sites with write permission for logged in user. I am using Web Services. Is there any web service available for this task? Or can I send a Query and get ...
1
vote
3answers
73 views

Search query with contains

Is it possible with either KQL or FQL to query for title:*or* and get back items where the tile is e.g "A.B.PZ.3_MS_Form" ? Another query would be title:*PZ*. Background: I have a custom advanced ...
1
vote
3answers
76 views

setting security for listitem programatically

how to set security for listitem programatically? My Requirements as follows: In list , while adding item to it. I have two radio buttons.(i)view by every one (ii) view only by me...if i select 'view ...
1
vote
1answer
92 views

Listing values for managed properties

I want to build an advanced search inside a web application. To do that, I connect to a Sharepoint 2010 instance running FAST and use the query web service. I've tried to retrieve the search metadata ...
1
vote
1answer
378 views

Querying FAST Search Server for Sharepoint from Search Webparts

I'm new to SharePoint and FAST. In SharePoint 2007 implementation for our projects we used "Esp-Searchapi" for querying the back-end FAST ESP 5.3. As we are now migrating to SharePoint 2010 and FAST ...
1
vote
1answer
326 views

Understanding FAST search versions

FAST search seems to come in several flavors including: "FAST Search Server for Internal Applications" (FSIA) and "FAST Search Server for Internet Sites" Are these separate SKUs? Are they available ...
1
vote
1answer
54 views

Update List Using Column And Textboxes

SPWeb web = SPContext.Current.Web; SPList list = web.Lists["MyList"]; SPListItem item = list.Items[0]; item["Title"] = TextBox_Name.Text; ...
1
vote
1answer
128 views

“Find Similar results” Fast search for sharepoint 2010

I trying to implement "find similar results" in fast search for sharepoint 2010. Im using the docvector manage property and similarTo property(KeywordQuery property) for this. I hv to pass the ...
1
vote
0answers
174 views

Can I used People search core webpart and Search Core Webpart in Same page Fast Search?

in my result.aspx i have used almost webpart like SearchPagingWebPart,CoreResultWebpart,Search Actionlink webpart, etc.. I am used PoepleSearchCoreResult wepbart in that page as People Matches. i.e ...
1
vote
0answers
183 views

How to check for NULL or empty value in fql (fast search)?

I want to check for null or empty field in fql query , I want to add condition to retrieve result when is column not equal empty or null, I've tried these ways : <Context> ...
1
vote
1answer
346 views

Adding crawl component FS4SP

I have a SharePoint with Fast Servers. I have multiple content sources in my Fast content SSA but right now I have one crawl component. I would like to add one more crawl components. I saw this ...
1
vote
1answer
131 views

Find similar/related documents (pages) using SP Search/FAST SP Search (2010)

I've previously used the MoreLikeThis (javadoc) feature in Solr and I'm trying to find out of the same capability is available in SP Server Search or FAST SP Search. If you haven't used ...
1
vote
2answers
591 views

Get all items from custom content type in Fast Search

I want to get all items of a custom content type while using fast search. I want to use keyword search but i also could use fql. Can somebody show me how to do this in code? I'm getting restults for ...
1
vote
0answers
33 views

Variations Problem

See I have a Sharepoint project , where when I get my Variations.Current.GetCurrentVariation(), I get null, and I have activated the Office SharePoint Server 2007 Publishing feature. Can you help me ...
0
votes
2answers
547 views

OOB Search core result webpart

This might be very simple, but since I am new to Sharepoint, I could not find enough information that helped me to understand how to implement OOB Search core result webpart. What I understand is, ...
0
votes
1answer
143 views

is There any best way to insert and retrieve data from sp list

namespace Gridwebpart.VisualWebPart1 { public partial class VisualWebPart1UserControl : UserControl { protected void Page_Load(object sender, EventArgs e) { if ...
0
votes
2answers
748 views

Populating Drop down on the basis of User Group

I am developing the SharePoint Portal in 2010 where i will be using a Dropdown with values in it. These Values will depend on the group to which the user belongs. For Eg. If Drop Values are A, B , ...
0
votes
2answers
103 views

How to access SharePoint 2013 QR Server Page

Does anyone know how to get to the QR Server webpage in SharePoint 2013 or is this option even available. I found this link for SharePoint 2010 with FAST.
0
votes
1answer
57 views

Scaling SharePoint Fast Search

I'm about to start a project using the FAST Search Server and would like to know something about how we can scale the Search Server. Can we setup multiple search server application pools or how does ...
0
votes
1answer
261 views

Displaying Managed Property in Search Results

We are working with Fast Search for Sharepoint 2010 and had some backend setup done with creating some managed properties e.g. BestBetDescription, keywords etc. From the front-end part we are ...
0
votes
1answer
182 views

Could you please share how to set up the Fast Search server 2010 to crawl content on sharepoint 2007?

I found an answer in following link: How to Configure FAST Search in Sharepoint 2010 As in the answer, we can configure the Fast Search Server 2010 to crawl content a web sites in SharePoint 2007. ...
0
votes
1answer
92 views

programmatically get SharePoint Fast search content sources

Need help to complete my Csharp program. I have four content sources in my farm. I need to get all the content sources and start full crawl if the content source is idle. What is the best way to ...
0
votes
1answer
173 views

Could not establish trust relationship for the SSL/TLS secure channel

In Sharepoint 2010 crawl log, I am getting below error and no success record in crawling - "This item could not be crawled because the repository did not respond within the specified timeout period. ...
0
votes
0answers
72 views

Error when result set to more than 2000 while querying Fast Search Server for Sharepoint

I developed a tool which allows user to select some Managed Properties (e.g. FileName, Author, FileType, Publisher etc) and a textbox to enter a search term. The result what we get is a tabular data ...
0
votes
1answer
60 views

Designing sharepoint 2010 site

This is not a programming question, i am looking for some help for designing sharepoint 2010 site. I have started learning sharepoint some time back by myself only. I learned many of things like ...
0
votes
0answers
121 views

How to remove Duplicated values in People search box webpart Fast Search 2010?

when i am search on PeopleResults.aspxpage at that bind duplicated values on People search box webpart. i am checking every properties on that webpart.but nothing to worked. Here is screenshot : ...
0
votes
0answers
142 views

Access denied error while crawling MOSS 2007 sites with FAST search

I have been trying hard for resolving this error with no luck. My error message describes as Access is denied. Verify that either the Default Content Access Account has access to this repository, or ...
0
votes
0answers
350 views

Customized with Refinement Panel in Fast Search 2010?

I have create one Choice Field Column DocType with Two Choice Value i. Change Request ii.Technical Document in Share document and Each Document assign value with DocType. Here is Snippet : ...
0
votes
2answers
318 views

Error while replacing self-signed certificate with CA certificate in FAST server

I am trying to replace the self-signed certificate used while installing / configuring FAST server with a new certificate issues by my CA authority. I am following the tecnet article ...
0
votes
0answers
40 views

FS4SP Returns the text 'NULL' when crawling

As the title says, I have a managed property in a database, that when I check the value of in the view returns a normal null. However when I run a crawl of the database and query Fast I am getting a ...
0
votes
1answer
89 views

sharepoint2007 sites not working

In my sharepoint application recently we are getting errors related to webparts like "WebPartError:One of the properties of the webpart has an incorrect format.Windows sharepoint services cannot ...
0
votes
2answers
125 views

Switching to non-default Search Provider in OOB Search WebParts

Our SharePoint environment is configured with SharePoint Search as the default search option and FAST Search as the secondary search option. We have a bunch of host header site collections which are ...
0
votes
2answers
406 views

Filtering documents (.docx) and web pages (html/aspx) files in Fast Search for Sharepoint 2010

We are setting up FAST Search for SharePoint environment and to provide certain back-end Audit we developed and application which returns the metadata of all the fields to know what is in and what is ...
0
votes
0answers
173 views

fast search scope not getting updated

I have two different host name for example http://contosoold and http://contosonew in content source. Now i had created a scope to include results from "hotname=http://contosoold.com/". In the ...
0
votes
1answer
435 views

Architecture and Capacity planning for FAST search farm

We are building our new fast farm and have plans to put up one column of Physical servers for FAST indexing and crawling. We will be crawling around 15 million items including SharePoint sites, ...
0
votes
1answer
258 views

How to index (in FAST Search 2010 for SharePoint) multiple large custom columns with the same name

I am trying to add the same custom column ('Raw' in this case) to several different document libraries, and have these columns defined as custom metadata that gets indexed in the FAST Search Server. ...
0
votes
0answers
256 views

Multiple Propset Guid Mapped to a Category

I'm working in a powershell scrip for F4SP 2010 server that reads lines from a .csv file and creates the mappings between managed properties a crawled properties. I don't have much problem, just a ...
0
votes
0answers
535 views

Value does not fall within the expected range in SharePoint 2010

I have a web part in which I provide taxonomy column name. The column name comes from the document library. I provided the column name in property but it's giving an error : Value does not fall ...

1 2