1
vote
Creating SharePoint 2007 list items via the Web Dav interface
In short: No.
Longer answer: Kinda. Any item stored in sharepoint is in a list, including files. But not all lists have files. A document library is a list with each element being a file+m …
2
votes
Creating a workflow task generates an “Invalid field name” error
Are you using the CreateTaskWithContentTypeId activity in your workflow? If you are then you need to ensure that the content types have been added to the Workflow Tasks list. SharePoint will not ad …
2
votes
How can you hook a SharePoint 2007 feature into the Application_Start of a site?
My gut feeling on this is that it won't be possible. Application_Start is called by the runtime as the asp.net engine is starting up, so there most likely can't be any way to hook the handler outsi …
1
vote
How to add Announcement list/webpart to Publishing Portal
Giving you direct instructions on how to create the list would most likely leave you more lost than ever. If this is a publishing portal, there's a lot more to learn beyond just creating a list. Co …
0
votes
Multiple ModificationForms in Sharepoint Workflow
Look in your ULS logs for the error message. It will be listed there 100%. The category is "Forms Services" - the logs are located under the 12 hive in LOGS\
Oisin
…
1
vote
Sharepoint: How can I deploy a custom authentication provider?
The usual approach for installing extensions like this is to use a feature, yes. However, you won't be using any specialized XML as this kind of extension is not catered for explicitly. So how can …
2
votes
Best ways to Improve Sharepoint 2007 Performance?
You don't say how much memory your front end servers have - given that they are 32bit, I'll assume the maximum per worker process of roughly 2gb + change.
My advice? Switch to 64 bit, add …
4
votes
SharePoint and thread safety
There are much worse pitfalls in the SharePoint OM than just plain old thread safety. Pay particular attention to working with objects retrieved from properties. You should always keep a p …
4
votes
SharePoint (MOSS 2007) successful forms authentication redirects to machine name
Sounds like a problem with your zones and Alternate Access Mapping (AAM).
Start here: …
0
votes
Need Help publishing a browser enabled InfoPath form to a Sharepoint 2007 Server
Try testing the XSN file against the MOSS server by copying the file to the server itself (c:\temp for example) and running the following command:
c:\temp> stsadm -o verifyformtemplate -fil …
2
votes
How do I customize the confirmation email sent when a new SPAlert is created on a sharepoint list?
Documented here.
http://rickenberg.net/blog/?p=44
…
1
vote
WSS log files growing out of control
Hey Steve,
It's possible to set limits on the log files through the object model (SPDiagnosticsService), but not through the STSADM command line tool - until now:
…
1
vote
MOSS 2007 site in a farm type initializer exception
A Type init exception just means an exception occurred in the .ctor of the class (as you probably know). The real exception should be in the InnerException property - can you get your hands on this …
7
votes
Why Sharepoint Webservice adds # (pound) sign and id to field values?
The ';#' sequence is a separator. If you remove it, you are undoubtably breaking things in a nasty way.
The 23 is the ID, the "Paperino, Pippo" is the Value. Just like a dropdown list has v …
5
votes
SharePoint - Site.RootWeb.AllUsers not returning all users
Not all user collections in sharepoint are created equally. Subtle differences:
…
