0

i'm trying to do some request with soap on mantis . Something like that :

      foreach ($tabIdBugToRecup as $value) {
            $tabBugResponse[$i] = $client->mc_issue_get($username, $password, $value);
            $i++;

            }

when the number of request is small i've no error and the scrip work fine but when the number is big i have that error : "NetworkError: 500 Internal Server Error - http://localhost/ErsSupervisor/include/req/cronBugSupport.php"

it's why i'm asking if the number of request with soap on mantis is limited. Maybe X per secondes or?

thanks for help

LedZelkin
  • 586
  • 1
  • 10
  • 24

1 Answers1

0

There are no rate limitations in the MantisBT SOAP API.

Robert Munteanu
  • 67,031
  • 36
  • 206
  • 278
  • `"NetworkError: 500 Internal Server Error - http://localhost/ErsSupervisor/include/req/cronBugSupport.php"` but only on a big request , else i've no probleme – LedZelkin Oct 03 '12 at 07:22