vote up 3 vote down star
1

My company is looking into writing a custom application that will need to perform many list item queries across multiple site collections. It will need to run for WSS 3.0 and it 'would be nice' if it worked on WSS 2.0 as well. It won't be designed for MOSS/SPS but again it 'would be nice' if it worked on these platforms. There is no restriction on which .NET version should be used for the solution.

For this type of application, what would be better: the object model/API or SharePoint web services? The primary factor I'm considering is performance, followed by features and functionality. Thanks!

flag

4 Answers

vote up 3 vote down check

Object model is better as you can gain access to additional features and the full detail of the list items, such as the version history.

The object model is also better for performance (as long as you dispose() your spsite and spweb objects properly).

The Sharepoint object model has some differences between 2 and 3, but if you look at the reference for v2 then it will also work fully with v3.

The web services have not changed at all between v2 and v3, which explains why they do not have any new features of v3.

The reason the object model will win on performance is that you will not be serialising the data as Xml and then transmitting a large chunk of Xml, and then deserialising the Xml. The object model spares your memory and bandwidth.

link|flag
Both web service and OM are (mostly) backwards compatible but some of the web services have new methods to get new features (e.g. .GetWebPart2 I think) – Ryan Nov 27 '08 at 20:56
vote up 3 vote down

The first thing to consider is "will my code run on a sharepoint server or remotely ?"

  • If it's running remotely, you don't have any choice, use web services

  • If it's running on a sharepoint server, I would suggest using object model, as performance will be better, you'll have access to more API and authentication will be easier (=automatic).

link|flag
vote up 2 vote down

+1 to the other posters.

If you decide to go the OM route then you can compile for both WSS 2.0 and WSS 3.0 from the one source. These should get you started.

http://stackoverflow.com/questions/243201/developing-for-sharepoint-2003-using-visual-studio-2008

http://stackoverflow.com/questions/286826/how-to-reference-two-versions-of-an-api

link|flag
vote up 0 vote down

Can the OM be used inside an Infopath form? Currently I'm using the web services to pull in the list data I want but I would rather use the OM.

link|flag
That would be interesting to know more about. Would you mind creating a new question for that? – Alex Angas Jan 23 at 11:53

Your Answer

Get an OpenID
or

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