taiga
taiga

Reputation: 51

Is it possible to create an API for SharePoint?

i could not find any idea of how to implement API over the SharePoint(MOSS) framework. Could anyone give me a tip please?

What i want to do is create a client application to communicate with the SharePoint. wanting to implement something like following.

I could not find anyway to hook a program... Is there anyway to hook a program or implement own authentication mechanism before SharePoint's own authentication is called?

Any alternative approach will be grateful. Thank you in advance.

Taiga

Upvotes: 0

Views: 337

Answers (2)

Jürgen
Jürgen

Reputation: 21

Here you find a fluent API for the SharePoint. FluentSP implements a modern fluent interface around the classic SharePoint 2010 API: http://www.parago.de/2011/09/fluentsp-the-fluent-sharepoint-api/

Upvotes: 2

Jeroen Ritmeijer
Jeroen Ritmeijer

Reputation: 2792

It sounds like you need the Web Services that ship as part of SharePoint. There is no need to re-invent the wheel by creating your own API.

If your own application runs on a machine with a local SharePoint installation then you can program against the SharePoint Object Model directly. Otherwise use the Web Services interface.

More on Google.

Upvotes: 2

Related Questions