together with one of our customers we want to share data from Microsoft NAV to MS CRM (both on-premise).
Now we're struggling with the authentication. From an C# application this part is no problem, using the Microsoft SDK and tooling classes, and is as easy as:
using (var client = new CrmServiceClient(new NetworkCredential(/<Username>/, /<Password>/, /<Domain>/), /<Base-Url>/, //, /<Org>/, useSsl: true)){ if (client.IsReady) { var who = client.Execute(new WhoAmIRequest()); }}
How would we go about it without SDK/tooling? Let's say if we tried with HttpClient or from JS or something else, would that be possible?
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.