0

如果我做错了什么,请多多包涵。我一直在尝试从 C# 更新 Nav 中的一些数据,但无论我做什么都会出错:

我的代码单元看起来像这样,这是我需要用来更新的方法:

<operation name="OpdaterVogn">
    <operation soapAction="urn:microsoft-dynamics-schemas/codeunit/BMG:OpdaterVogn"style="document"/>
  <input name="OpdaterVogn">
    <body use="literal"/>
  </input>
  <output name="OpdaterVogn_Result">
    <body use="literal"/>
  </output>
</operation>

我会向你展示我的对象,我也通过我的代码单元传递:

<schema elementFormDefault="qualified" targetNamespace="urn:microsoft-dynamics-nav/xmlports/x78001">
  <complexType name="VognType">
    <sequence>
      <element minOccurs="1" maxOccurs="1" name="Kode" type="string"/>
      <element minOccurs="1" maxOccurs="1" name="RegNr" type="string"/>
      <element minOccurs="1" maxOccurs="1" name="Beskrivelse" type="string"/>
      <element minOccurs="1" maxOccurs="1" default="false" name="Spaerret" type="boolean"/>
    </sequence>
  </complexType>
  <complexType name="Vogn" mixed="true">
    <sequence>
      <element minOccurs="1" maxOccurs="unbounded" name="Vogn" type="tns:VognType"/>
    </sequence>
  </complexType>
  <element name="Vogn" type="tns:Vogn"/>
</schema>

无论如何,转到 C#,我可以将数据转移到 C# 并查看它。现在我想用这个方法更新一个“vogn”。

目前我的代码如下所示:

        BMGWS ws = new BMGWS();
        Vogn vogne = new Vogn();
        VognType vogn = new VognType();
        ws.UseDefaultCredentials = true;

        ws.SendVogn("BMG 2013", false, ref vogne);

        vogn = vogne.Vogn1[0];
        string kode = vogn.Kode;
        string beskrivelse = vogn.Beskrivelse;
        string regnr = vogn.RegNr;
        bool spaerret = vogn.Spaerret;

        Vogn vogneNy = new Vogn();
        VognType vognNy = new VognType();
        vognNy.Kode = kode; // string value to update
        vognNy.Beskrivelse = beskrivelse; // string value to update
        vognNy.RegNr = regnr; // string value to update 
        vognNy.Spaerret = spaerret; // Bool value to update 

        List<VognType> list = new List<VognType>();
        list.Add(vognNy);
        vogneNy.Vogn1 = list.ToArray();
        vogneNy.Vogn1[0] = vognNy;


        ws.OpdaterVogn("BMG 2013", vogneNy);

我的最后一种方法不起作用,我收到以下错误:

{“该元素<Kode>应按 Min Occurs 值:一次。收到的元素:<>。”}

希望你们能在这里帮助我...

4

1 回答 1

1

我假设您在 Nav 中使用带有 XmlPorts 的 Codeunits。您应该按照下面的链接向下滚动到有关 MinOccurs 和 MaxOccurs 的部分,需要在 Nav 中的 XMLPort 中具体指定:

http://www.kauffmann.nl/blog/index.php/2011/02/24/how-to-use-xmlports-in-web-services-2/

于 2013-10-02T14:25:35.217 回答