Search code examples
objective-cxcodesharepoint-2010

How to connect to SharePoint list using Objective-C / Xcode?


I am trying to connect to a list on a SharePoint 2010 site using Objective-C within xCode. Is anyone able to point me in the right direction here? I am very familiar with developing in SharePoint - it is the Objective-C which is giving e problems. Thank you....


Solution

  • There are two services available: one SOAP and one REST.

    The SOAP service is called Lists.aspx and is available at [site address]/_vti_bin/Lists.asmx

    The REST (actually oData) service is called ListData.svc and is available at [site address]/_vti_bin/ListData.svc

    In both cases you need to pass credentials with the service calls which I do not know how to do in Objective-C / XCode.