I'm currenty developing an application where I need to configure SSL Certificate interoperability. The scenario is the following.
The application asks the user username and password by means of a login form. These elements need to be encrypted with a specific certificate (I think I could use a certificate provided by a Certification Authority and already included in iOS devices). Such encrypetd data are transmitted to a Web Service that authenticates the user if data are valid (based on the same certificate). The application and the WS use SOAP messages to exchange data.
I haven't a good knowledge about this argument, but I think that if the application and the Web Service share the same certificate, they can encrypt data based on theirs private key, is it correct?
Since I didn't find any information that I could use (I've read about NSUrlCredential class but I don't know how to use it), I would like to know how it is possible to create such an interaction. Thank you in advance.