Tagged Questions
0
votes
0answers
29 views
Delpoy sharepoint app project and solution
When I created a solution of sharepoint MVC app, it is deployed and working fine. This is a test purpose. However when I created a SP MVC app project in an existing solution, am not able to deploy the ...
0
votes
0answers
21 views
SharePoint App Deployment error : 'Failed to install app for SharePoint'
When I tried to add a SharePoint mvc app I am getting following error:
Error occurred in deployment step 'Install app for SharePoint':
Failed to install app for SharePoint. Please see the output ...
0
votes
0answers
10 views
can I add content by search web part to my SharePoint hosted app
I have a SharePoint hosted app with many pages and workflow. Can I add content by search web part to it?
0
votes
0answers
6 views
appropriate process to upgrade SharePoint 2013 apps?
i am new to SharePoint. i have created a SharePoint app using vs 2013.
when i am trying to update SharePoint app to server its giving me duplicate entries for list items.
also on aspx page its ...
0
votes
1answer
49 views
Process Document from SharePoint 2013 Online App Host Site Externally
I am attempting to create a SharePoint 2013 Online App that will process documents stored on the host site collection.
I'm able to use jQuery ajax to retrieve a file from the host site collection and ...
0
votes
1answer
38 views
Need to perform some custom actions when a site collection gets created using remote event receiver in sharepoint 2013 apps
There is no any "SiteCreated" or "SiteCreating" type of event receiver in app model. But, I want to trigger some events on the site collection creation. There are some web level events in the app ...
0
votes
1answer
22 views
Authentication error while updating or deleting record in external list using BCS in SharePointnt hosted app
I have created WCF Data service and put the code like:
public class WcfDataService1 : DataService<myEdmxEntity>
{
public static void InitializeService(DataServiceConfiguration config)
{
...
0
votes
1answer
60 views
Can I sync a Sharepoint 2013 List with Project Server 2013 List? C# or JavaScript API?
If this is possible, where is the best way?
Creating a SharePoint project or app?
Thanks for help-me!
0
votes
1answer
190 views
How can we use SP client side people picker in provider hosted app in sharepoint 2013?
I have used client side people picker in sharepoint hosted app model, but in provider hosted app it does not work, because it consume some people picker related .js files from _layouts folder or ...
0
votes
2answers
491 views
How to create master page file dynamically using JavaScript in SharePoint 2013 Online?
I am creating one SharePoint App in that I want do following.
In master page gallery, copy current master page and create new master page. (as we do new SharePoint Designer manually.)
Inject ...
0
votes
1answer
79 views
Is it possible to get the data for twitter search API version 1.1 using Client Side Scripting
I'm developing SharePoint Hosted APP in that i need to use java script only. In previous version 1.0 i can get the data using client side scripting but now in the twitter search API version 1.1 they ...
1
vote
0answers
744 views
Sharepoint 2013 provider hosted app in ADFS base sharepoint site
We have Sharepoint 2013 single server farm and another one server with ADFS 2.0
Now configure sharepoint site with below steps:
Install ADFS 2.0
Configure ADFS with the web application as a relying ...
1
vote
0answers
646 views
Getting Message “Sorry, this site hasn't been shared with you” while access url through REST in sharepoint 2013 app model
I am accessing a list through SharePoint 2013 App using REST, below is code snippet:
var executor = new SP.RequestExecutor(appweburl);
executor.executeAsync(
{
url: appweburl ...
1
vote
1answer
315 views
“App Web is not deployed for this app's request url” when trying to use SharePoint 2013's REST server and CSOM
to get SharePoint List dataI am having an issue accessing the REST server via the CSOM. I have tried this with both the CSOM and just using jQuery. Code examples and the associated errors below. Can ...
2
votes
0answers
283 views
SPAppToken (context token) is null
I have a Sharepoint 2013 on premise environment for which I am developing an provider hosted app using Visual Studio.
The Visual Studio project has an app project which contains a custom ribbon ...
1
vote
0answers
316 views
SharePoint 2013 App web URL is not hosted in Host file through App Catalog
I have deployed SharePoint 2013 App on some site collection using VS2012 then App is successfully deployed on that site, but when i am going to deploy the same app using App catalog , then it giver me ...
0
votes
3answers
76 views
Appweb is not found
I have created an sharepoint app which just contains a blank page. When I use vs2012 and hit f5 to debug the app is installed and works perfectly. when, I use publish and get the. App file and upload ...
0
votes
0answers
151 views
SharePoint Online AutoHosted App with C# code and asp.net Controls without an Azure Subscription?
Can somebody confirm this is possible? I'm pretty sure I have done this, and only had to copy the app file to the SPO app catalog.
Also, is it possible/practical to bind SPO List Data from C# CSOM ...
1
vote
0answers
482 views
SharePoint App to Insert Record in Host Web List using REST API
I have written the following code to insert records in a list which is contained in the host site.
var projectItems = [
{ Title: "SharePoint", ProjectDescription: "SharePoint 2013", ...
1
vote
1answer
2k views
SharePoint 2013 - create site collection programmatically
With the introduction of Apps, and solutions going away. What is the best way to create a site collection programmatically? I am on-premise. Can it be done with JavaScript? I can create sub-sites with ...
0
votes
1answer
152 views
Why do I get 'ReplaceContent' attribute is not declared?
I have a SharePoint 2013 dev machine. I've built an app and need to be able to use ReplaceContent="TRUE" on some of the items within my Elements.xml files so that when I publish and install a new ...
0
votes
0answers
45 views
Share Point Search Integrate with hadoop?
I don't know whether i'm asking right question or not.. ?
Can we able to integrate Share point search criteria with Hadoop map reduce job?.
if yes, how can develop map reduce jobs in c#.?
0
votes
0answers
69 views
App part shows wrong content when placed twice on same page
I created a very simple Sharepoint App Part in “Napa Office 365 Development Tools" which only shows one line of text.
<html>
<head>
<title>My Shaerpoint Hosted ...
0
votes
2answers
2k views
How to Create List within SharePoint 2013 Apps?
I am developing Apps for SharePoint 2013. And I want to create Multiple list in My App Package programmatically.
It is like user inputs Name of list and when he clicks the Create Button the list with ...
3
votes
1answer
424 views
Get list of installed apps using Client Object Model
I have been trying hard to find any example, resource which explains how to get a list of installed apps in SharePoint 2013 environment using Client Object Model. So far I have found nothing.
Could ...
0
votes
1answer
272 views
How to get WebPartManager for a Page from App?
I'm trying to get a webPart manager for the page, where my App was added. How can I get the current page server relative Url?
using (var clientContext = new ClientContext(SPHostUrl))
{
var ...