• Posts Tagged ‘WebService’

    Calling SharePoint webservice using JQuery

    by  • July 25, 2009 • jQuery, SharePoint • 0 Comments

    This post will explains you about, how to connect and retrieve the SharePoint data’s by calling SharePoint webservices using JQuery. This will be helpful in displaying SharePoint content in Pages without using Server side scripts and other long coding; we can achieve that by using simple JQuery methods. For that we need to download the [...]

    Read more →

    Creating sub-sites using WebService

    by  • April 25, 2009 • SharePoint, WebService • 1 Comment

    I noticed in MSDN forums, many of them are struggling with creation of sub-sites using webservice in sharepoint. I take a look on that, Because they are all try to use CreatSite method in Admin webservice. But that will help only on creating SiteCollections. Then how we can create a susite? It’s very easy if you are [...]

    Read more →

    Download Document from SharePoint Library using WebService

    by  • March 8, 2009 • General, SharePoint, WebService • 3 Comments

    In this post, I am going to explain about downloading a document from sharepoint library using webservice, For that we need following things, Read the contents from Document, located in SharePoint Library Create and store the contents on a new document in Local Machine To get the contents from Document under Sharepoint library,we shall use [...]

    Read more →

    Upload document from Local Machine to SharePoint Library using WebService

    by  • March 3, 2009 • SharePoint, WebService • 15 Comments

    In my previous post i’m explained about the members of Copy Web Service. For uploading a document from any local machine to sharepoint document library is possible by using CopyInToItems method. Though, the syntax for that method is, public uint CopyIntoItems (string SourceUrl,string[] DestinationUrls,FieldInformation[] Fields,byte[] Stream,out CopyResult[] Results) Parameters, SourceUrl: A String that contains the [...]

    Read more →

    SharePoint sites creation using C# through WebServices

    by  • July 1, 2007 • SharePoint, WebService • 14 Comments

    I am a new to SharePoint webservices and now working on customizing webservices for sharepoint. Here is a sample code for creating a site in SharePoint using it’s webservices. Creating Site: To create a site, project requires a methods to access sites for creating and deleting. Those methods and properties are available in admin webservice. http://server-name:port/_vti_adm/admin.asmx is a admin [...]

    Read more →