Выполнить несколько параллельных cURL для одного и того же URL?

Мне нужно выполнить 2 запроса параллельно, используя cURL, чтобы получить ответ от веб-службы.

Проблема в том, что мне нужно получить зашифрованный пароль из первого вывода XML и передать его во второй XML, чтобы получить 100 успешных ответов от API.

В настоящее время я создал 2 cURL для достижения этой цели, но API отвечает "101 Password Expired", поскольку зашифрованный пароль действителен только для первого запроса.

Вот мой код для справки:

1-й КУРЛ:

$soapUrl = "http://localhost:54934/frmMutualFund.asmx?op=getPassword"; // asmx URL of WSDL

// xml post structure

$xml_post_string = '<?xml version="1.0" encoding="utf-8"?>
                <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
                  <soap:Body>
                    <getPassword xmlns="http://tempuri.org/">
                      <pUserId>12345</pUserId>
                      <pPassword>98765</pPassword>
                      <pPasskey>ksjhdfksj</pPasskey>
                    </getPassword>
                  </soap:Body>
                </soap:Envelope>';   // data from the form, e.g. some ID number

   $headers = array(
                "Content-type: text/xml;charset=\"utf-8\"",
                "Accept: text/xml",
                "Cache-Control: no-cache",
                "Pragma: no-cache",
                "SOAPAction: http://tempuri.org/getPassword", 
                "Content-length: ".strlen($xml_post_string),
            ); //SOAPAction: your op URL

    $url = $soapUrl;

    // PHP cURL  for https connection with auth
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 1);
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    //curl_setopt($ch, CURLOPT_USERPWD, $soapUser.":".$soapPassword); // username and password - declared at the top of the doc
    curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
    curl_setopt($ch, CURLOPT_TIMEOUT, 10);
    curl_setopt($ch, CURLOPT_POST, true);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $xml_post_string); // the SOAP request
    curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);

    // converting
    $response = curl_exec($ch); 

2-й КУРЛ:

$soapUrl = "http://localhost:54934/frmMutualFund.asmx"; // asmx URL of WSDL

// xml post structure

$xml_post_string = '<?xml version="1.0" encoding="utf-8"?>
                    <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
                      <soap:Body>
                        <MFUAPI xmlns="http://tempuri.org/">
                          <pFlag>06</pFlag>
                          <pUserId>12345</pUserId>
                          <pEncPassword>'.$response.'</pEncPassword>
                         <pParam>some_parameters</pParam>
                        </MFUAPI>
                      </soap:Body>
                    </soap:Envelope>';   // data from the form, e.g. some ID number

   $headers = array(
                "Content-type: text/xml;charset=\"utf-8\"",
                "Accept: text/xml",
                "Cache-Control: no-cache",
                "Pragma: no-cache",
                "SOAPAction: http://tempuri.org/MFUAPI", 
                "Content-length: ".strlen($xml_post_string),
            ); //SOAPAction: your op URL

    $url = $soapUrl;

    // PHP cURL  for https connection with auth
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 1);
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    //curl_setopt($ch, CURLOPT_USERPWD, $soapUser.":".$soapPassword); // username and password - declared at the top of the doc
    curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
    curl_setopt($ch, CURLOPT_TIMEOUT, 10);
    curl_setopt($ch, CURLOPT_POST, true);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $xml_post_string); // the SOAP request
    curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);

    // converting
    $response = curl_exec($ch); 
    curl_close($ch);

    // converting
    $response1 = str_replace("<soap:Body>","",$response);
    $response2 = str_replace("</soap:Body>","",$response1);

    // convertingc to XML
    $parser = simplexml_load_string($response2);
    // user $parser to get your data out of XML response and to display it.
    print_r($parser);

1 ответ

Первый

Мне нужно выполнить 2 запроса параллельно

затем

Проблема в том, что мне нужно получить зашифрованный пароль из первого вывода XML и передать его во второй XML, чтобы получить 100 успешных ответов от API.

если тело запроса 2-го запроса зависит от ответа первого запроса, то вы не можете выполнять эти 2 запроса параллельно.

(Вообще говоря, вы можете выполнить некоторую микрооптимизацию, когда отправляете первый запрос и частично отправляете второй запрос, затем ждете получения пароля первого запроса, затем завершаете второй запрос, но он ' Было бы трудно добиться успеха, вероятно, выигрыш был бы очень небольшим, и если вы ошиблись во времени, вы, вероятно, получите тайм-аут для второго запроса и вам пришлось бы начинать второй запрос заново, что будет даже медленнее, чем просто 2 запроса последовательно во-первых. Вам также понадобится надежный код восстановления для 2nd request timeout'ed while waiting for the password of the 1st request, было бы легко закодировать это неправильно.)

Другие вопросы по тегам