Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
265 views

Wrong SPContext in Wcf Service

I have SharePoint 2010 (_http://sp2010/, for instance). I have created site (_http://sp2010/site/) and WCF Service, which is hosted in ISAPI folder. In service I have such test method: ...
2
votes
2answers
2k views

SPWeb.Url returns wrong URL

I have a web application in SharePoint that has been extended to another zone (Extranet). The access URL for the default zone is http ://server1, and the URL for the extranet zone is https: ...
1
vote
2answers
39 views

What the difference between SPContext.Current.Web.Site.OpenWeb().Lists[“List”]; and SPContext.Current.Web.Lists[“List”]?

I have to refactor some sharepoint 2010 code from my collegue. Everytime he needs to access a list he does this: SPContext.Current.Web.Site.OpenWeb().Lists["List"]; I used to do this: ...
1
vote
1answer
257 views

No current context when creating a sharepoint site

I've added a feature to my onet.xml file which gets activated whenever a site gets created. However, that feature needs to know the url of the site being created. I thought I could figure that out ...
1
vote
1answer
771 views

SPContext in Event Receiver (PortalSiteMapProvider)

I'm trying to write an event receiver which uses the PortalSiteMapProvider. Without having HTTPContext or SPContext INSIDE the event receiver, how would one go about accessing the ...
1
vote
4answers
2k views

SharePoint SPContext.List in a custom application page

I have a custom SharePoint application page deployed to the _layouts folder. It's a custom "new form" for a custom content type. During my interactions with this page, I will need to add an item to ...
0
votes
1answer
279 views

Access a MySite Blog from a home page webpart

I've been away from SharePoint development for quite a while now, and I'm trying to access the information in a SharePoint 2010 blog (from one of our users, within their "MySite") from a C# webpart ...
0
votes
1answer
291 views

SharePoint 2007 HttpHandler NullReferenceException using SPContext.Current.Site/Web when called from jQuery

I have the need to develop a custom HttpHandler in SharePoint. To start, I just coded up a simple example: http://pastebin.com/HXLjR2xT. On line 35 or 36 of that code I get a NullReferenceException ...