I am trying to develop a Gadget for Sharepoint 2007, which will authenticate a user and then fetch him a sharepoint list from a specific URL,
For the last 4 days I have been working on it and came across different ways of making it, but because solutions are either half done, dont work or too confusing to get help from or convert into what I want.
Because Windows Gadget uses Scripting + HTML so I have following options to carry on work with to make this gadget,
Gmail Gadget Using JavaScript to Read Visual studio Dll
Using jQuery to fetch List Data
My Favorite solution is to Use SOAP or REST along with webservices, I want to use SOAP to get Sharepoint List data and authenticate my users at the same time, I find hundreds of tutorials on this, but non of them actually doing authenticating or telling how this can work in a Gadget, using JavaScript/HTML,
There is few Gadget I found Online that are somehow related to what I need, they either dont work, or can't be changed to what I want.
Cheers for reading this I hope you either gonna increase your knowledge or gonna share it :)
EDIT *I meant using Sharepoint MOSS "SPLIST" or "SPWEB" as Client Object Model, AS I am using Moss I can't use Client Object Model Authentication :(. really sorry for wrong Information*
You're installing this on a users PC so you can't use the standard SharePoint API (Microsoft.SharePoint.dll)
You're using 2007 so you can't use the "Client Object Model" (managed/silverlight or EMCA Script)
That leaves
a) The SharePoint Web Services (either JavaScript or JQuery which IS still JavaScript).
This means that your gadget will be authenticating to SharePoint via the same mechanism that someone browsing to your site would - normally Integrated Windows auth.
The first place to start this is the excellent http://spservices.codeplex.com/ library which allows you to easily call the web services from JQuery). See the documentation for tips on how to use it.
For a half done project how about http://sharepointsidebar.codeplex.com/
b) Create your own custom web services by deploying a dll on the SharePoint server then call those via JavaScript (perhaps usign JSON or similar rather