We have a multitenant application where several tenants currently are reporting that downloading a .docx file as pdf from Sharepoint using Graph API is failing with tooManyRetries. This also happens when 'previewing' a Sharepoint file using the /thumbnails call
Is the an overload issue with Sharepoint currently?
Related
I have a lambda function (currently Node.js, but could be turned into .NET Core) that runs on a schedule. I would like to, as part of its work, to upload a file to a SharePoint Online document library. What would be the best way to do this, especially considering authentication?
I would use the Microsoft Graph APIs to upload files into Document Libraries of SharePoint Online
Microsoft Graph: Uploading Files to SharePoint
We are in the process of moving an on-premise SharePoint installation to SharePoint Online. We have a number of existing C# web parts that we need to convert. These web parts currently access some of our on-premise data... we need to get the web parts working on SharePoint Online; however, we're not certain of the best approach.
We've looked at BCS, but it seems that it is geared more towards synchronizing lists of data via basic CRUD methods. For many of our applications, we are not looking to synchronize lists, we are looking more towards action-oriented methods on a service that can be called on-demand as needed by the web part.
We don't believe the call can be client-side, as the users will often be accessing SharePoint Online from workstations that are not joined to our domain, and we don't want the user to have to separately authenticate to our service (i.e. we want our service to trust only the SharePoint Online backend).
Our ideal setup would be to have our C# code for the web part call into our web service (hosted on our domain, authenticating with a service account from the SPO secure store), passing the current username from the SharePoint context, and getting back a response that the web part can then use for its processing.
But as we understand, the web parts in SharePoint Online are sandboxed in such a way that they cannot make external HTTPS calls via HttpWebRequest.
We've searched for how-to examples or documentation related to our use case, and haven't found anything saying it's possible or that it's not possible. Does anybody know if it's possible for a web part to get data in this way? Is there some other direction we should be taking to achieve this?
In SharePoint online, if you are developing a SharePoint hosted app; You will be able to call external endpoints (EPs) after adding these endpoints in the manifest file.
If you haven't added these endpoint to the manifest file, This means you are not permitting the app to call an external EPs.
You don't need BCS in SharePoint online to call external EPs. Here is a sample on how to do this using JavaScript.
https://msdn.microsoft.com/en-us/library/office/fp179895.aspx
Let me know if you have any other questions.
As per my requirement I need to Sync Document Library of on premise hosted SharePoint site with cloud hosted SharePoint Document Library. For that I had wrote EventReceiver on ItemAdded of on premise SharePoint site. Users of on premise SharePoint site and cloud hosted SharePoint site are different.
For implementing above functionality, I wrote custom code in which I send new HttpRequest to the cloud hosted SharePoint site from my code using the cloud hosted SharePoint site URL. But it will throw exception that File not Found.
So, When I debug the code I realize at time of defining the object of cloud based SharePoint site there are one property i.e. "ServerVersion" which is read only has not able to get value so that it will throw exception.
Can any one help me to complete this functionality...??
Is there any other code snippet that will help me to implement this functionality..??
Currently I am working on SharePoint Online (Office 365) project. I used Sandbox solution and WCF service for my project according to business requirement.
I have created an External Content Type (BCS) using WCF service as well as defined External List from it. There are some operations of WCF service which are not configured with any external list.
How can I call these operations in my visual web part using ECMAScript? Is there any other solution for the same?
Please help me I am very new to SharePoint development. Thank for your help.
I know that Sharepoint 2010 will store almost everything into its databases. We have a reporting application and we would like to publish our reports into Sharepoint 2010. We don't have any integration kit for Sharepoint 2010. What options do we have? Can we publish our reports into Sharepoint database or how this should be implemented?
From your question, I can't tell if you want a programmatic solution or not. Either way, you can store your reports into a SharePoint Document Library
A) By manually uploading the reports to the SharePoint Document Library
or
B) By creating a simple app or web service to do the job for you
http://www.dotnetcurry.com/ShowArticle.aspx?ID=297