Skip to main content

Notifications

Customer experience | Sales, Customer Insights,...
Unanswered

Call external WS withing plugin

(0) ShareShare
ReportReport
Posted on by 55

Hello ,

I need to call an external webapi thought get method withing plugin.

I am using dynamics on premise and the plugin is sandbox registered.,but i am getting an error : cannot connect to the remote server .

A sample code :

var uri = new Uri("http:......../api/v1/contact");

var request = WebRequest.Create(uri);

request.Method = WebRequestMethods.Http.Get;

request.Timeout = 20000;

request.Headers.Add("DENTITY:{login:login1,password:pass1}");

request.ContentType = "application/json";
try
{

string helloWorldString = "";

using (var response = request.GetResponse())
{

using (var reader = new StreamReader(response.GetResponseStream()))
{

string tmp = reader.ReadToEnd();
helloWorldString = JsonConvert.DeserializeObject<string>(tmp);
Debug.Print("I read this string {0}: ", helloWorldString);
}
}

}
catch (Exception ex)
{
throw;
}

Under review

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.

Helpful resources

News and Announcements

Announcing Category Subscriptions!

Quick Links

December Spotlight Star - Muhammad Affan

Congratulations to a top community star!

Top 10 leaders for November!

Congratulations to our November super stars!

Tips for Writing Effective Verified Answers

Best practices for providing successful forum answers ✍️

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 291,359 Super User 2024 Season 2

#2
Martin Dráb Profile Picture

Martin Dráb 230,370 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans