Home Upload a document to Sharepoint 2010 via WebClient
Post
Cancel

Upload a document to Sharepoint 2010 via WebClient

Here’s some code on how to upload a document into Sharepoint 2010. This works accross domains:

1
2
3
WebClient wc = new WebClient();
wc.Credentials = loginCredentials;
wc.UploadData(destinationUrl, "PUT", fileData);

A big FYI. The Copy.asmx web service will NOT work across domains. Using the above method will work for all occasions (of course the only issue is that you need to update the columns in a separate call.

This post is licensed under CC BY 4.0 by the author.