Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个新客户端,并像这样进行肥皂调用:
$client = new SoapClient($strServiceUrl, $params); $result= $client->$strFunct($arrCallParams);
然后我通过结果“Foreach”。但是,结果的顺序与我们在 C++ 中测试soapserver 的方法时的顺序不同(其中编写了soapserver)。有什么想法吗?这是正常行为吗?
问题似乎出在 C++ SOAP 服务中的一个错误中。