Objective-C & Interacting with Microsoft Dynamics

2020-04-08 14:47发布

问题:

I'm looking to interact with my Microsoft Dynamics CRM system from my iPhone, performing tasks such as pulling down, updating, creating and deleting records.

Is this possible? If so, can anyone link me to any good resources on the matter or provide me with any information you feel would be relevant?

Many thanks,

Jack

回答1:

Yes this will be possible and there are at least some relevant pointers in the CRM SDK (Development from Non-.NET Clients in Microsoft Dynamics CRM) however general support and anecdotal information is sparse (in fact the referenced topic and it's links are all that exist in an official sense).

You will be accessing via the SOAP endpoint and the link to the WSDL for that is exposed via the CRM UI (Settings > Customizations > Developer Resources).

I'd start with downloading the CRM SDK and reading the topics I linked to.

Caveat - I know nothing of Objective-C or IOS



回答2:

I don't know anything about this, but maybe that'll help: http://www.cwrmobility.com/

If your looking to develop something yourlself, this might help: http://www.microsoft.com/en-us/download/details.aspx?id=13621



回答3:

It is possible, you'll need to use the web services API.

MSDN web services API docs

It uses JScript, so on the iPhone, you should use NSURLRequest and NSURLConnection to retrieve the data coming back.

Here is another link for using JSON, as iOS has a JSON parser built in now

MS CRM using JSON