cAlgo API Http preventing sending two or more requests after update

Created at 23 Mar 2025, 08:27
How’s your experience with the cTrader Platform?
Your feedback is crucial to cTrader's development. Please take a few seconds to share your opinion and help us improve your trading experience. Thanks!
SO

soskrr

Joined 20.08.2023

cAlgo API Http preventing sending two or more requests after update
23 Mar 2025, 08:27


Hi,

This error came up after the update of cTrader. It's not allowing sending more requests. Here's the code that reproduces the error:

using System;
using cAlgo.API;
using cAlgo.API.Collections;
using cAlgo.API.Indicators;
using cAlgo.API.Internals;

namespace cAlgo.Plugins
{
    [Plugin(AccessRights = AccessRights.None)]
    public class Test : Plugin
    {
        protected override void OnStart()
        {
            Test1();
            //Test2();
        }

        private void Test1()
        {
            HttpResponse res = Http.Get("https://jsonplaceholder.typicode.com/todos/2");
            if(res.IsSuccessful && res.StatusCode == 200)
            {
                Print(res.Body);
                MessageBox.Show(res.Body);
            }
            Sleep(5000);
            HttpResponse res2 = Http.Get("https://jsonplaceholder.typicode.com/todos/2");
            if(res2.IsSuccessful && res2.StatusCode == 200)
            {
                Print("Success2");
            } else 
            {
                MessageBox.Show(res2.Exception.ToString());
            }
        }

        private void Test2()
        {
            Http.GetAsync("https://jsonplaceholder.typicode.com/todos/2", res => 
            {
                if(res.IsSuccessful && res.StatusCode == 200)
                {
                    MessageBox.Show(res.Body);
                    Http.GetAsync("https://jsonplaceholder.typicode.com/todos/1", res2 => 
                    {
                        if(res.IsSuccessful && res2.StatusCode == 200)
                        {
                            MessageBox.Show(res2.Body);
                        } else {
                            MessageBox.Show(res2.Exception.ToString());
                        }
                    });
                }
            });
            Http.GetAsync("https://jsonplaceholder.typicode.com/todos/3", res => 
            {
                if(res.IsSuccessful && res.StatusCode == 200)
                {
                    MessageBox.Show(res.Body);
                } else {
                    MessageBox.Show(res.Exception.ToString());
                }
            });
        }

        protected override void OnStop()
        {
            // Handle Plugin stop here
        }
    }
}

Is this a bug or intentional change?


@soskrr
Replies

Hildeguard
27 Mar 2025, 00:24

confirming the isse

I can confirm this issue. My code worked fine before the latest update. After the update, only the first Http.Get(..) works, in my case, the telegram message is sent. This is independet, where i place the command. However, each Http.Get(..) which is triggered later, is not working anymore.

Any solutions on this?


@Hildeguard

ctid8068054
28 Mar 2025, 01:03 ( Updated at: 28 Mar 2025, 07:16 )

RE: confirming the isse

Hildeguard said: 

I can confirm this issue. My code worked fine before the latest update. After the update, only the first Http.Get(..) works, in my case, the telegram message is sent. This is independet, where i place the command. However, each Http.Get(..) which is triggered later, is not working anymore.

Any solutions on this?

I am also suffering the same fate…..  Have not been able to resolve yet.  

result.Exception:cAlgo.API.HttpException: System.InvalidOperationException: This instance has already started one or more requests. Properties can only be modified before sending the first request.
  at System.Net.Http.HttpClient.CheckDisposedOrStarted()
  at System.Net.Http.HttpClient.set_Timeout(TimeSpan value)
  at cTrader.Automate.Instances.Http.AutomateHttpService.RequestProcessor()
 


@ctid8068054