Uploading and downloading file from ONEDRIVE through WCF service - wcf

I have a task to Upload and Download a word file from the microsoft ONEdrive using WCF service. I there is a possiblity to do that. Can doing the authentication through WCF service is easy without the interaction with user. Everything should be done in the background.
Regards,
Rajesh

Related

How to upload file using REST Web Service?

I have a requirement to upload a audio file from java application through c# wcf restfull web service.
So how to create a rest web service to upload a file.

WCF service Testing Tools sending *.xml file

I have valid *.xml files generated based on WCF service. I want to test the WCF service using the *.xml file. Currently, I have to programmatically load the *.xml file, initialise service object with *.xml file, and send the request.
Is there tool that avoids programming, and can test the WCF service.
The WCF Test Client is a great tool to test your services (and you already have it)
http://msdn.microsoft.com/en-us/library/bb552364.aspx
If you need something a little more flexible and powerful, check out Storm:
http://storm.codeplex.com/
With Storm you can manipulate the requests and trace out the interaction.
Of course you could always just use Fiddler to make your own web requests.

SharePoint WCF service to upload doc

Is it possible to create a WCF client to upload file (doc) to Sharepoint?
My problem, I can upload file to SharePoint use list asmx web service, but it conflict with Oracle.DataAccess.dll on Windows 7 64 bit. So I am thinking if there is any way to do it without web reference.
Thank you
Wes
Uploading document can be achieved using a simple http PUT request

Post text file upload to WCF Data Service from JQuery

Uploading and downloading files using wcf data services?
How can we implement this on the wcf data service end and using html+jquery as client?

How to call local WCF service from webpage?

I'm developing a webpage that is supposed to consume WCF webserice that is located on client's computer. First, user installs some software that hosts WCF service on his computer, then he'll view my webpage which is supposed to call the WCF service. Do you have any idea how to do it without having to use AtiveX and IE?
Add your wcf service as service reference to your web project. You have to specify the url of your wcf service. A clientproxyclass will be generated for you. In your webpages or whathever you can create a instance of this proxyclass and just code what you want.