vote up 0 vote down star

Hi,

We have created a virtual directory under the root sharepoint site. This virtual directory hosts a Web Service which is accessed anonymously. In the code we are doing the following:

using(SPSite site = new site(some uri))
{
    using(SPWeb web = site.RootWeb)
    {
        SPList list = web.Lists["SomeList"];
        SPListItem item = list.GetItemById(1); // Exception Here, COM Exception        
    }
}

This does not work even when using RunWithElevatedPrivileges.

However, if the HttpContext.Current is set to null, before creating the SPSite, everything works fine.

Any pointersas to why this is happening will be very helpful.

Kind regards,

flag

65% accept rate

2 Answers

vote up 0 vote down

On the contrary! It is considered a good practice to always check for null and dispose both your SPSite and your SPWeb explicitly, even though SPSite arguably will dispose your SPWeb for you.

And that is not part of the problem either :-) At the worst that would cause the worker process to recycle a bit more often than usual...

Could you maybe add some more code (the whole class).

Also please include full stack trace for the error. (details on how to enable stack trace and debugging here http://blogs.importchaos.com/alonsorobles/2008/06/09/enabling-the-sharepoint-safe-mode-call-stack-disabling-custom-errors-and-enabling-compilation-debugging/ )

Also i take it you are sure that the list and the item exists and allow anonymous access?

regards Anders Rask

link|flag
It is actually possible to dispose of the SPWeb that is handling your code, and if you're running on the RootWeb, your site will go down, which is not a pretty sight! – Andy Mikula Feb 26 at 22:38
Andy is correct. The SPSite object should be disposed of because its being created; on the otherhand the SPWeb object (Site.RootWeb) does not need to be disposed of. – Jason Feb 27 at 3:32
The using does dispose the SPWeb. The list and items do exist and are accessible to anonymous users. I can get a handle to both Web and List. But when I try and open a list item....COM Exception – SharePoint Newbie Feb 27 at 4:18
When the user is not anonymous, the code works correctly. – SharePoint Newbie Feb 27 at 4:19
Please see this thread...facing sinilar issues: mphacker.spaces.live.com/blog/… – SharePoint Newbie Feb 27 at 4:21
show 3 more comments
vote up 0 vote down

This may not be the cause of your problem, but your SPWeb does not need to be disposed of, as per Roger Lamb here, which is a distillation of Microsoft's best practices document here.

link|flag
Please see this thread, facing similar issues: mphacker.spaces.live.com/blog/… – SharePoint Newbie Feb 27 at 4:21
If this is the answer to your question, submit it as an answer and accept - it will help others who have similar issues. – Andy Mikula Feb 27 at 17:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.