Hi all,
I'm new to this forum (at least at posting on it) and I don't know where to put this question, so please feel free to move it to the correct section.
I have some aspx/vb web services behind ADFS authentication and I perform ajax calls from an iOS application, using Cordova, so I'm writing in javascript, these webservices return json data.
By reading over blogs, forums, etc I followed this approach: I send a $.ajax request to https://mycompany.com/adfs/services/trust/13/UsernameMixed including this SOAP token:
<s:Envelope xmlns:s="http://www.w3.org/2003/05/soap-envelope"
xmlns:a="http://www.w3.org/2005/08/addressing"
xmlns:u="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
<s:Header>
<a:Action s:mustUnderstand="1">http://docs.oasis-open.org/ws-sx/ws-trust/200512/RST/Issue</a:Action> ...
Go to the complete details ...