I have a requirement where user can upload files present in app to SharePoint via same app.
Is it possible to upload files using objective C? What should be the approach to upload (large) files to SharePoint?
Are there any Apple API's OR third party libraries to upload document?
EDIT : I tried using http://schemas.microsoft.com/sharepoint/soap/CopyIntoItems method of sharepoint. But it needs file in base64 encoded format to be embeded into body of SOAP request . My code crashed on device when I tried to convert a 30 MB file in base64 encoded string? Same code executed just fine on simulator
Is there any other alernative to upload files (like file streaming etc) onto sharepoint?? I may have to upload files upto 500 MB? Is there more efficient library to convert NSData into base64 encoded string for large file???