so I have been to a sharepoint on premise training some time ago. I just recently started developing an app for sharepoint online. I do remember the tutor saying that it would be better to query the search api instead of sending requests querying the list directly. Apparently it has something to do with the indexes, so all in all it would be faster and save ressources.
Now I am on SharePoint Online. Ressources are no problem, I suppose.
Is there any reason to send ajax requests to the sharepoint search api instead of calling the rest calls for a list? The data I would like to query is inside the the same site collection as my app. When to use what? Unfortunately I could not find a comparison. I'd be thankful if anybody with a deeper understanding can give some insights.
Thank you very much.
Related
I´m trying to figure out how to get some rather simple data (only one table) from an MSSQL Server and display it on a Sharepoint Online (ideally I would also like to have some control over how the data is displayed). But frankly I feel a bit overwhelmed with the information I´ve found on msdn and various forums and I don´t know which route to take.
First of there is the "External Content Type" but the examples seem to be only for Sharepoint 2010?
Then there is web parts but there seem to be differen types: Visual, ASP.Net, client-side etc.? I´ve already fiddled around with the client-side web part, got the tutorial working with Yeoman Sharepoint generator and the 365 Dev programm, but I´m unsure if I´m on the right track or if I´ll find out later that the client-side web part can not do what I need.
Any advice would be much appreciated!
I am not able to find a simple way to integrate my SharePoint example list into my bot:
I wonder if that is possible without another database like Cosmos DB.
What is the best practice to use such a SharePoint list and being able to search it in the Bot Framework Composer directly?
I would suggest starting with reviewing a Bot Framework sample. I would think one using the GRAPH api would be a good start.
But essentially, you just need to authenticate the user (if not already done) and then make the correct calls (whatever is required for SharePoint api calls), during the appropriate location (OnTurnAsync or maybe SimpleGraphClient if using the above sample).
I am using Azure search where it creates index on my database tables and shows results as expected.
Now I have a requirement where I need to find-out what are the words or items users have searched most or what was the pick time for search.
Is it possible to find any such reports with Azure Search?
Either by its portal or using the API or Code?
I'm on Azure Search team, thanks for using the service. Currently it's not possible, however, we understand the importance of this feature and we're working to deliver it. No exact dates yet. For now, you'd have to collect and aggregate the information you need on the client side.
For feature request like this, feel free to use our User Voice page to help us prioritize work: http://feedback.azure.com/forums/263029-azure-search
I have searched unsuccessfully for a number of days to try and resolve an issue with the search not returning results in Sharepoint 2010. Basically the search has successfully crawled the content and indexed the results but the search is returning no results on our site.
The codebase is the same as other servers that does return results so we are confident it's not a coding issue, but is a sharepoint issue. We can reach the search queryex webservice also
I was wondering if anyone had any suggestions on possible settings / things to check to try and kickstart this search!
This is my first question on stackoverflow, so please advise if I haven't added enough detail.
I'm fairly new to SO myself, but I'll help if I can! Quick couple of questions:
Is the search returning no results for all user types, including admin?
Is there an error returned when you submit a search or does it just say "no results"?
Are you using any custom web parts for displaying the search results, or is it OOB?
Do you have access to the ULS logs perchance? There may be further information there.
Are you using search scopes at all?
What domain account are you using for the search app pool? There's some info here about making sure you have the right type of identity - SharePoint 2010 search crawling but not displaying results
(Apologies for posting a comment-as-an-answer, but since my rep is below 50 I can't yet post comments on your question - still wanted to help though.)
I need to get all the lists used in my site and render theire items. Since i'm not allowed to use code i have to rely on something like xlst. However after several days of searching i haven't come up with a solution yet. Any idea on how to do this?
Alex depending on what you are trying to do using the client object model may work. This allows you to access SharePoint objects without writing code on the server itself. This does require writing some code but usually a farm admin won't mind it since it doesn't affect SharePoint in any way.
The javascript object model may provide you with what you want.
Here is a link that gets all lists in a SharePoint site
http://msdn.microsoft.com/en-us/library/hh185009
Then to get items from a list
http://msdn.microsoft.com/en-us/library/hh185007
You can using *.asmx Sharepoint services SharePoint 2010 Web Services. Example from Visual Studio: Connecting to SharePoint Online Web Services
and
from Sharepoint Designer: Connect to another library in SharePoint Designer 2010
Good luck!