Questions tagged [event-receiver]
140 questions
1
vote
1 answer
SPListItem event receiver doesn't execute ItemAdded event
I've created an item event receiver using SharePoint 2010 and Visual Studio 2010. The event receiver executes ItemDeleting but it can't execute ItemAdding or ItemAdded events.
My problem is I upload images for the item in edit form so I want to open…

M.Ramadan
- 444
- 2
- 17
1
vote
1 answer
Event Receiver(scope to web), when deployed, it attached to list however it also attach to site
Hi I've a event receiver that is scope to web.
On development environment, i deploy and it manage to attach to only a specific list, it will only trigger from this specific list.
However when i deploy to production, it manage to attach to the…

nicker
- 477
- 2
- 6
- 20
1
vote
1 answer
Error in Connecting WSO2 ESB and WSO2 DAS
I have tried to connect DAS with the wso2 ESB (Both are latest versions) according to the following article. Reference document . I followed all the steps according the document. But now I'm getting error like,
ERROR -…

Anushka Ekanayake
- 977
- 2
- 13
- 33
1
vote
0 answers
ItemUpdating Redirect Sharepoint 2013
I'm attempting to perform a redirect within an ItemUpdating event receiver but so far no luck.
I can't use SPEventReceiverStatus.CancelWithRedirectUrl because my CSR Render Mode must be Standard and not a server render. I've tried other methods…

user2602844
- 133
- 1
- 6
1
vote
1 answer
0x8102009b Workflow Sharepoint 2013
I am creating a workflow task the listItem in sharepoint 2013. The workflow works fine when I am adding the list item the task is created and there is no error. However when I am updating the item the workflow code gives me this…

Muhammad Abid Fahad
- 51
- 8
1
vote
1 answer
Wait for finishing uploads
I have written a program that writes multiple files into a SharePoint-List using CSOM:
foreach (file in myFiles) {
UploadFileToSharePoint(file.dataq, context, url+ file.name);
}
UploadFileToSharePoint(dummy, context, url+"finish.txt");
public…

Ole Albers
- 8,715
- 10
- 73
- 166
1
vote
1 answer
Call web service from SharePoint List Item Event Receiver
I am developing a SharePoint (MOSS 2007) list item event receiver, and I need to invoke a web service in the itemUpdated method. I have several questions on how to go about doing this:
Should I add a web reference or a service reference to the…

Web User
- 7,438
- 14
- 64
- 92
1
vote
2 answers
Execute a TimerJob from an event receiver handling list item changing
I have an Event Receiver that is attached to some change in a item list. This event receiver does things that consumes a lot of procedure. I want to run it under the process OWSTIMER.EXE and not W3WP.EXE, it seems that in Sharepoint 2013 the events…

Tupac
- 647
- 12
- 37
1
vote
0 answers
SharePoint 2013 Asynchronous event handler executing synchronously (under wpw3 instead of owstimer)
I created a custom list event handler using Visual Studio 2013, for ItemAdded and ItemUpdated events. I totally expected those to execute under OWSTIMER.EXE as I do not want to add load to W3wp.exe, since the actions I need to perform in the ER will…

user1413284
- 11
- 2
1
vote
0 answers
BitCoin Gateway Proccessing Time
I want to write a bitcoin gateway using BlockChain API.
With this link we get an address for receiving…

Mahdi Mohammadzade
- 79
- 4
1
vote
2 answers
Sharepoint event reciever is working in one document library but not in another
I have two document libraries, when I add an item the event reciver item added fires for one document library , but it does not for the other.

Rubinoff
- 25
- 1
- 6
1
vote
1 answer
How to set receiver when any application launched in android.?
i want to set receiver when ever any application get launched in android,after that i have to do some task.is there any way to do?
@Override
public void onReceive(Context context, Intent intent) {
try {
} catch (Exception e) {
}
}
I…

Shahid Khan
- 33
- 7
1
vote
1 answer
How to fix SPFeatureDefinition does not contain a definition for RootDirectory
I'm very new to SharePoint development, and I'm just trying to add an XML file to a Feature to reference the XML file content in the feature Event Receiver.
It seems that the general recommendation is to use do so like in this SO question:
How to…

GR7
- 5,083
- 8
- 48
- 66
1
vote
1 answer
Adding item-permissions on ListItem synchronously on EventReceiver in SharePoint
I need to set Item-Permissions on creation of an Item in a SharePoint-List. Therefor I created an EventReceiver
Inside the ItemAdded-Event I can get the ListItem (properties.ListItem) but that Event is fired asynchronously.
On the other Side I have…

Ole Albers
- 8,715
- 10
- 73
- 166
1
vote
2 answers
Event Receiver not firing -Document Library
I have a local development environment in my VM.(SharePoint server 2013 SP1,Visual Studio Ultimate 2013-update3). I'm trying to add a event receiver to a document library on ItemDeleting.Deleting a document to doc lib would add item to my custom…

leo
- 11
- 1
- 5