I am working on small application of sharepoint.
There two ways in which WE can access Sharepoint data:
1.By Using Microsoft.Sharepoint.dll In this case you need to do coding on same machine (windows server).
2.Second way is to use Sharepoint Web Services. This will allow developer to do developement work on different machine.
But which way i should prefer?
Regards,
Jene
That all depends on what you want to do and where you want to run it. The SharePoint object model (Microsoft.SharePoint.dll) is substantially faster than the web services, but like you said, it only runs on the SharePoint machine. So, if you are on the SharePoint machine, definitely use the object model, otherwise, use the web services.