A sandbox is a restricted execution environment that enables programs to access only certain resources in a controlled way
0
votes
0answers
31 views
Adding a document Template as Content Type from an Event Handler throws AmbiguousMatchException
I am trying to add a document template to my site, which is to be added during an event. This code has been tested in a console app and worked perfectly, however it keeps throwing the ...
1
vote
0answers
19 views
VS 2013 not deploying silverlight solution in sandboxed on stand alone dev: SPUCWorkerProcess not running error
I have a stand alone machine with SP2010 set up on Windows Server 2008 R2. Office, SPD, VS2013, Expression, etc. There is no AD or anything as it is stand alone installation using local accounts and ...
1
vote
1answer
29 views
Is it possible to read an excel file through code in a sandbox solution - SharePoint Online
On a SharePoint Online environment, I have an Infopath based list with Attachment enabled.
When an excel file is attached during a new item creation on this list, I want to have an event receiver that ...
1
vote
0answers
34 views
Provisioning publishing pages with custom webparts in SharePoint 2013
I have a sandboxed solution where i provision publishing pages with custom web parts. Like this:
<Module Name="CustomPage" Url="$Resources:cmscore,List_Pages_UrlName;" ...
3
votes
1answer
59 views
Full-trusted proxy for SP2013 sandbox solution
In my sandboxed solution I have the following code that activates a proxy:
public override void FeatureActivated(SPFeatureReceiverProperties properties)
{
var type = typeof ...
0
votes
1answer
46 views
Sandbox Visual Webpart Not Adding BulletedList Control
I have a sandbox visual webpart (got it by installing SharePoint Power Tools) and in that I have a "Place Holder" control named "phMsg". I am adding a "BulletedList" control to that place holder in ...
0
votes
3answers
70 views
Sandboxed Solution doesn't work on production server
I am new to SharePoint development and recently get stucked by a problem of deploying own Sandboxed Solution that do a event receiver job (ItemAdded).
It create a subfolders in top folder in a ...
0
votes
2answers
53 views
Getting SPD workflows to run on a daily basis
I have a workflow that I need to run on a daily basis.
It's going to run in a web application hosted in Sharepoint Online, so there is no access to Central Administration. Which means the timer jobs ...
1
vote
1answer
125 views
Event Receivers not working on Sharepoint Online
I have a sandbox solution. It has an event receiver. The event is triggered when a workflow is started.
It works in our dev environment. However, when the solution is deployed to Sharepoint Online, ...
1
vote
1answer
29 views
Can I access in a SharePoint 2010 Online webpart, some webservice and do some CRUD?
I am using SharePoint Online. It is only possible to build sandbox solutions webparts. Is it possible in a sandbox solution webpart to access a webservice somewhere on the internet? I would like to do ...
0
votes
0answers
41 views
Handle AJAX call in SharePoint sandbox
I'm developing a solution for Sharepoint 2010 using ASTreeView. This control handles also AJAX calls for node loading. To load children of a parent, a
<ul><li>...</ul>
needs to ...
0
votes
1answer
106 views
Programatically adding webparts to a page in sandbox
I've successfully implemented code to add web parts to web part zones in code using WebPartManager's in other projects.
Now that I'm working in a sandbox solution, VS can't seem to recognise ...
0
votes
0answers
20 views
new to WCF: when will i need to write web services in SP2010 SBS?
what are some drawbacks with sandbox solutions where one might need to write custom web services as a work around?
appreciate any advice. there is a lot out there on getting started but little on ...
2
votes
1answer
65 views
Reading from text files within a sandboxed solution
So I have a set of plain text files included in some directories within sandboxed solution. I want to use these text files to programmatically insert data to SharePoint Online using an event receiver.
...
1
vote
1answer
147 views
Increase SharePoint Execution Timeout in SharePoint Online (Office 365)
I have office 365 site and web part added on this site. this web part create a document library. This is a sandbox solution
I want to create 2000 document library using this code snippet as follow:
...