Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
6answers
7k views

Best Pattern for AllowUnsafeUpdates

So far, in my research I have seen that it is unwise to set AllowUnsafeUpdates on GET request operation to avoid cross site scripting. But, if it is required to allow this, what is the proper way to ...
4
votes
1answer
74 views

CouchDB: Single Page Web Application accounts without middleware

Is it possible to implement Single Page Web Application that would have sensitive data, e.g. accounts, with address etc, without middleware? I've been evaluating CouchDb, as the best applicable, ...
4
votes
1answer
1k views

How to get SPWebApplication from SPWeb?

So I'm inside a web scroped feature (properties.Feature.Parent = SPWeb). How do I get the SPWebApplication from this SPWeb? I tried: SPWebApplication webApp = ...
4
votes
1answer
2k views

SharePoint, how do you programatically determine the storage size of a SPWeb?

Not of the site collection itself, but the individual SPWeb's.
3
votes
1answer
358 views

Using disposed SPSite and SPWeb objects

I was happy enough to have inherited a terribly written SharePoint project. Apparently, the original developer was a big fan of reusable code (30% of code is reused across 20 projects without using ...
2
votes
1answer
176 views

Keep the same SPWeb & SPSite through the whole application lifecycle?

We have several projects with many DAL. Many sharepoint lists like customers, sells, providers which reflect in C# classes. We make each object implement IDisposable through an abstract mother class. ...
2
votes
3answers
208 views

Should I dispose of this SPWeb?

I'm hoping someone can help me out. I need to get the root web of the current site from the SPContext. It's easily done with the following SPContext.Current.Site.RootWeb I'm comfortable with the ...
2
votes
1answer
111 views

Dispose of an SPWeb that is being returned from a function

We have code where at times we'll be returning an SPWeb object from a function. So for example: public SPWeb getDeptWeb() { SPWeb deptWeb = SpSite.OpenWeb(SpContext.Web.ID); ... return ...
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: ...
2
votes
2answers
4k views

How do I programatically turn off show pages in navigation for sharepoint

I am progamatically creating a SharePoint site using SPWeb spWeb = spSite.AllWebs.Add(...); What code do I need run to set the spWeb to turn off the "Show pages in navigation" option? Answer: ...
1
vote
1answer
20 views

Logical Error foreach Web.webs

I am trying to iterate through each web and its webs, to get the list of child webs and so on, but problem is, when iteration comes to a web which doesn't have any sub webs it gives an exception ...
1
vote
0answers
26 views

Programmaticly Get Disk Usage Of SPWeb Object In Sharepoint 2010 C#

I am trying to figure out how to get the disk space used on a SharePoint Site(SPWeb). I have seen solutions that involve PowerShell or going through all of the libraries and iterating through all of ...
1
vote
0answers
158 views

SharePoint SPWeb.GetList seems to cause infinite loop?

So, I'm working on a SharePoint 2010 site that I developed, and I am trying to implement content type change propogation. During this process I seem to have found a strange bug. It seems my ...
1
vote
2answers
462 views

How can I get a SharePoint user profile via the “Friendly Name” using the SP web service?

I'm retrieving a list of names from a SharePoint list in my client program. The names are populated from a name picker in SharePoint. In the XML returned from the list query, the list looks like this: ...
1
vote
4answers
351 views

Is possible to inherit from SPWeb?

Is possible to inherit from SharePoint classes such like: SPWeb, SPList etc. or this classes are sealed? I couldn't find right answer. Chris Thanks for replys. Rich, you are right - the ...
1
vote
1answer
653 views

How to enumerate all webs and data in a SharePoint site collection

What is the best way to enumerate all SPWebs in an SPSite and also to enumerate folders within document libraries within each of the SPWebs? (essentially I want to find out the urls of all SPWebs, and ...
1
vote
3answers
668 views

Capturing title change event on SPWeb

I am listening on a particular SPWeb using an SPWebEventReceiver that is successfully firing on the WebMoved event. When the web is moved I update a list with the new location/title. What I would ...
1
vote
2answers
278 views

How can i know if a given SPWeb is a SearchCenter site programmatically

I have a SPWeb object and I want to know whether or not this is a SearchCenter site. How can I know it programmatically. Is there some setting to check or a guid to match etc?
1
vote
5answers
8k views

Programmatically Accessing SharePoint Style Library from within C#

Firstly, I'm a newbie to C# and SharePoint, (less than a month's experience) so apologies if this is an obvious or easy question but I've been trawling the net for a couple of days now with absolutely ...
0
votes
0answers
22 views

WSS 3.0 WITH SSE Produced error Unable to update the navigation COM error code -2130239098

I am using WSS 3.0 and Search Server Express on two servers. The web server is Windows Server 2008 R2 Standard x64 and the SQL 2008 server is on Windows Server Standard x64 When I execute the code ...
0
votes
0answers
143 views

How to programmatically (C#) retrieve SharePoint users' blog posts using SharePoint Web Services?

I figured out how to get SharePoint users' blog posts when running the following code from the SharePoint server itself, but I can't figure out how to retrieve the posts using the SharePoint ...
0
votes
0answers
98 views

Active Users in sharepoint SPWeb

How to get the list of all active users (i.e. users who are are currently connected to a site) of SPWeb in SharePoint 2010?
0
votes
1answer
355 views

SPWeb.GetListItem COMException on first call - second is ok

I'm trying to use SPWeb.GetListItem() to get an item by a known URL (MSDN). So basically I'm doing the following: using (SPSite spSite = SPContext.Current.Site) { using (SPWeb spWeb = ...
0
votes
4answers
158 views

Do I need to dispose SPWeb here…?

protected void getNews() { using (SPWeb web = getWeb("InternalNews")) { fetchNewsFromWeb(ref dtNews,true,"English",new string[] { "Internal news page" ...
0
votes
1answer
276 views

Sharepoint 2010: How to persist SPList objects?

I am writing a replacement for the sharepoint asset picker dialog with additional features. There is a requirement to browse media libs which are located in other site collections. So I added a ...
0
votes
2answers
678 views

why my sharepoint workflow always stop when i use this code?

I need to find an user in a list to set the assignedto task property, these informations are in a list. So i use this method : public static SPUser GetSPUser(SPListItem item, string key){ ...
0
votes
2answers
196 views

SPCrossListQuery fails to bring back results

I am calling SPWeb.GetSiteData(anSpCrossListQuery). It fails to bring back any results or any errors when I call it with an accidental space at the end of the CAML query <Where></Where> ...