Dynamics NAV 2016 Web 服务:服务中方法 * 中的参数 * 为空

Dynamics NAV 2016 Web Service: Parameter * in method * in service * is null

我尝试从我的 Dynamics Nav Web 服务 (Dynamics Nav 2016) 获取单个联系人。我在 PHP.

中使用 SOAP 请求执行此操作

Web 服务是一个包含两个功能的代码单元:

fGetContact(iContactNumber : Text[20]) oContact : Text[250]
IF rContact.GET(iContactNumber) THEN BEGIN
  oContact := '';
  oContact := rContact."No." + ';' +
              rContact."Company Name" + ';' +
              rContact."First Name" + ';' +
              rContact.Surname + ';' +
              rContact."E-Mail";
END;
EXIT(oContact);

fGetContacts() oContacts : Text[250]
IF rContact.GET('KT100190') THEN BEGIN
  oContacts := '';
  oContacts := rContact."No." + ';' +
               rContact."Company Name" + ';' +
               rContact."First Name" + ';' +
               rContact.Surname + ';' +
               rContact."E-Mail";
END;
EXIT(oContacts);

第二个函数 fGetContacts 工作正常。 但是当我使用联系电话作为参数调用 fGetContact 时,它 return 出现以下错误:

Parameter iContactNumber in method FGetContact in service MyService is null!

我使用 NTLMSoapClient 如下所示:

<?php
ini_set('soap.wsdl_cache_enabled', '0'); 

require_once 'ntlmstream.php';
require_once 'ntlmsoapclient.php';

$url = 'http://localhost:7047/DynamicsNAV90/WS/CRONUS/Codeunit/MyService';

$options = array(
    'uri' => $url,
    'location' => $url,
    'trace' => true,
    'login' => 'my_user',
    'password' => 'my_password'
);

// we unregister the current HTTP wrapper
stream_wrapper_unregister('http');

// we register the new HTTP wrapper
stream_wrapper_register('http', 'MyServiceProviderNTLMStream') or die("Failed to register protocol");

// so now all request to a http page will be done by MyServiceProviderNTLMStream.
// ok now, let's request the wsdl file
// if everything works fine, you should see the content of the wsdl file
$client = new MyServiceNTLMSoapClient(null, $options);

// should display your reply
try {
    $params = array('iContactNumber' => 'KT100190');

    echo '<pre>';
    echo $client->FGetContacts(); // works
    echo $client->FGetContact($params); // doesn't work
    echo '</pre>';
} catch (SoapFault $e) {
    echo '<pre>';
    var_dump($e);
    echo '</pre>';
}

// restore the original http protocole
stream_wrapper_restore('http');

我也试过这样调用函数:

echo $client->FGetContact('KT100190');

return错误和之前一样

我用 SoapUI 测试了我的函数,return 值正是它应该的值。

要求:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:new="urn:microsoft-dynamics-schemas/codeunit/MyService">
   <soapenv:Header/>
   <soapenv:Body>
      <new:FGetContact>
         <new:iContactNumber>KT100190</new:iContactNumber>
      </new:FGetContact>
   </soapenv:Body>
</soapenv:Envelope>

回复:

<Soap:Envelope xmlns:Soap="http://schemas.xmlsoap.org/soap/envelope/">
   <Soap:Body>
      <FGetContact_Result xmlns="urn:microsoft-dynamics-schemas/codeunit/MyService">
         <return_value>KT100190;Add-ON Marketing;Chris;McGurk;chris.mcgurk@cronuscorp.net</return_value>
      </FGetContact_Result>
   </Soap:Body>
</Soap:Envelope>

那么出现这个错误是我做错了什么,我该如何解决?

我做了一个解决方法,现在对我有用了。

我更改了 class NTLMSoapClient 中的 $request 变量,因为 php 发送到我的服务的肥皂信封完全没用。

所以基本上我只是在 curl 操作之前这样做了:

$request = '<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:new="urn:microsoft-dynamics-schemas/codeunit/MyService">
               <soapenv:Header/>
               <soapenv:Body>
                  <new:FGetContact>
                     <new:iContactNumber>'.$this->iContactNumber.'</new:iContactNumber>
                  </new:FGetContact>
               </soapenv:Body>
            </soapenv:Envelope>';

(如果有人遇到同样的问题,请尝试 var_dump($request) 并在浏览器中查看源代码。您会看到 PHP 在那里做的一团糟...)

不管怎样,我遇到了这个问题并通过在 soap 客户端的选项中添加 "cache_wsdl" => WSDL_CACHE_NONE 解决了它。

由于更新 WSDL 后出现缓存问题,部分字段丢失。