Tagged Questions
0
votes
1answer
49 views
Could these errors be the cause of my timer job problem?
I have a timer job that runs every night at midnight.
The first part of the timer job is to iterate through every single site in a particular site collection (there are many).
The second part of the ...
0
votes
1answer
177 views
Detected use of SPRequest for previously closed SPWeb object
I've got an event receiver that fails, seemingly inconsistently. I've checked the ULS logs and I can see the 90hv Detected use of SPRequest for previously closed SPWeb object. Please close SPWeb ...
2
votes
4answers
351 views
What are the dangers of disposing of SPWeb when it's automatically disposed of?
In some cases such as:
using (SPSite site = new SPSite(@"http://sitecollection/"))
{
SPWeb web = site.RootWeb;
}
you don't need to dispose of the SPWeb object because it is disposed of ...
1
vote
1answer
228 views
Dispose issue when working with content types
I am seeing an issue with un-disposed SPRequest objects in the ULS logs when i work with content types in the object model.
My code is as follows (in previous methods run as part of this request, the ...
2
votes
3answers
531 views
SPDispose false positive
I got many warnings from the SPDispose checker like this:
ID: SPDisposeCheckID_140
Module: xx.xx.dll
Method: xx.xx.Layouts.xx.UpdateWorkspace.Page_Load(System.Object,System.EventArgs)
Statement: ...
22
votes
2answers
3k views
When to use OpenWeb() vs RootWeb
I am a little confused on the pro's and con's of each. When is it good to use OpenWeb() vs RootWeb, especially in the context of a using statement.
3
votes
4answers
639 views
How to properly use the Using Statement with SharePoint Objects
What is best practice with the Using statement when working with SharePoint Objects. When and how should you use the Using statement, so objects used are disposed, etc?
5
votes
2answers
667 views
Do you have to dispose of the SPWeb in the EventReceiver when using properties.OpenWeb()?
Does properties.OpenWeb() create a new SPRequest object or does it refer to the existing SPWeb object already there in the properties object? Should we manually dispose of the SPWeb obtained in this ...
3
votes
5answers
2k views
Disposal of SPWebs created using SPSite.OpenWeb()
After reading some answers/comments on Disposal of SPWebs retrieved from SPContext.Current.Site.AllWebs, I opened up Reflector to dig deeper into the SPSite and SPWeb classes.
I ran into a surprise, ...
5
votes
3answers
2k views
Disposal of SPWebs retrieved from SPContext.Current.Site.AllWebs
As there was a minor disagreement on whether SPWebs retrieved from SPContext.Current.Site.AllWebs should be disposed, I thought it would be appropriate to post a new question and discuss it here.
I ...
