• WebService

    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 →

    Excel Service Links

    by  • March 14, 2009 • Excel Services, MOSS, SharePoint, WebService • 0 Comments

    I’m just researching on Excel Services.I found some posts, are usefull to me, so i like to share with you all. MSDN Blog – Excel Services Cum Grano Salis Blog MSDN Library Microsoft Office Online – Excel Services Click on the above links to navigate to those links. Blog this! Bookmark on Delicious Digg this post Recommend [...]

    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 →